Skip to content
Snippets Groups Projects
updateTsgStruct.m 3.72 KiB
Newer Older
function updateTsgStruct(hMainFig)
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
%
% This function is called after reading data and update tsg structure
% with common values
%
% Input
% -----
% hMainFig ............ Handel to the main user interface

% Compute ship velocity from positions if sog not available
% Must be done first as we use getappdata and setappdata within
% the function
% ---------------------------------------------------------
shipVelocity( hMainFig );

jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
% Get the data from the application GUI
% -------------------------------------
tsg = getappdata( hMainFig, 'tsg_data');
nPARA = 2;
PARA  = ['SSPS'; 'SSJT'];
% Get NO_CONTROL and INTERPOLATED_VALUE codes
% -------------------------------------------
s = tsg.qc.hash.NO_CONTROL;
NO_CONTROL = s.code;
% Suppress longitude discontinuity at -180 or 180 crossing 
% --------------------------------------------------------
deflon=find(isfinite(tsg.LONX));
dlon=circshift(tsg.LONX(deflon),-1)-tsg.LONX(deflon);
if ~isempty(tsg.indcross)
    tsg.loncross=sign(dlon(tsg.indcross))*360;
    for i=1:length(tsg.indcross)
        tsg.LONX(tsg.indcross(i)+1:end)=tsg.LONX(tsg.indcross(i)+1:end)-tsg.loncross(i);
    end
end

jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
% get min and max values for position and set to globals attributes
% -----------------------------------------------------------------
tsg.SOUTH_LATX = min(tsg.LATX);
tsg.NORTH_LATX = max(tsg.LATX);
if max(tsg.LONX)>(min(tsg.LONX)+360)
    tsg.WEST_LONX  = -180;
    tsg.EAST_LONX  = 180;
else
    tsg.WEST_LONX  = mod(min(tsg.LONX)+180,360)-180;
    tsg.EAST_LONX  = mod(max(tsg.LONX)+180,360)-180;
end
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed

% get date start and end value and set to globals attributes
% -----------------------------------------------------------------
date           = datestr(min(tsg.DAYD),30);
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
tsg.DATE_START = [date(1:8) date(10:15)];
date           = datestr(max(tsg.DAYD),30);
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
tsg.DATE_END   = [date(1:8) date(10:15)];

% Variables must exists
% ---------------------
Yves Gouriou's avatar
Yves Gouriou committed
for i = 1: nPARA
Yves Gouriou's avatar
Yves Gouriou committed
  para1 =  PARA(i,:);
  if ~isempty( tsg.(para1) ) && isempty( tsg.([para1 '_QC']) )

    % If QC variables are emptied, fill them with NO_CONTROL code value
    % -----------------------------------------------------------------
    tsg.([para1 '_QC']) = castByteQC( NO_CONTROL, tsg.DAYD );

  end
end

% Empty variables filled with NaN
% -------------------------------
names = fieldnames( tsg );
for i = 1: length(names)
  para = char( names(i) );
  if ~isstruct(tsg.(para)) && ~isempty(tsg.(para)) && ~iscell(tsg.(para))
    A = tsg.(para);
    ind = find( isnan( A ) == 0 );
    if isempty( ind )
      tsg.(para) = [];
    end
Yves Gouriou's avatar
Yves Gouriou committed
  end
% Save tsg structure
% ------------------
setappdata( hMainFig, 'tsg_data', tsg);
% fill tsg calibration variables
% ------------------------------
updateTsgStructWithCalCoeff(hMainFig);
% Get the data from the application GUI
% -------------------------------------
tsg = getappdata( hMainFig, 'tsg_data');
% Initialise  'variables_LINCOEF'
% in tsg_initialisation now
% -------------------------------
var ={'SSJT_LINCOEF', 'CNDC_LINCOEF', 'SSTP_LINCOEF'};
lin_type = {padding('SLOPE',tsg.dim.COEF_CONV_SIZE),...
            padding('OFFSET',tsg.dim.COEF_CONV_SIZE)};
lin_val  = [1,0];
% loop over each variables
% ------------------------
  
  % check if var_LINCOEF not empty
  % -----------------------------------  
  if isempty(tsg.(var{i}))
    for j = 1:tsg.dim.LINCOEF
      tsg.(var{i})(j) = lin_val(j);
  % rewrite LINCOEF's
  % convert cell array of string to char array
  % ------------------------------------------
  tsg.([var{i} '_CONV']) = char(lin_type);
  
Yves Gouriou's avatar
Yves Gouriou committed
end
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
% ------------------
setappdata( hMainFig, 'tsg_data', tsg);