Skip to content
Snippets Groups Projects
Commit da7c1ccf authored by jacques.grelet_ird.fr's avatar jacques.grelet_ird.fr
Browse files

get code value for 'NO_CONTROL' in hashtable tsg.qc.hash and not old tsg.qc.Code

parent 8b1372d4
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,14 @@ if fid ~= -1 ...@@ -44,7 +44,14 @@ if fid ~= -1
tsg.LATX_WS = bucketData(:,7); tsg.LATX_WS = bucketData(:,7);
tsg.LONX_WS = bucketData(:,8); tsg.LONX_WS = bucketData(:,8);
tsg.SSPS_WS = bucketData(:,9); tsg.SSPS_WS = bucketData(:,9);
tsg.SSPS_WS_QC = tsg.qc.Code.NO_CONTROL * ones(size(tsg.SSPS_WS));
% get code value for 'NO_CONTROL' in hashtable
% --------------------------------------------
code = get(tsg.qc.hash, 'NO_CONTROL', 'code');
% pre-allocate and fill SSPS_WS_QC with 'NO_CONTROL' code value
% -------------------------------------------------------------
tsg.SSPS_WS_QC = code * ones(size(tsg.SSPS_WS));
%@ completer ces 2 champs !!!!!!!! %@ completer ces 2 champs !!!!!!!!
%tsg.PSAL_WS_ANALDATE = ; %tsg.PSAL_WS_ANALDATE = ;
......
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