From d970cb08ef9f192ad35b61005a21e5f615c24345 Mon Sep 17 00:00:00 2001 From: allisonpenko Date: Fri, 20 Jan 2017 20:59:55 -0600 Subject: [PATCH 1/4] started testing demo debug feature --- democBathy.m | 1 + 1 file changed, 1 insertion(+) diff --git a/democBathy.m b/democBathy.m index a7e7d4b..94961af 100644 --- a/democBathy.m +++ b/democBathy.m @@ -8,6 +8,7 @@ stationStr = 'argus02a'; stackName = 'testStack102210Duck'; bathy = analyzeSingleBathyRunNotCIL(stackName, stationStr); +bathy.params.debug.production=0; plotBathyCollect(bathy) % Now compare this result with a supplied example CRAB survey from three From bbc0de8aa0e30a55f2390b85186cf022a1b851de Mon Sep 17 00:00:00 2001 From: allisonpenko Date: Thu, 2 Feb 2017 09:11:21 -0600 Subject: [PATCH 2/4] turned debug production off --- democBathy.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/democBathy.m b/democBathy.m index 94961af..2dc209c 100644 --- a/democBathy.m +++ b/democBathy.m @@ -8,7 +8,7 @@ stationStr = 'argus02a'; stackName = 'testStack102210Duck'; bathy = analyzeSingleBathyRunNotCIL(stackName, stationStr); -bathy.params.debug.production=0; +bathy.params.debug.production=1; plotBathyCollect(bathy) % Now compare this result with a supplied example CRAB survey from three @@ -33,4 +33,4 @@ % 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. \ No newline at end of file +% the analyzeSingleBathyNotCIL commands. From 400829d2bc17737c6bbbbbc8fe9d608aabdd8dd7 Mon Sep 17 00:00:00 2001 From: allisonpenko Date: Thu, 2 Feb 2017 09:17:01 -0600 Subject: [PATCH 3/4] added issue link in README file --- README.md | 4 ++-- democBathy.m | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0163d44..96ed0aa 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/democBathy.m b/democBathy.m index 2dc209c..ed6fa66 100644 --- a/democBathy.m +++ b/democBathy.m @@ -34,3 +34,4 @@ % 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. + From 77bc611942305ae6cbfc6d9322d1e1c6a2167b00 Mon Sep 17 00:00:00 2001 From: mpalmsten Date: Tue, 28 Mar 2017 23:36:26 -0500 Subject: [PATCH 4/4] fixed problem with removing negative values on y label of herr plots --- plotBathyKalmanStep.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plotBathyKalmanStep.m b/plotBathyKalmanStep.m index fe25fc8..2132cfc 100644 --- a/plotBathyKalmanStep.m +++ b/plotBathyKalmanStep.m @@ -42,7 +42,6 @@ function plotBathyKalmanStep(bathy, priorBathy) h=colorbar('peer', gca); set( h, 'ydir', 'rev' ); foo = get( h, 'yticklabel' ); foo = strrep(foo,'-',''); -foo = num2str( abs(str2num(char(foo))), '%.1f' ); set( h, 'yticklabel', foo ); set( get(h,'title'), 'string', '(m)' ); @@ -55,7 +54,6 @@ function plotBathyKalmanStep(bathy, priorBathy) h=colorbar('peer', gca); set( h, 'ydir', 'rev' ); foo = get( h, 'yticklabel' ); foo = strrep(foo,'-',''); -foo = num2str( abs(str2num(foo)), '%.1f' ); set( h, 'yticklabel', foo ); set( get(h,'title'), 'string', '(m)' ); @@ -67,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 ); %