Skip to content
Snippets Groups Projects
tsg_initialisation.m 7.24 KiB
Newer Older
function tsg_initialisation(hMainFig)
% hMainFig ............ Handle to the main user interface
%% global definition, see tsgqc.m
% -------------------------------
global NETCDF_FORMAT_VERSION

%% init tsg.preference
% tsg_initialisation is called when new file is reading
% -----------------------------------------------------

Yves Gouriou's avatar
Yves Gouriou committed
% disable ButtonMotion on main fig
% -----------------------------------------------------
set( hMainFig, 'WindowButtonMotionFcn', []);
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
% Get the tsg struct from the application GUI
% -------------------------------------------
tsg = getappdata( hMainFig, 'tsg_data');
% init empty tsg structure
% ------------------------
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
if exist('tsg', 'var') && isfield( tsg, 'preference')
  preference = tsg.preference;
  tsg = [];
  tsg.preference = preference;
else
  tsg = [];
end
%% Constants for NetCDF DATA FORMAT TSG
% -------------------------------------

% define netcdf dimensions
% ------------------------
tsg.dim.STRING14  = 14;
tsg.dim.STRING8   = 8;
tsg.dim.STRING4   = 4;
tsg.dim.N1        = 1;
tsg.dim.CALCOEF   = 7;
tsg.dim.LINCOEF   = 2;

% variable tsg.CALCOEF_CONV is char array of (CALCOEF x STRING8)
% --------------------------------------------------------------
tsg.dim.COEF_CONV_SIZE = tsg.dim.STRING8;

% date of reference for julian days, is 1st january 1950
% ------------------------------------------------------
REFERENCE_DATE_TIME    = '19500101000000';
% get actual date
% ---------------
date = datestr(now,30);

% set default font size
% ---------------------
tsg.fontSize = 11;

% -------------------------------------------------------------------------
%%              Levitus fields for climatology
% -------------------------------------------------------------------------
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
tsg.levitus.data    = [];
tsg.levitus.type    = 'none';
tsg.levitus.version = 'none';
tsg.levitus.time    = 1;
% -------------------------------------------------------------------------
% -------------------------------------------------------------------------
tsg.file.pathstr = [];
tsg.file.name    = [];
tsg.file.ext     = [];
tsg.file.versn   = [];
tsg.file.type    = [];
% -------------------------------------------------------------------------
%%              Smooth TSG time serie fields
% -------------------------------------------------------------------------
% tsg.ssps_smooth      = [];
% tsg.ssps_smooth.nval = [];
% tsg.SSTP_smooth      = [];
% tsg.SSTP_smooth.nval = [];

% -------------------------------------------------------------------------
%%              Variable used for the report
% -------------------------------------------------------------------------
tsg.report.tsgfile  = '';  % Name of the TSG file
tsg.report.wsfile   = '';  % Name of the Water sample file
tsg.report.extfile  = '';  % Name of the External sample file
tsg.report.nodate   =  0;  % Records deleted because they have no date
tsg.report.sortdate =  0;  % Records deleted because date is not increasing
tsg.report.badvelocity = 0;  % Records deleted because of bad velocity
% (> 50 knots - test in shipVelocity)

% -------------------------------------------------------------------------
%%              Structure used to merge WS and EXT sample
% need to be intialise (isempty test performed on tsg.SSPS_SPL
% -------------------------------------------------------------------------
% tsg.DAYD_SPL      = [];
% tsg.LATX_SPL      = [];
% tsg.LONX_SPL      = [];
% tsg.SSPS_SPL      = [];
% tsg.SSPS_SPL_QC   = [];
% tsg.SSPS_SPL_TYPE = [];
% tsg.SSTP_SPL      = [];
% tsg.SSTP_SPL_QC   = [];
% tsg.SSTP_SPL_TYPE = [];
% tsg.SSJT_SPL      = [];
% tsg.SSJT_SPL_QC   = [];
% tsg.SSJT_SPL_TYPE = [];
% -------------------------------------------------------------------------
%%              Constants for the quality control procedure
% -------------------------------------------------------------------------
% Quality flags reference table, see GOSUD, DATA FORMAT TSG V1.6, table 4
% -----------------------------------------------------------------------
%  1         Good data
%  2         Probably good data
%  3         Bad data that are potentially correctable
%  4         Bad data
%  5         Value changed
%  6         Data acquired in harbour
%  7         Not used
%  8         Interpolated value
%  9         Missing value

% Quality definition, we use an instance of dynaload object 
% ---------------------------------------------------------
d = dynaload('tsgqc_netcdf.csv');

% Get hashtable QUALITY from dynaload instance
% --------------------------------------------
tsg.qc.hash = d.QUALITY;
% set default code at startup
% ---------------------------
tsg.qc.active.Code   = d.QUALITY.NO_CONTROL.code;
tsg.qc.active.Color  = d.QUALITY.NO_CONTROL.color;
% set empty stack (use for undo/redo)
% -----------------------------------
% -------------------------------------------------------------------------
%%              Constants for the Correction procedure
% -------------------------------------------------------------------------
% Smoothing of tsg time series over 1 hour interval
% 1 hour interval expressed in MATLAB serial Number
% -------------------------------------------------
tsg.cst.TSG_DT_SMOOTH = datenum(0, 0, 0, 1, 0 , 0);
% Salinity, in 1 hour interval, should not depart the average for more
% than SAL_STD_MAX standard deviation
% --------------------------------------------------------------------
tsg.SSPS_STDMAX = 0.1;
tsg.SSJT_STDMAX = 1.0;
tsg.SSTP_STDMAX = 1.0;

% Correction is estimated by computing the median value of X tsg-sample
% differences
% Time window in days used to compute the correction
% ---------------------------------------------------------------------
tsg.cst.COR_TIME_WINDOWS = 10;
% Maximum time difference between tsg data and water sample used to
% compute the difference : 5 minutes.
% -----------------------------------------------------------------
tsg.cst.TSG_WS_TIMEDIFF = datenum(0, 0, 0, 0, 5, 0);

% Get attributes & variables list from dynaload instance
% ------------------------------------------------------
nca = keys(d.ATTRIBUTES);
ncv = keys(d.VARIABLES);
% store tsg NetCDF data structure
% -------------------------------

% dimensions
% ----------
tsg.DAYD                  = [];
tsg.DAYD_EXT              = [];

% initialise tsg structure from tsg_nc objects
% --------------------------------------------

% assign empty matrix to all variables
% ------------------------------------
% assign empty string to all globals attributes
% ---------------------------------------------
% set some fields
% ---------------
tsg.FORMAT_VERSION        =  NETCDF_FORMAT_VERSION;
tsg.DATE_CREATION         =  [date(1:8) date(10:15)];
tsg.DATE_UPDATE           =  tsg.DATE_CREATION;
tsg.REFERENCE_DATE_TIME   =  REFERENCE_DATE_TIME;
% ------------------
setappdata( hMainFig, 'tsg_data', tsg);