Typo in matlab/4dvar/d_ssh_obs.m

Bug reports, work arounds and fixes

Moderators: arango, robertson

Post Reply
Message
Author
stef
Posts: 175
Joined: Tue Mar 13, 2007 6:38 pm
Location: Independent researcher
Contact:

Typo in matlab/4dvar/d_ssh_obs.m

#1 Unread post by stef »

I am tinkering with the assimilation tutorial, and this looks like a typo:

Code: Select all

provenance.Targo     = 6;    % ARGO floats temperature from Met Office
provenance.Targo     = 7;    % ARGO floats salinity from Met Office
The same lines are in d_sst_obs.m. The .Targo/.Sargo properties are also used in d_ts_metoffice.m, but there is no typo there. So I guess this doesn't do any harm, does it?

User avatar
arango
Site Admin
Posts: 1347
Joined: Wed Feb 26, 2003 4:41 pm
Location: DMCS, Rutgers University
Contact:

Re: Typo in matlab/4dvar/d_ssh_obs.m

#2 Unread post by arango »

Good catch. The provenance is primarily used in the observation sensitivity analysis. It is a minor typo. We need to have instead:

Code: Select all

provenance.Sargo     = 7;    % ARGO floats salinity from Met Office

Post Reply