Skip to content

Commit

Permalink
decArgo_patch_20220920_051m commit
Browse files Browse the repository at this point in the history
  • Loading branch information
couppeym committed Nov 24, 2022
1 parent 708cba7 commit c1bbd5a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@
if (ismember(g_decArgo_floatNum, [ ...
6903772, 6903773, 3902137, 6903865, 6903264, 6903698, 6903771, 7900543, ...
6900790, 6901880, 6903229, 6903795, 6903703, 6902802, 6902861, 7900522, ...
6902989, 6903774, 3901644, 6903010, 6902938]))
6902989, 6903774, 3901644, 6903010, 6902938, 6903777]))
switch g_decArgo_floatNum
case 6903772
% the float have been set to EOL at cycle #99, however the data of this
Expand Down Expand Up @@ -957,6 +957,19 @@
tabRank(id2) = tabRank(id2(1));
tabRankByCycle(id2) = tabRankByCycle(id2(1));
tabDeep([idF0(end) idF4(end) idF5(end)]) = 0;
case 6903777
% cycle #55 data are delayed and scrambled
id = find(tabCyNum == 55);
tabRank(id) = tabRank(id(1));
tabRankByCycle(id) = tabRankByCycle(id(1));
tabDelayed(id) = 1;
tabCompleted(id) = 1;
for cyNum = 59:88
id = find(tabCyNum == cyNum);
idDel = id(end-2:end);
tabRank(idDel) = -1;
tabRankByCycle(idDel) = -1;
end
end

% UNCOMMENT TO SEE UPDATED INFORMATION ON BUFFERS
Expand Down
2 changes: 1 addition & 1 deletion decArgo_soft/soft/sub/init_default_values.m
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ function init_default_values(varargin)
% the first 3 digits are incremented at each new complete dated release
% the last digit is incremented at each patch associated to a given complete
% dated release
g_decArgo_decoderVersion = '051l';
g_decArgo_decoderVersion = '051m';

% list of managed decoders

Expand Down

0 comments on commit c1bbd5a

Please sign in to comment.