Newer
Older
function maxSSPSQC(hMainFig)
%
% This function is called after option/preferences menu has been activated
% and flag salinity data where SSPS > max as BAD if test is on
%
% Input
% -----
% hMainFig ............ Handle to the main user interface
%
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
% Get the data from the application GUI
% -------------------------------------
tsg = getappdata( hMainFig, 'tsg_data');
% Get BAD code value
% ----------------------
badCode = tsg.qc.hash.BAD.code;
ssps_max = tsg.preference.ssps_max_string;
% If necessary replace a comma by a point
% ---------------------------------------
ssps_max = regexprep(ssps_max, ',', '.');
% If bias not a numeric, str2double return a NaN
% ----------------------------------------------
ssps_max = str2double( ssps_max );
if isnumeric( ssps_max ) && ~isnan( ssps_max )
% Set salinity QC to BAD for ssps < ssps_max
% -----------------------------------------------------
ind = find(tsg.SSPS > ssps_max);
if ~isempty( ind )
tsg.SSPS_QC(ind) = castByteQC( badCode, ind );
end
% Save tsg structure
% ------------------
setappdata( hMainFig, 'tsg_data', tsg);
else
msgbox('Enter a numeric value in the REFERENCE menu', 'ssps QC',...
'error', 'modal');
end
end