Skip to content
Snippets Groups Projects
plot_Validation.m 3.27 KiB
Newer Older
function plot_Validation( hMainFig, hPlotAxes, nPlot, PARA )

% Get tsg application data
% ------------------------
tsg    = getappdata( hMainFig, 'tsg_data');
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
SAMPLE = tsg.plot.sample;

% get lineType from popupmenu cell string
% ---------------------------------------
lineType = ...
  tsg.preference.plot_connected_string{tsg.preference.plot_connected_value};

switch nPlot
  
  % ---------------------------------------------------------------------
  case 1
    
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
    % erase all plpot with 'Tag'= ['TAG_PLOT' num2str(PlotNum) '_LINE_']
    % ------------------------------------------------------------------
    erase_Line( hPlotAxes, 1 );
    % if there is external data to plot
    % ---------------------------------
    if isfield(tsg,[SAMPLE '_EXT_TYPE']) && isfield(tsg,[SAMPLE '_EXT']) && ~isempty( tsg.([SAMPLE '_EXT']) )
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
      % Plot squares for WS data
      % -----------------------
      indWS = strmatch( 'WS', tsg.([SAMPLE '_EXT_TYPE']), 'exact');
      if ~isempty(ind)
        plot_Tsg( hMainFig, hPlotAxes, 1,...
          tsg.DAYD_EXT(indWS), tsg.([SAMPLE '_EXT'])(indWS),...
          tsg.([SAMPLE '_EXT_QC'])(indWS), ...
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
          [SAMPLE '_EXT_1'], '', 'none', 'square', 5);
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
      % Plot circles for CTD, ARGO, etc. data
      % -------------------------------------
      indEXT = setxor(ind, indWS);
      if ~isempty(indEXT)
        plot_Tsg( hMainFig, hPlotAxes, 1, tsg.DAYD_EXT(indEXT),...
          tsg.([SAMPLE '_EXT'])(indEXT),...
          tsg.([SAMPLE '_EXT_QC'])(indEXT),...
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
          [SAMPLE '_EXT_2'], '', 'none', 'o', 5);
    
    % if there is data to plot
    % ------------------------
    if ~isempty( tsg.(PARA) )
      
      % if lineType is selected from menu option/preferences and ne 'none'
      % -----------------------------------------------------------------
      if ~strcmp(lineType, 'none')
        
        % just plot data line and without QC & marker in black in first plot
        % -----------------------------------------------------------------
        plot_Tsg( hMainFig, hPlotAxes, 1, tsg.DAYD, tsg.(PARA), [],...
                  PARA, 'k', lineType, 'none', 1);
      end

      % plot data data with QC color
      % ----------------------------
      plot_Tsg( hMainFig, hPlotAxes, 1, tsg.DAYD, tsg.(PARA), ...
                tsg.([PARA '_QC']), PARA, '', 'none', '*', 2);
     
    end

  % ---------------------------------------------------------------------
  case 2
    
    erase_Line( hPlotAxes, 2 );
    if ~isempty( tsg.(PARA) )
%       if ~isempty( tsg.([PARA '_QC']) )
        plot_Tsg( hMainFig, hPlotAxes, 2, tsg.DAYD, tsg.(PARA),...
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
                  tsg.([PARA '_QC']), PARA,'', lineType, '*', 2);
%       else
%         plot_Tsg( hMainFig, hPlotAxes, 2, tsg.DAYD, tsg.(PARA),...
%                   [],PARA,'k','none','*',2);
%       end
    end
    
  % ---------------------------------------------------------------------
  case 3
    erase_Line( hPlotAxes, 3 );
      plot_Tsg( hMainFig, hPlotAxes, 3, tsg.DAYD, tsg.(PARA),[],...
                PARA, '', lineType, '*', 2);
end

axesCommonProp( hPlotAxes );

end