[Dart-dev] DART/branches Revision: 13134
dart at ucar.edu
dart at ucar.edu
Fri Apr 26 11:28:06 MDT 2019
thoar at ucar.edu
2019-04-26 11:28:06 -0600 (Fri, 26 Apr 2019)
37
Removing non-redistributable stuff.
Deleted: DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/coast.m
===================================================================
--- DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/coast.m 2019-04-25 21:47:54 UTC (rev 13133)
+++ DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/coast.m 2019-04-26 17:28:06 UTC (rev 13134)
@@ -1,13 +0,0 @@
-function ll = coast
-%COAST coastline data
-%
-% ll = COAST returns the world vector shoreline in the coast MAT-file as a
-% two-column vector of latitudes and longitudes in degrees.
-%
-% See also COAST.MAT, WORLDLO, USALO, USAHI
-
-% Copyright 1996-2000 Systems Planning and Analysis, Inc. and The MathWorks, Inc.
-% $Revision$ $Date$
-
-load coast
-ll = [lat,long];
Modified: DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/plot_error_correlations.m
===================================================================
--- DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/plot_error_correlations.m 2019-04-25 21:47:54 UTC (rev 13133)
+++ DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/plot_error_correlations.m 2019-04-26 17:28:06 UTC (rev 13134)
@@ -82,6 +82,7 @@
coastlines2(:,2)=lons;
coastlines2(:,1)=lats;
%
+
% in global models, sometimes i need to flip longitudes
flip=0;
if (flip==1)
@@ -99,7 +100,10 @@
row_c=find(coastlines(:,2)<-178.5 & coastlines(:,2)>=-180 );
coastlines(row_c,2)=NaN;
- coastlines0=coast;
+ coasts = load('coast.mat');
+ coastlines0 = [coasts.lat,coasts.long];
+ clear coasts
+
flip=0;
if (flip==1)
coastlin=coastlines0;
Deleted: DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/usahi.m
===================================================================
--- DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/usahi.m 2019-04-25 21:47:54 UTC (rev 13133)
+++ DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/usahi.m 2019-04-26 17:28:06 UTC (rev 13134)
@@ -1,36 +0,0 @@
-function out = usahi(request)
-
-% USAHI returns data from the USAHI atlas data file
-%
-% USAHI types a list of the atlas data variables in the USAHI Mat-file to
-% the screen.
-%
-% s = USASHI('request') returns the requested variable. Valid requests are
-% 'stateline','statepatch', and 'statetext'. This command can be used as
-% an argument to other commands, such as DISPLAYM(USAHI('statepatch')).
-%
-% See also COAST, WORLDLO, USALO, USAHI.MAT
-
-% Copyright 1996-2003 The MathWorks, Inc.
-% $Revision$ $Date$
-
-
-if nargin == 0
- disp('USAHI atlas data:')
- disp(' ')
- disp(' Geographic Data Structures: ')
- disp(' ')
- disp(' stateline - State outline as filled patches')
- disp(' statepatch - State outlines as lines')
- disp(' statetext - State names as text')
- disp(' ')
- return
-end
-
-load('usahi',request)
-if exist(request) ~= 1
- error([ request ' not found in USAHI.MAT'])
-end
-
-eval(['out = ' request ';'])
-
Deleted: DART/branches/mizzi/models/wrf_chem/run_matlab_scripts/usahi.mat
===================================================================
(Binary files differ)
More information about the Dart-dev
mailing list