Skip to content
Snippets Groups Projects
Commit 170fc9fc authored by Yves Gouriou's avatar Yves Gouriou
Browse files

Ajout du module de calibration.m

parent 302709e8
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,7 @@ if fid ~= -1
tsg.LONX = lon(noNaN);
tsg.SSJT = sst(noNaN);
tsg.SSPS = sss(noNaN);
tsg.CNDC = cond(noNaN);
tsg.SPDC = sog(noNaN);
tsg.SSJT_FREQ = tsg.SSJT_FREQ(noNaN);
tsg.CNDC_FREQ = tsg.CNDC_FREQ(noNaN);
......
......@@ -13,6 +13,7 @@ else
msgbox( 'Conductivity not loaded',...
'Function ''Calibration''',...
'warn', 'modal');
return
end
if ~isempty( tsg.SSJT )
......@@ -21,6 +22,7 @@ else
msgbox( 'Jacket temperature not loaded',...
'Function ''Calibration''',...
'warn', 'modal');
return
end
% Compute salinity - Use CSIRO functions
......
......@@ -37,6 +37,8 @@ VALUE_CHANGED = get(tsg.qc.hash, 'VALUE_CHANGED', 'code');
indVC = find( tsg.SSPS_ADJUSTED_QC == VALUE_CHANGED);
% Plot the difference tsg.SSPS_ADJUSTED-tsg.SSPS on axe 1
% but only for records that were corrected using Water Sample
% and not corrected with the calibration coefficients
% -------------------------------------------------------
plot_Tsg( hMainFig, hPlotAxes, 1,...
tsg.DAYD(indVC), tsg.SSPS_ADJUSTED(indVC)-tsg.SSPS(indVC),...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment