[Dart-dev] [6087] DART/branches/development: Removed the "print_obs_locations" namelist variable and modified the documentation and

nancy at ucar.edu nancy at ucar.edu
Thu Apr 25 14:27:38 MDT 2013


Revision: 6087
Author:   thoar
Date:     2013-04-25 14:27:37 -0600 (Thu, 25 Apr 2013)
Log Message:
-----------
Removed the "print_obs_locations" namelist variable and modified the documentation and
the programs to inform the users of the new policy of converting obs_sequence files to
netCDF and using plot_obs_netcdf.

obs_diag will still accept old namelists but issue appropriate messages based on the
value of print_obs_locations.

Modified Paths:
--------------
    DART/branches/development/diagnostics/matlab/PlotObsLocs.m
    DART/branches/development/diagnostics/matlab/plot_observation_locations.m
    DART/branches/development/diagnostics/threed_sphere/obs_diag.f90
    DART/branches/development/diagnostics/threed_sphere/obs_diag.html
    DART/branches/development/diagnostics/threed_sphere/obs_diag.nml
    DART/branches/development/models/CESM/work/input.nml
    DART/branches/development/models/MITgcm_annulus/work/input.nml
    DART/branches/development/models/MITgcm_ocean/work/input.nml
    DART/branches/development/models/NCOMMAS/work/input.nml
    DART/branches/development/models/PBL_1d/work/input.nml
    DART/branches/development/models/POP/work/input.nml
    DART/branches/development/models/bgrid_solo/work/input.nml
    DART/branches/development/models/cam/shell_scripts/input.normal.nml
    DART/branches/development/models/cam/shell_scripts/input.pert0.nml
    DART/branches/development/models/cam/work/input.nml
    DART/branches/development/models/cam/work/input_1.nml
    DART/branches/development/models/cam/work/input_capt.nml
    DART/branches/development/models/cam/work/input_n.nml
    DART/branches/development/models/coamps/templates/EXAMPLE.input.nml
    DART/branches/development/models/coamps_nest/templates/EXAMPLE.input.nml
    DART/branches/development/models/coamps_nest/templates/EXPERIMENT_EXAMPLE/input.nml
    DART/branches/development/models/pe2lyr/work/input.nml
    DART/branches/development/models/rose/work/input.nml
    DART/branches/development/models/sqg/work/input.nml
    DART/branches/development/models/tiegcm/work/input.nml
    DART/branches/development/models/wrf/experiments/Radar/input.nml
    DART/branches/development/models/wrf/regression/CONUS-V2/input.nml
    DART/branches/development/models/wrf/regression/CONUS-V3/icbc_real.ksh
    DART/branches/development/models/wrf/regression/Global-V3/input.nml.2002Dec31
    DART/branches/development/models/wrf/regression/Radar/input.nml
    DART/branches/development/models/wrf/work/input.nml
    DART/branches/development/observations/utilities/threed_sphere/input.nml

-------------- next part --------------
Modified: DART/branches/development/diagnostics/matlab/PlotObsLocs.m
===================================================================
--- DART/branches/development/diagnostics/matlab/PlotObsLocs.m	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/diagnostics/matlab/PlotObsLocs.m	2013-04-25 20:27:37 UTC (rev 6087)
@@ -2,10 +2,12 @@
                     in_subset, in_plotd, in_world, in_invertz, in_writeplot, ...
                     in_legend2dloc, in_legend3dloc, in_viewlist, ...
                     in_ncfname, in_orientation, in_plotname)
-%% PLOTOBSLOCS - Plot an observation_locations.NNN.dat file as output from the latest obs_diag program in DART.
-% (You must enable an obs_diag_nml namelist entry to get the output files; 
-% they are not created by default.)
+%% PlotObsLocs - Plot an observation_locations.NNN.dat file as output from the latest obs_diag program in DART.
 %
+% WARNING: obs_diag no longer creates the observation_locations.NNN.dat file.
+% WARNING: Convert your observation sequence files to netCDF using 'obs_seq_to_netcdf'
+% WARNING: and then use 'plot_obs_netcdf.m'
+%
 % warning: this has a very long argument list, because it is intended that 
 % it be called from another program or function.   all the arguments can be 
 % replaced by the character string 'default' to use the internal defaults.
@@ -95,6 +97,11 @@
 %               filename is generated as 'Nd_locations_epochNNN.ps', but
 %               subsequent plots will overwrite earlier ones, so this input
 %               can be used to customize the name.
+%
+% WARNING: obs_diag no longer creates the observation_locations.NNN.dat file.
+% WARNING: Convert your observation sequence files to netCDF using 'obs_seq_to_netcdf'
+% WARNING: and then use 'plot_obs_netcdf.m'
+%
 
 %% DART software - Copyright 2004 - 2011 UCAR. This open source software is
 % provided by UCAR, "as is", without charge, subject to all terms of use at
@@ -131,6 +138,12 @@
 %  user_specified (prompt user for 4 or 6 corners)
 %
 
+disp(' ')
+disp('WARNING: obs_diag no longer creates the observation_locations.NNN.dat file.')
+disp('WARNING: Convert your observation sequence files to netCDF using ''obs_seq_to_netcdf''')
+disp('WARNING: and then use ''plot_obs_netcdf.m''')
+disp(' ')
+
 arg_ncfname = 'obs_diag_output.nc';  % default file to use for obs info
 arg_dartqc = 0;         % dart QC values to use ... see in_dartqc table above
 arg_box = [];         % [[lon_min, lon_max, lat_min, lat_max], v_min, v_max]

Modified: DART/branches/development/diagnostics/matlab/plot_observation_locations.m
===================================================================
--- DART/branches/development/diagnostics/matlab/plot_observation_locations.m	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/diagnostics/matlab/plot_observation_locations.m	2013-04-25 20:27:37 UTC (rev 6087)
@@ -4,6 +4,10 @@
 % one per time epoch, from data output from the obs_diag program if
 % the 'print_obs_locations' namelist item in the &obs_diag list is .true.
 %
+% WARNING: obs_diag no longer creates the observation_locations.NNN.dat file.
+% WARNING: Convert your observation sequence files to netCDF using 'obs_seq_to_netcdf'
+% WARNING: and then use 'plot_obs_netcdf.m'
+%
 % There are lots of user settable options.  This script prompts you
 % interactively for the most common ones.  Then it calls PlotObsLocs()
 % with the proper argument list to pass in your selections.
@@ -23,6 +27,12 @@
 
 % setup all args to be the string 'default', which will be interpreted by 
 % the PlotObsLocs routine to use the default values.   
+
+disp(' ')
+disp('WARNING: obs_diag no longer creates the observation_locations.NNN.dat file.')
+disp('WARNING: Convert your observation sequence files to netCDF using ''obs_seq_to_netcdf''')
+disp('WARNING: and then use ''plot_obs_netcdf.m''')
+disp(' ')
  
 ncfname     = 'default';
 plotd       = 'default';

Modified: DART/branches/development/diagnostics/threed_sphere/obs_diag.f90
===================================================================
--- DART/branches/development/diagnostics/threed_sphere/obs_diag.f90	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/diagnostics/threed_sphere/obs_diag.f90	2013-04-25 20:27:37 UTC (rev 6087)
@@ -196,6 +196,7 @@
 real(r8):: rat_cri               = 5000.0_r8 ! QC ratio
 real(r8):: input_qc_threshold    = 3.0_r8    ! maximum NCEP QC factor
 logical :: print_mismatched_locs = .false.
+logical :: print_obs_locations   = .false.
 logical :: verbose               = .false.
 logical :: outliers_in_histogram = .false.
 logical :: create_rank_histogram = .true.
@@ -205,7 +206,7 @@
                        bin_separation, bin_width, time_to_skip, max_num_bins, &
                        plevel, hlevel, mlevel, rat_cri, input_qc_threshold,   &
                        Nregions, lonlim1, lonlim2, latlim1, latlim2,          &
-                       reg_names, print_mismatched_locs,                      &
+                       reg_names, print_mismatched_locs, print_obs_locations, &
                        verbose, outliers_in_histogram,                        &
                        create_rank_histogram, hlevel_edges, trusted_obs
 
@@ -365,6 +366,20 @@
    call error_handler(E_ERR, 'obs_diag', string1, source, revision, revdate, text2=string2)
 endif
 
+! Check to issue the error or warning about deprecation of print_obs_locations
+
+if ( print_obs_locations ) then
+   write(string1,*)'"print_obs_locations" is no longer supported. See "obs_seq_to_netcdf.html"'
+   write(string2,*)'Run "obs_seq_to_netcdf" and then "DART/diagnostics/matlab/plot_obs_netcdf.m"'
+   write(string3,*)'Please remove "print_obs_locations" from your namelists.'
+   call error_handler(E_ERR, 'obs_diag', string1, source, revision, revdate, &
+                      text2=string2, text3=string3 )
+else
+   write(string1,*)'"print_obs_locations" is no longer supported. See "obs_seq_to_netcdf.html"'
+   write(string2,*)'Please remove "print_obs_locations" from your namelists.'
+   call error_handler(E_WARN, 'obs_diag', string1, source, revision, revdate, text2=string2)
+endif
+
 ! Count up the number of 'trusted' observations
 ! Check to make sure trusted observations desired are supported.
 num_trusted = 0

Modified: DART/branches/development/diagnostics/threed_sphere/obs_diag.html
===================================================================
--- DART/branches/development/diagnostics/threed_sphere/obs_diag.html	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/diagnostics/threed_sphere/obs_diag.html	2013-04-25 20:27:37 UTC (rev 6087)
@@ -314,7 +314,7 @@
       plevel, hlevel, mlevel, 
       rat_cri, input_qc_threshold, 
       Nregions, lonlim1, lonlim2, latlim1, latlim2, 
-      reg_names, print_mismatched_locs, print_obs_locations, verbose,
+      reg_names, print_mismatched_locs, <em class=removed>print_obs_locations,</em> verbose,
       outliers_in_histogram
 </pre>
 </div>
@@ -522,9 +522,9 @@
 	    same location.<br />
 	    Default: .false. </TD></TR>  
 
-<TR><!--contents--><TD valign=top>   print_obs_locations </TD>
-    <!--  type  --><TD valign=top>   logical             </TD>
-    <!--descript--><TD>Create additional output files with the lat/lon
+<TR><!--contents--><TD valign=top><em class=removed>print_obs_locations</em> </TD>
+    <!--  type  --><TD valign=top><em class=removed>logical            </em> </TD>
+    <!--descript--><TD><em class=removed>Create additional output files with the lat/lon
             location of each observation, obs type, and QC value. These
 	    files are named <em
 	    class="file">observation_locations.xxx.dat</em> and may be
@@ -534,7 +534,12 @@
 	    For pathological reasons, these files cannot exist prior to execution.
 	    If they do, an error will result, and execution halts..
 	    <br />
-	    Default: .false. </TD></TR>  
+	    Default: .false.</em> <strong>To plot the locations of observations,</strong>
+            please convert your observation sequence file to netCDF with
+            <a href="../../obs_sequence/obs_seq_to_netcdf.html">obs_seq_to_netcdf</a> and then
+            plot with 
+            <a href="../../diagnostics/matlab/plot_obs_netcdf.m">plot_obs_netcdf</a> 
+ </TD></TR>  
 
 <TR><!--contents--><TD valign=top>   verbose   </TD>
     <!--  type  --><TD valign=top>   logical   </TD>
@@ -591,11 +596,10 @@
         from the obs_diag.</LI>
     <LI><em class="file">LargeInnov.txt</em> contains the distance ratio 
 	histogram -- useful for estimating rat_cri.</LI>
-    <LI><em class="file">observation_locations.xxx.dat</em> contains the
+    <LI><em class=removed>observation_locations.xxx.dat contains the
     locations for all the observation in temporal bin "xxx". These are 
     only created if the namelist variable 
-    <em class="code">print_obs_locations</em> is set to 
-    <em class="code">.true.</em> 
+    print_obs_locations is set to .true.</em> 
 	</LI>
 </UL>
 
@@ -851,7 +855,7 @@
    latlim2    = <em class="input"> 90.0,</em>
    reg_names  = <em class="input">'Entire Domain',</em>
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
+   <em class=removed>print_obs_locations   = .false.,</em>
    verbose               = <em class="input">.true.,</em>
    outliers_in_histogram = <em class="input">.false.</em>,
    /

Modified: DART/branches/development/diagnostics/threed_sphere/obs_diag.nml
===================================================================
--- DART/branches/development/diagnostics/threed_sphere/obs_diag.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/diagnostics/threed_sphere/obs_diag.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -26,7 +26,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    outliers_in_histogram = .false.,
    verbose               = .false.  /
 

Modified: DART/branches/development/models/CESM/work/input.nml
===================================================================
--- DART/branches/development/models/CESM/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/CESM/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -330,7 +330,6 @@
    latlim2    =  20.0,  50.0,  50.0,  50,
    reg_names  = 'Indian Ocean', 'Pacific', 'Atlantic', 'North Atlantic',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .true.,
    hlevel =  10.0,  20.0,   30.0,   40.0,  100.0,  
             200.0, 500.0, 1000.0, 2000.0, 

Modified: DART/branches/development/models/MITgcm_annulus/work/input.nml
===================================================================
--- DART/branches/development/models/MITgcm_annulus/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/MITgcm_annulus/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -188,6 +188,5 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations = .false.,
    verbose = .false.  /
 

Modified: DART/branches/development/models/MITgcm_ocean/work/input.nml
===================================================================
--- DART/branches/development/models/MITgcm_ocean/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/MITgcm_ocean/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -280,7 +280,6 @@
    latlim2    =  40.0,  20.0,  40.0,
    reg_names  = 'Gulf & Caribbean', 'Caribbean', 'Gulf of Mexico',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .true.,
    hlevel =  -2.50185,   -7.7967, -13.72595, -20.40305,  -27.9614, 
             -36.55765,  -46.3757,  -57.6311, -70.57615,  -85.5057,

Modified: DART/branches/development/models/NCOMMAS/work/input.nml
===================================================================
--- DART/branches/development/models/NCOMMAS/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/NCOMMAS/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -242,7 +242,6 @@
    latlim2    =  20.0,  50.0,  50.0,  50,
    reg_names  = 'Indian Ocean', 'Pacific', 'Atlantic', 'North Atlantic',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .true.,
    hlevel =  10.0,  20.0,   30.0,   40.0,  100.0,  
             200.0, 500.0, 1000.0, 2000.0, 

Modified: DART/branches/development/models/PBL_1d/work/input.nml
===================================================================
--- DART/branches/development/models/PBL_1d/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/PBL_1d/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -242,6 +242,5 @@
    latlim2    =  90.0,
    reg_names  = 'global',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.  /
 

Modified: DART/branches/development/models/POP/work/input.nml
===================================================================
--- DART/branches/development/models/POP/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/POP/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -283,7 +283,6 @@
    latlim2    =  20.0,  50.0,  50.0,  50,
    reg_names  = 'Indian Ocean', 'Pacific', 'Atlantic', 'North Atlantic',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .true.,
    hlevel =  10.0,  20.0,   30.0,   40.0,  100.0,  
             200.0, 500.0, 1000.0, 2000.0, 

Modified: DART/branches/development/models/bgrid_solo/work/input.nml
===================================================================
--- DART/branches/development/models/bgrid_solo/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/bgrid_solo/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -208,7 +208,7 @@
    output_box_info             = .false.  /
 
 &utilities_nml
-   TERMLEVEL = 1,
+   TERMLEVEL = 2,
    module_details = .false.,
    logfilename = 'dart_log.out',
    nmlfilename = 'dart_log.nml',
@@ -298,6 +298,5 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .true.,
    verbose               = .false.  /
 

Modified: DART/branches/development/models/cam/shell_scripts/input.normal.nml
===================================================================
--- DART/branches/development/models/cam/shell_scripts/input.normal.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/cam/shell_scripts/input.normal.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -280,7 +280,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations = .false.,
    verbose = .false.
    /
 

Modified: DART/branches/development/models/cam/shell_scripts/input.pert0.nml
===================================================================
--- DART/branches/development/models/cam/shell_scripts/input.pert0.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/cam/shell_scripts/input.pert0.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -286,7 +286,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations = .false.,
    verbose = .false.
    /
 

Modified: DART/branches/development/models/cam/work/input.nml
===================================================================
--- DART/branches/development/models/cam/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/cam/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -286,7 +286,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations = .false.,
    verbose = .false.
    /
 

Modified: DART/branches/development/models/cam/work/input_1.nml
===================================================================
--- DART/branches/development/models/cam/work/input_1.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/cam/work/input_1.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -144,7 +144,6 @@
   latlim2               = 80.0, -20.0,  20.0,  55.0
   reg_names             = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America'
   print_mismatched_locs = .false.
-  print_obs_locations   = .false.
   verbose               = .false.
 /
 

Modified: DART/branches/development/models/cam/work/input_capt.nml
===================================================================
--- DART/branches/development/models/cam/work/input_capt.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/cam/work/input_capt.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -171,7 +171,6 @@
    latlim2               = 80.0, -20.0,  20.0,  55.0
    reg_names             = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America'
    print_mismatched_locs = .false.
-   print_obs_locations   = .false.
    verbose               = .false.
   /
 

Modified: DART/branches/development/models/cam/work/input_n.nml
===================================================================
--- DART/branches/development/models/cam/work/input_n.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/cam/work/input_n.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -144,7 +144,6 @@
   latlim2               = 80.0, -20.0,  20.0,  55.0
   reg_names             = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America'
   print_mismatched_locs = .false.
-  print_obs_locations   = .false.
   verbose               = .false.
 /
 

Modified: DART/branches/development/models/coamps/templates/EXAMPLE.input.nml
===================================================================
--- DART/branches/development/models/coamps/templates/EXAMPLE.input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/coamps/templates/EXAMPLE.input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -179,6 +179,5 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.  /
 

Modified: DART/branches/development/models/coamps_nest/templates/EXAMPLE.input.nml
===================================================================
--- DART/branches/development/models/coamps_nest/templates/EXAMPLE.input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/coamps_nest/templates/EXAMPLE.input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -179,6 +179,5 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.  /
 

Modified: DART/branches/development/models/coamps_nest/templates/EXPERIMENT_EXAMPLE/input.nml
===================================================================
--- DART/branches/development/models/coamps_nest/templates/EXPERIMENT_EXAMPLE/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/coamps_nest/templates/EXPERIMENT_EXAMPLE/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -221,7 +221,6 @@
    latlim2    =  80.0,
    reg_names  = 'Europe',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.
    /
 

Modified: DART/branches/development/models/pe2lyr/work/input.nml
===================================================================
--- DART/branches/development/models/pe2lyr/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/pe2lyr/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -221,6 +221,5 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.  /
 

Modified: DART/branches/development/models/rose/work/input.nml
===================================================================
--- DART/branches/development/models/rose/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/rose/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -188,7 +188,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.
    /
  

Modified: DART/branches/development/models/sqg/work/input.nml
===================================================================
--- DART/branches/development/models/sqg/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/sqg/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -235,7 +235,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Mid-latitudes', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .true.
   /
 

Modified: DART/branches/development/models/tiegcm/work/input.nml
===================================================================
--- DART/branches/development/models/tiegcm/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/tiegcm/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -196,7 +196,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .true.
    /
 

Modified: DART/branches/development/models/wrf/experiments/Radar/input.nml
===================================================================
--- DART/branches/development/models/wrf/experiments/Radar/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/wrf/experiments/Radar/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -209,7 +209,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.  /
 
 &restart_file_tool_nml 

Modified: DART/branches/development/models/wrf/regression/CONUS-V2/input.nml
===================================================================
--- DART/branches/development/models/wrf/regression/CONUS-V2/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/wrf/regression/CONUS-V2/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -148,7 +148,6 @@
    latlim2    =  89.0, 
    reg_names  = 'Full Domain',
    print_mismatched_locs = .false.,
-   print_obs_locations = .false.,
    verbose = .false.  /
 
 &restart_file_tool_nml

Modified: DART/branches/development/models/wrf/regression/CONUS-V3/icbc_real.ksh
===================================================================
--- DART/branches/development/models/wrf/regression/CONUS-V3/icbc_real.ksh	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/wrf/regression/CONUS-V3/icbc_real.ksh	2013-04-25 20:27:37 UTC (rev 6087)
@@ -347,7 +347,6 @@
    latlim2                    =   55.0,
    reg_names                  = 'North America',
    print_mismatched_locs      = .false.,
-   print_obs_locations        = .false.,
    verbose                    = .false.  /
 
  &restart_file_utility_nml

Modified: DART/branches/development/models/wrf/regression/Global-V3/input.nml.2002Dec31
===================================================================
--- DART/branches/development/models/wrf/regression/Global-V3/input.nml.2002Dec31	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/wrf/regression/Global-V3/input.nml.2002Dec31	2013-04-25 20:27:37 UTC (rev 6087)
@@ -214,7 +214,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.  /
 
 &restart_file_utility_nml 

Modified: DART/branches/development/models/wrf/regression/Radar/input.nml
===================================================================
--- DART/branches/development/models/wrf/regression/Radar/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/wrf/regression/Radar/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -195,7 +195,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.  /
 
 &restart_file_utility_nml 

Modified: DART/branches/development/models/wrf/work/input.nml
===================================================================
--- DART/branches/development/models/wrf/work/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/models/wrf/work/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -279,7 +279,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.,
    outliers_in_histogram = .false.,
    /

Modified: DART/branches/development/observations/utilities/threed_sphere/input.nml
===================================================================
--- DART/branches/development/observations/utilities/threed_sphere/input.nml	2013-04-25 18:53:01 UTC (rev 6086)
+++ DART/branches/development/observations/utilities/threed_sphere/input.nml	2013-04-25 20:27:37 UTC (rev 6087)
@@ -83,7 +83,6 @@
    latlim2    =  80.0, -20.0,  20.0,  55.0,
    reg_names  = 'Northern Hemisphere', 'Southern Hemisphere', 'Tropics', 'North America',
    print_mismatched_locs = .false.,
-   print_obs_locations   = .false.,
    verbose               = .false.,
    /
 


More information about the Dart-dev mailing list