Skip to content
Snippets Groups Projects
Commit 26987e24 authored by Yves Gouriou's avatar Yves Gouriou
Browse files

developpement module de correction -continuation

parent 1ccde30f
No related branches found
No related tags found
No related merge requests found
...@@ -50,10 +50,10 @@ function dev_tsgcor_GUI( hMainFig ) ...@@ -50,10 +50,10 @@ function dev_tsgcor_GUI( hMainFig )
set(0,'Units','normalized'); set(0,'Units','normalized');
guiLimits = get(0,'ScreenSize'); guiLimits = get(0,'ScreenSize');
guiLimits(1) = guiLimits(1) + 0.05; guiLimits(1) = guiLimits(1) + 0.05;
guiLimits(2) = guiLimits(2) + 0.1; guiLimits(2) = guiLimits(2) + 0.05;
guiLimits(3) = guiLimits(3) - 0.15; guiLimits(3) = guiLimits(3) - 0.1;
guiLimits(4) = guiLimits(4) - 0.25; guiLimits(4) = guiLimits(4) - 0.2;
% Create and then hide the GUI as it is being constructed. % Create and then hide the GUI as it is being constructed.
% -------------------------------------------------------- % --------------------------------------------------------
hChild1Fig = figure(... hChild1Fig = figure(...
...@@ -305,7 +305,12 @@ sample = dev_diffTsgSample(tsg, psal_smooth, sample, TSG_SAMPLING_TIME); ...@@ -305,7 +305,12 @@ sample = dev_diffTsgSample(tsg, psal_smooth, sample, TSG_SAMPLING_TIME);
% Trac % Trac
% ----- % -----
axes(hPlotAxes(1)); tsg_plot_SalTsgSample( hMainFig, hPlotAxes );
% The callback to detect the mouse motion can be set to on
% --------------------------------------------------------
set( hChild1Fig, 'Tag', 'ButtonMotionOn');
% tsg = dev_corMethod1(tsg, sample, dateMin, dateMax, COR_TIME_WINDOWS); % tsg = dev_corMethod1(tsg, sample, dateMin, dateMax, COR_TIME_WINDOWS);
...@@ -330,7 +335,7 @@ axes(hPlotAxes(1)); ...@@ -330,7 +335,7 @@ axes(hPlotAxes(1));
zoomAdaptiveDateTicks('off'); zoomAdaptiveDateTicks('off');
case 'off' case 'off'
pan off pan off
set(hQCPushtool, 'Tag', 'off' ); % set(hQCPushtool, 'Tag', 'off' );
zoom on zoom on
zoomAdaptiveDateTicks('on'); zoomAdaptiveDateTicks('on');
...@@ -354,7 +359,7 @@ axes(hPlotAxes(1)); ...@@ -354,7 +359,7 @@ axes(hPlotAxes(1));
panAdaptiveDateTicks('off'); panAdaptiveDateTicks('off');
case 'off' case 'off'
zoom off zoom off
set(hQCPushtool, 'Tag', 'off' ); % set(hQCPushtool, 'Tag', 'off' );
pan on pan on
panAdaptiveDateTicks('on'); panAdaptiveDateTicks('on');
...@@ -509,41 +514,41 @@ axes(hPlotAxes(1)); ...@@ -509,41 +514,41 @@ axes(hPlotAxes(1));
% Test if the callback can be activated % Test if the callback can be activated
% ------------------------------------- % -------------------------------------
% if strcmp( get( hChild1Fig, 'Tag'), 'ButtonMotionOn') if strcmp( get( hChild1Fig, 'Tag'), 'ButtonMotionOn')
% Retrieve named application data % Retrieve named application data
% ------------------------------- % -------------------------------
% tsg = getappdata( hChild1Fig, 'tsg_data'); tsg = getappdata( hMainFig, 'tsg_data');
% Get the mouse position % Get the mouse position
% ---------------------- % ----------------------
% point = get(gcf,'CurrentPoint'); point = get(gcf,'CurrentPoint');
% if point(1) > .05 && point(2) > .6 && point(1) < .95 && point(2) < .92 if point(1) > .05 && point(2) > .6 && point(1) < .95 && point(2) < .92
% Get current position of cusor and return its coordinates in % Get current position of cusor and return its coordinates in
% axes with handle h_axes % axes with handle h_axes
% ----------------------------------------------------------- % -----------------------------------------------------------
% [x, y] = gpos(hPlotAxes(1)); [x, y] = gpos(hPlotAxes(1));
% if x > tsg.TIME(1) && x < tsg.TIME(end) if x > tsg.TIME(1) && x < tsg.TIME(end)
% indCursor = find( tsg.TIME > x); indCursor = find( tsg.TIME > x);
% use sprintf with format instead strcat & num2str but flag % use sprintf with format instead strcat & num2str but flag
% - don't work with 0, eg %+07.4f % - don't work with 0, eg %+07.4f
% set( hInfoText, 'String',... set( hInfoText, 'String',...
% sprintf(['%s - Latitude = %s - Longitude = %s '... sprintf(['%s - Latitude = %s - Longitude = %s '...
% ' - Salinity = %07.4f - Temperature = %07.4f'],... ' - Salinity = %07.4f - Temperature = %07.4f'],...
% datestr(tsg.TIME(indCursor(1)),'dd/mm/yyyy HH:MM'),... datestr(tsg.TIME(indCursor(1)),'dd/mm/yyyy HH:MM'),...
% dd2dm(tsg.LATITUDE(indCursor(1)),0), ... dd2dm(tsg.LATITUDE(indCursor(1)),0), ...
% dd2dm(tsg.LONGITUDE(indCursor(1)),1), ... dd2dm(tsg.LONGITUDE(indCursor(1)),1), ...
% tsg.PSAL(indCursor(1)), ... tsg.PSAL(indCursor(1)), ...
% tsg.TEMP_TSG(indCursor(1))... tsg.TEMP_TSG(indCursor(1))...
% )); ));
% end end
% end end
% end end
end end
%--------------------------------------------------------------------- %---------------------------------------------------------------------
......
...@@ -904,6 +904,7 @@ function tsgqc_GUI ...@@ -904,6 +904,7 @@ function tsgqc_GUI
function QuitProgram(hObject, eventdata) function QuitProgram(hObject, eventdata)
delete(hMainFig); delete(hMainFig);
% reset Matlab search path to default % reset Matlab search path to default
rmpath( [DEFAULT_PATH_FILE filesep 'tsg_util'] ); rmpath( [DEFAULT_PATH_FILE filesep 'tsg_util'] );
rmpath( [DEFAULT_PATH_FILE filesep 'tsg_data'] ); rmpath( [DEFAULT_PATH_FILE filesep 'tsg_data'] );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment