Skip to content

Commit

Permalink
Merge pull request #15 from Coastal-Imaging-Research-Network/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
allisonpenko authored Mar 29, 2017
2 parents 70dcc19 + 9d11cf9 commit 7f9cb04
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ a CIL station and will fall back to a single input argument version
(time), leaving the user responsible for chosing the correct tide
location.

Please let us know if problems arise so that we can keep the code
bulletproof.
Please let us know if problems arise
[HERE](https://github.com/Coastal-Imaging-Research-Network/cBathy-Toolbox/issues)



Expand Down
7 changes: 6 additions & 1 deletion democBathy.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
stationStr = 'argus02a';
stackName = 'testStack102210Duck';
bathy = analyzeSingleBathyRunNotCIL(stackName, stationStr);
bathy.params.debug.production=1;
plotBathyCollect(bathy)

% Now compare this result with a supplied example CRAB survey from three
Expand All @@ -32,7 +33,10 @@
% Finally, try turning on the debug feature and test it using guidance from
% the user manual. This is done by setting params.debug.production to 0.
% You may want to change some of the debug options. You then simply repeat
% the analyzeSingleBathyNotCIL commands.% Copyright (C) 2017 Coastal Imaging Research Network

% the analyzeSingleBathyNotCIL commands.

% Copyright (C) 2017 Coastal Imaging Research Network
% and Oregon State University

% This program is free software: you can redistribute it and/or
Expand All @@ -55,3 +59,4 @@
%key cBathy
%


6 changes: 3 additions & 3 deletions plotBathyKalmanStep.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function plotBathyKalmanStep(bathy, priorBathy)
title('Prior Err')
h=colorbar('peer', gca); set( h, 'ydir', 'rev' );
foo = get( h, 'yticklabel' );
foo = num2str( abs(str2num(foo)), '%.1f' );
foo = strrep(foo,'-','');
set( h, 'yticklabel', foo );
set( get(h,'title'), 'string', '(m)' );

Expand All @@ -53,7 +53,7 @@ function plotBathyKalmanStep(bathy, priorBathy)
title('Obs Err')
h=colorbar('peer', gca); set( h, 'ydir', 'rev' );
foo = get( h, 'yticklabel' );
foo = num2str( abs(str2num(foo)), '%.1f' );
foo = strrep(foo,'-','');
set( h, 'yticklabel', foo );
set( get(h,'title'), 'string', '(m)' );

Expand All @@ -65,7 +65,7 @@ function plotBathyKalmanStep(bathy, priorBathy)
title('K')
h=colorbar('peer', gca);
foo = get( h, 'yticklabel' );
foo = num2str( abs(str2num(foo)), '%.1f' );
foo = strrep(foo,'-','');
set( h, 'yticklabel', foo );

%
Expand Down

0 comments on commit 7f9cb04

Please sign in to comment.