Newer
Older
%
% 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 );
% Get the data from the application GUI
% -------------------------------------
tsg = getappdata( hMainFig, 'tsg_data');
nPARA = 2;
PARA = ['SSPS'; 'SSJT'];
% Get NO_CONTROL and INTERPOLATED_VALUE codes

jacques.grelet_ird.fr
committed
% a modifier !!!!!!!!!!!!!
% -------------------------------------------

jacques.grelet_ird.fr
committed
s = tsg.qc.hash.NO_CONTROL;
NO_CONTROL = s.code;
% Suppress longitude discontinuity at -180 or 180 crossing
% --------------------------------------------------------
gael.alory_legos.obs-mip.fr
committed
deflon=find(isfinite(tsg.LONX));
dlon=circshift(tsg.LONX(deflon),-1)-tsg.LONX(deflon);
dlon=dlon(1:end-1);
gael.alory_legos.obs-mip.fr
committed
tsg.indcross=find(abs(dlon)>180);
if ~isempty(tsg.indcross)
tsg.loncross=sign(dlon(tsg.indcross))*360;
gael.alory_legos.obs-mip.fr
committed
tsg.indcross=deflon(tsg.indcross);
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
% 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
% get date start and end value and set to globals attributes
% -----------------------------------------------------------------
date = datestr(min(tsg.DAYD),30);
date = datestr(max(tsg.DAYD),30);
% Variables must exists
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) );

jacques.grelet_ird.fr
committed
if ~isstruct(tsg.(para)) && ~isempty(tsg.(para)) && ~iscell(tsg.(para))
A = tsg.(para);
ind = find( isnan( A ) == 0 );
if isempty( ind )
tsg.(para) = [];
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];

jacques.grelet_ird.fr
committed
% loop over each variables
% ------------------------
for i = 1:numel(var)

jacques.grelet_ird.fr
committed
% check if var_LINCOEF not empty
% -----------------------------------

jacques.grelet_ird.fr
committed
if isempty(tsg.(var{i}))
for j = 1:tsg.dim.LINCOEF
tsg.(var{i})(j) = lin_val(j);

jacques.grelet_ird.fr
committed
end
end

jacques.grelet_ird.fr
committed
% rewrite LINCOEF's
% convert cell array of string to char array
% ------------------------------------------
tsg.([var{i} '_CONV']) = char(lin_type);
setappdata( hMainFig, 'tsg_data', tsg);