Skip to content

Commit

Permalink
Merge pull request #395 from aodn/2.5.21
Browse files Browse the repository at this point in the history
2.5.21
  • Loading branch information
ggalibert authored Nov 23, 2016
2 parents cd3ae8d + ae925dd commit aba8887
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Graph/TimeSeries/graphTimeSeriesTimeDepth.m
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
% xPcolor = [time.data(1:end-1) - diff(time.data)/2; time.data(end) - (time.data(end)-time.data(end-1))/2];
% yPcolor = [depth.data(1:end-1) - diff(depth.data)/2; depth.data(end) - (depth.data(end)-depth.data(end-1))/2];

h = pcolor(ax, xPcolor, yPcolor, double(var.data'));
h = pcolor(ax, double(xPcolor), double(yPcolor), double(var.data'));
set(h, 'FaceColor', 'flat', 'EdgeColor', 'none');
cb = colorbar();

Expand Down
2 changes: 1 addition & 1 deletion Graph/TimeSeries/graphTimeSeriesTimeFrequency.m
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
% xPcolor = [time.data(1:end-1) - diff(time.data)/2; time.data(end) - (time.data(end)-time.data(end-1))/2];
% yPcolor = [freq.data(1:end-1) - diff(freq.data)/2; freq.data(end) - (freq.data(end)-freq.data(end-1))/2];

h = pcolor(ax, xPcolor, yPcolor, double(var.data'));
h = pcolor(ax, double(xPcolor), double(yPcolor), double(var.data'));
set(h, 'FaceColor', 'flat', 'EdgeColor', 'none');
cb = colorbar();

Expand Down
2 changes: 1 addition & 1 deletion Graph/TimeSeries/graphTimeSeriesTimeFrequencyDirection.m
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
X(i, :) = r*sin(theta(i));
end

h = pcolor(ax, X, Y, double([squeeze(sswvData(iTime, :, :)), sswvData(iTime, :, 1)']')); % we need to repeat the first values at the end
h = pcolor(ax, double(X), double(Y), double([squeeze(sswvData(iTime, :, :)), sswvData(iTime, :, 1)']')); % we need to repeat the first values at the end
axis equal tight
shading flat
set(ax, ...
Expand Down
2 changes: 1 addition & 1 deletion Graph/pcolorMooring2DVar.m
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ function pcolorMooring2DVar(sample_data, varName, isQC, saveToFile, exportDir)
dataVar(~iGoodHeight) = [];
dataVar = reshape(dataVar, nGoodTime, nGoodHeight);

hPcolorVar(i) = pcolor(hAxMooringVar, xPcolor, yPcolor, double(dataVar'));
hPcolorVar(i) = pcolor(hAxMooringVar, double(xPcolor), double(yPcolor), double(dataVar'));
set(hPcolorVar(i), 'FaceColor', 'flat', 'EdgeColor', 'none');

% Let's redefine properties after pcolor to make sure grid lines appear
Expand Down
5 changes: 2 additions & 3 deletions Preprocessing/CTDDepthBinPP.m
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,8 @@
% auto logical in input to enable running under batch processing
if nargin<3, auto=false; end

% no modification of data is performed on the raw FV00 dataset except
% local time to UTC conversion
if strcmpi(qcLevel, 'raw'), return; end
% in order to achieve consistency across facilities (which for the most part except SA already use binned
% datasets) and with FV01 files, this PP routine is performed on the raw FV00 dataset

% read options from parameter file Minimum Soak Delay: SoakDelay1 (sec.)
% Optimal Soak Delay: SoakDelay2 (sec.)
Expand Down
2 changes: 1 addition & 1 deletion imosToolbox.m
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function imosToolbox(auto, varargin)
end

% Set current toolbox version
toolboxVersion = ['2.5.20 - ' computer];
toolboxVersion = ['2.5.21 - ' computer];

switch auto
case 'auto', autoIMOSToolbox(toolboxVersion, varargin{:});
Expand Down
Binary file modified imosToolbox_Linux64.bin
Binary file not shown.
Binary file modified imosToolbox_Win32.exe
Binary file not shown.
Binary file modified imosToolbox_Win64.exe
Binary file not shown.

0 comments on commit aba8887

Please sign in to comment.