[Thread Prev][Thread Next][Index]

Re: [las_users] Re: wrf-nmm curvilinear data in LAS



Hi Ansley,
Thank you for response. Even though both GLAT and GLON have a Time
dimension they do not change in time. I used a map variable ( from the
mapping function) however I got the same error:

! When there is no index map, make a coarse map file. Here is a
! VERY KLUDGY way of getting a subset of the data to do this on,
! otherwise its very slow...
 
   LET nx = `($ferret_curvi_coord_lon)[d=($data_num),j=1,x=@ngd]`
 **ERROR: invalid command: grave accent doesnt evaluate to scalar
          GLON[d=1,j=1,x=@ngd]
DEFINE VARIABLE nx = `GLON[d=1,j=1,x=@ngd]`
Command file, command group, or REPEAT execution aborted

Cheers
Arturo   


On Fri, 2012-07-27 at 09:08 -0700, Ansley Manke wrote:
> Hi Arturo,
> The Ferret scripts that run within LAS are not set up to handle 
> curvilinear coordinate variables that vary in time. Your dataset has:
> 
> 	float GLAT(Time, south_north, west_east) ;
> 		GLAT:FieldType = 104 ;
> 		GLAT:MemoryOrder = "XY " ;
> 		GLAT:description = "Geographic latitude, radians" ;
> 		GLAT:units = "" ;
> 		GLAT:stagger = "" ;
> 	float GLON(Time, south_north, west_east) ;
> 		GLON:FieldType = 104 ;
> 		GLON:MemoryOrder = "XY " ;
> 		GLON:description = "Geographic longitude, radians" ;
> 		GLON:units = "" ;
> 		GLON:stagger = "" ;
> 
> And we're expecting them to be only XY variables.  As far as I know we 
> haven't seen much of this kind of grid. While I can imagine extending 
> what we do for XY plots - just select the GLON and GLAT variables at the 
> time requested - it would be much more complex to get slices involving 
> time from such a grid.
> 
> Ansley
> 
> 
> On 7/26/2012 11:03 AM, Arturo Avila Rosas wrote:
> >> Dear LAS users,
> >> I am trying to add curvilinear data to LAS, however I am getting an
> >> error:
> >> **TMAP ERR: non-existent or not on line
> >>               /home/arturo/boston/wrfout_2005-01-23.nc
> >> SET DATA "/home/arturo/boston/wrfout_2005-01-23.nc"
> >> Command file, command group, or REPEAT execution aborted
> >> ERROR RUNNING SCRIPT
> >> I execute the following script in ferret go "/usr/local/apache-tomcat-6.0.26/webapps/las/WEB-INF/classes/resources/ferret/temp/ferret_operation_1343316800034.jnl"
> >> an I got the following error:
> >>
> >>     LET nx = `($ferret_curvi_coord_lon)[d=($data_num),j=1,x=@ngd]`
> >>   **ERROR: invalid command: grave accent doesnt evaluate to scalar
> >>            GLON[d=1,j=1,x=@ngd]
> >> DEFINE VARIABLE nx = `GLON[d=1,j=1,x=@ngd]`
> >> Command file, command group, or REPEAT execution aborted
> >>
> >> This is my configuration file
> >>
> >> <datasets>
> >>    <id-30957129aa name=" OUTPUT FROM WRF V3.3 MODEL" url="/home/arturo/boston/wrfout_2005-01-23.nc">
> >>     <properties>
> >>            <ferret>
> >>              <curv_lon_min>-78.4875717163086</curv_lon_min>
> >>              <curv_lat_min>37.480996733</curv_lat_min>
> >>              <curvi_coord_lat>GLAT</curvi_coord_lat>
> >>              <curvi_coord_lon>GLON</curvi_coord_lon>
> >>              <curv_lon_max>-63.38682556152344</curv_lon_max>
> >>              <curv_lat_max>46.320497922</curv_lat_max>
> >>            </ferret>
> >>      </properties>
> >>      <variables>
> >>        <LU_INDEX-id-30957129aa name="LAND USE CATEGORY" units="" url="#LU_INDEX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </LU_INDEX-id-30957129aa>
> >>        <RANDOM-id-30957129aa name="RANDOM NUMBER FOR SAS" units="" url="#RANDOM">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </RANDOM-id-30957129aa>
> >>        <HBM2-id-30957129aa name="Height boundary mask; =0 outer 2 rows on H points" units="" url="#HBM2">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HBM2-id-30957129aa>
> >>        <HBM3-id-30957129aa name="Height boundary mask; =0 outer 3 rows on H points" units="" url="#HBM3">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </HBM3-id-30957129aa>
> >>        <VBM2-id-30957129aa name="Velocity boundary mask; =0 outer 2 rows on V points" units="" url="#VBM2">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </VBM2-id-30957129aa>
> >>        <VBM3-id-30957129aa name="Velocity boundary mask; =0 outer 3 rows on V points" units="" url="#VBM3">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </VBM3-id-30957129aa>
> >>        <SM-id-30957129aa name="Sea mask; =1 for sea, =0 for land" units="" url="#SM">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </SM-id-30957129aa>
> >>        <SICE-id-30957129aa name="Sea ice mask; =1 for sea ice, =0 for no sea ice" units="" url="#SICE">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </SICE-id-30957129aa>
> >>        <PD-id-30957129aa name="Mass at I,J in the sigma domain" units="Pa" url="#PD">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </PD-id-30957129aa>
> >>        <FIS-id-30957129aa name="Surface geopotential" units="m2 s-2" url="#FIS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </FIS-id-30957129aa>
> >>        <RES-id-30957129aa name="Reciprocal of surface sigma" units="" url="#RES">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </RES-id-30957129aa>
> >>        <DX_NMM-id-30957129aa name="East-west distance H-to-V points" units="m" url="#DX_NMM">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </DX_NMM-id-30957129aa>
> >>        <PBLH-id-30957129aa name="PBL Height" units="m" url="#PBLH">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </PBLH-id-30957129aa>
> >>        <MIXHT-id-30957129aa name="MXL HEIGHT" units="m" url="#MIXHT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </MIXHT-id-30957129aa>
> >>        <USTAR-id-30957129aa name="Friction velocity" units="m s-1" url="#USTAR">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </USTAR-id-30957129aa>
> >>        <Z0-id-30957129aa name="Roughness height" units="m" url="#Z0">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </Z0-id-30957129aa>
> >>        <THS-id-30957129aa name="Surface potential temperature" units="K" url="#THS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </THS-id-30957129aa>
> >>        <QS-id-30957129aa name="Surface specific humidity" units="kg kg-1" url="#QS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </QS-id-30957129aa>
> >>        <TWBS-id-30957129aa name="Instantaneous sensible heat flux" units="W m-2" url="#TWBS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </TWBS-id-30957129aa>
> >>        <QWBS-id-30957129aa name="Instantaneous latent heat flux" units="W m-2" url="#QWBS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </QWBS-id-30957129aa>
> >>        <TAUX-id-30957129aa name="Instantaneous stress along X direction in KG/M/S^2" units="" url="#TAUX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </TAUX-id-30957129aa>
> >>        <TAUY-id-30957129aa name="Instantaneous stress along Y direction in KG/M/S^2" units="" url="#TAUY">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </TAUY-id-30957129aa>
> >>        <PREC-id-30957129aa name="Precipitation in physics timestep" units="m" url="#PREC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </PREC-id-30957129aa>
> >>        <APREC-id-30957129aa name="-" units="" url="#APREC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </APREC-id-30957129aa>
> >>        <ACPREC-id-30957129aa name="Accumulated total precipitation" units="m" url="#ACPREC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ACPREC-id-30957129aa>
> >>        <CUPREC-id-30957129aa name="Accumulated convective precipitation" units="m" url="#CUPREC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CUPREC-id-30957129aa>
> >>        <LSPA-id-30957129aa name="Land Surface Precipitation Accumulation" units="kg m-2" url="#LSPA">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </LSPA-id-30957129aa>
> >>        <SNO-id-30957129aa name="Liquid water eqiv of snow on ground" units="kg m-2" url="#SNO">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SNO-id-30957129aa>
> >>        <SI-id-30957129aa name="Depth of snow on ground" units="mm" url="#SI">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SI-id-30957129aa>
> >>        <CLDEFI-id-30957129aa name="Convective cloud efficiency" units="" url="#CLDEFI">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CLDEFI-id-30957129aa>
> >>        <TH10-id-30957129aa name="10-m potential temperature from MYJ" units="K" url="#TH10">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </TH10-id-30957129aa>
> >>        <Q10-id-30957129aa name="10-m specific humidity from MYJ" units="kg kg-1" url="#Q10">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </Q10-id-30957129aa>
> >>        <PSHLTR-id-30957129aa name="2-m pressure from MYJ" units="Pa" url="#PSHLTR">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </PSHLTR-id-30957129aa>
> >>        <TSHLTR-id-30957129aa name="2-m potential temperature from MYJ" units="K" url="#TSHLTR">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </TSHLTR-id-30957129aa>
> >>        <QSHLTR-id-30957129aa name="2-m specific humidity from MYJ" units="kg kg-1" url="#QSHLTR">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </QSHLTR-id-30957129aa>
> >>        <AKHS_OUT-id-30957129aa name="Output sfc exch coeff for heat" units="m2 s-1" url="#AKHS_OUT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </AKHS_OUT-id-30957129aa>
> >>        <AKMS_OUT-id-30957129aa name="Output sfc exch coeff for momentum" units="m2 s-1" url="#AKMS_OUT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </AKMS_OUT-id-30957129aa>
> >>        <ALBASE-id-30957129aa name="Base albedo" units="" url="#ALBASE">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ALBASE-id-30957129aa>
> >>        <ALBEDO-id-30957129aa name="Dynamic albedo" units="" url="#ALBEDO">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ALBEDO-id-30957129aa>
> >>        <CNVBOT-id-30957129aa name="Lowest convec cloud bottom lyr between outputs" units="" url="#CNVBOT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </CNVBOT-id-30957129aa>
> >>        <CNVTOP-id-30957129aa name="Highest convec cloud top lyr between outputs" units="" url="#CNVTOP">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CNVTOP-id-30957129aa>
> >>        <CZEN-id-30957129aa name="Cosine of solar zenith angle" units="" url="#CZEN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CZEN-id-30957129aa>
> >>        <CZMEAN-id-30957129aa name="Mean CZEN between SW radiation calls" units="" url="#CZMEAN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CZMEAN-id-30957129aa>
> >>        <EPSR-id-30957129aa name="Radiative emissivity" units="" url="#EPSR">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </EPSR-id-30957129aa>
> >>        <MXSNAL-id-30957129aa name="Maximum deep snow albedo" units="" url="#MXSNAL">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </MXSNAL-id-30957129aa>
> >>        <RADOT-id-30957129aa name="Radiative emission from surface" units="W m-2" url="#RADOT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </RADOT-id-30957129aa>
> >>        <SIGT4-id-30957129aa name="Stefan-Boltzmann * T**4" units="W m-2" url="#SIGT4">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SIGT4-id-30957129aa>
> >>        <TGROUND-id-30957129aa name="Deep ground soil temperature" units="K" url="#TGROUND">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </TGROUND-id-30957129aa>
> >>        <SR-id-30957129aa name="Timestep mass ratio of snow:precip" units="" url="#SR">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </SR-id-30957129aa>
> >>        <CFRACH-id-30957129aa name="High cloud fraction" units="" url="#CFRACH">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CFRACH-id-30957129aa>
> >>        <CFRACL-id-30957129aa name="Low cloud fraction" units="" url="#CFRACL">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CFRACL-id-30957129aa>
> >>        <CFRACM-id-30957129aa name="Middle cloud fraction" units="" url="#CFRACM">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>          </CFRACM-id-30957129aa>
> >>        <ISLOPE-id-30957129aa name="-" units="" url="#ISLOPE">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ISLOPE-id-30957129aa>
> >>        <CMC-id-30957129aa name="Canopy moisture" units="m" url="#CMC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CMC-id-30957129aa>
> >>        <GRNFLX-id-30957129aa name="Deep soil heat flux" units="W m-2" url="#GRNFLX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </GRNFLX-id-30957129aa>
> >>        <PCTSNO-id-30957129aa name="-" units="" url="#PCTSNO">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </PCTSNO-id-30957129aa>
> >>        <SOILTB-id-30957129aa name="Deep ground soil temperature" units="K" url="#SOILTB">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SOILTB-id-30957129aa>
> >>        <VEGFRC-id-30957129aa name="Vegetation fraction" units="" url="#VEGFRC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </VEGFRC-id-30957129aa>
> >>        <HSTDV-id-30957129aa name="Standard deviation of height" units="m" url="#HSTDV">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HSTDV-id-30957129aa>
> >>        <HCNVX-id-30957129aa name="Normalized 4th moment of orographic convexity" units="" url="#HCNVX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </HCNVX-id-30957129aa>
> >>        <HASYW-id-30957129aa name="Orographic asymmetry in W-E plane" units="" url="#HASYW">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </HASYW-id-30957129aa>
> >>        <HASYS-id-30957129aa name="Orographic asymmetry in S-N plane" units="" url="#HASYS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HASYS-id-30957129aa>
> >>        <HASYSW-id-30957129aa name="Orographic asymmetry in SW-NE plane" units="" url="#HASYSW">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HASYSW-id-30957129aa>
> >>        <HASYNW-id-30957129aa name="Orographic asymmetry in NW-SE plane" units="" url="#HASYNW">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HASYNW-id-30957129aa>
> >>        <HLENW-id-30957129aa name="Orographic length scale in W-E plane" units="" url="#HLENW">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HLENW-id-30957129aa>
> >>        <HLENS-id-30957129aa name="Orographic length scale in S-N plane" units="" url="#HLENS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HLENS-id-30957129aa>
> >>        <HLENSW-id-30957129aa name="Orographic length scale in SW-NE plane" units="" url="#HLENSW">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HLENSW-id-30957129aa>
> >>        <HLENNW-id-30957129aa name="Orographic length scale in NW-SE plane" units="" url="#HLENNW">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HLENNW-id-30957129aa>
> >>        <HANGL-id-30957129aa name="Angle of the mountain range w/r/t east" units="deg" url="#HANGL">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HANGL-id-30957129aa>
> >>        <HANIS-id-30957129aa name="Anisotropy/aspect ratio of orography" units="" url="#HANIS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HANIS-id-30957129aa>
> >>        <HSLOP-id-30957129aa name="Slope of orography" units="" url="#HSLOP">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </HSLOP-id-30957129aa>
> >>        <HZMAX-id-30957129aa name="Maximum height above mean orography" units="m" url="#HZMAX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HZMAX-id-30957129aa>
> >>        <UGWDSFC-id-30957129aa name="Surface zonal wind stress due to gravity wave drag" units="N m-2" url="#UGWDSFC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </UGWDSFC-id-30957129aa>
> >>        <VGWDSFC-id-30957129aa name="Surface meridional wind stress due to gravity wave drag" units="N m-2" url="#VGWDSFC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </VGWDSFC-id-30957129aa>
> >>        <ACFRCV-id-30957129aa name="Accum convective cloud fraction" units="" url="#ACFRCV">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ACFRCV-id-30957129aa>
> >>        <ACFRST-id-30957129aa name="Accum stratiform cloud fraction" units="" url="#ACFRST">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ACFRST-id-30957129aa>
> >>        <SSROFF-id-30957129aa name="Surface runoff" units="mm" url="#SSROFF">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SSROFF-id-30957129aa>
> >>        <BGROFF-id-30957129aa name="Subsurface runoff" units="mm" url="#BGROFF">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </BGROFF-id-30957129aa>
> >>        <RLWIN-id-30957129aa name="Downward longwave at surface" units="W m-2" url="#RLWIN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </RLWIN-id-30957129aa>
> >>        <RLWTOA-id-30957129aa name="Outgoing LW flux at top of atmos" units="W m-2" url="#RLWTOA">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </RLWTOA-id-30957129aa>
> >>        <ALWIN-id-30957129aa name="Accum LW down at surface" units="W m-2" url="#ALWIN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </ALWIN-id-30957129aa>
> >>        <ALWOUT-id-30957129aa name="Accum RADOT (see above)" units="W m-2" url="#ALWOUT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ALWOUT-id-30957129aa>
> >>        <ALWTOA-id-30957129aa name="Accum RLWTOA" units="W m-2" url="#ALWTOA">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ALWTOA-id-30957129aa>
> >>        <RSWIN-id-30957129aa name="Downward shortwave at surface" units="W m-2" url="#RSWIN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </RSWIN-id-30957129aa>
> >>        <RSWINC-id-30957129aa name="Clear-sky equivalent of RSWIN" units="W m-2" url="#RSWINC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </RSWINC-id-30957129aa>
> >>        <RSWOUT-id-30957129aa name="Upward shortwave at surface" units="W m-2" url="#RSWOUT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </RSWOUT-id-30957129aa>
> >>        <ASWIN-id-30957129aa name="Accum SW down at surface" units="W m-2" url="#ASWIN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ASWIN-id-30957129aa>
> >>        <ASWOUT-id-30957129aa name="Accum RSWOUT" units="W m-2" url="#ASWOUT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ASWOUT-id-30957129aa>
> >>        <ASWTOA-id-30957129aa name="Accum RSWTOA" units="W m-2" url="#ASWTOA">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ASWTOA-id-30957129aa>
> >>        <SFCSHX-id-30957129aa name="Accum sfc sensible heat flux" units="W m-2" url="#SFCSHX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SFCSHX-id-30957129aa>
> >>        <SFCLHX-id-30957129aa name="Accum sfc latent heat flux" units="W m-2" url="#SFCLHX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SFCLHX-id-30957129aa>
> >>        <SUBSHX-id-30957129aa name="Accum deep soil heat flux" units="W m-2" url="#SUBSHX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SUBSHX-id-30957129aa>
> >>        <SNOPCX-id-30957129aa name="Snow phase change heat flux" units="W m-2" url="#SNOPCX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SNOPCX-id-30957129aa>
> >>        <SFCUVX-id-30957129aa name="-" units="" url="#SFCUVX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SFCUVX-id-30957129aa>
> >>        <POTEVP-id-30957129aa name="Accum potential evaporation" units="m" url="#POTEVP">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </POTEVP-id-30957129aa>
> >>        <POTFLX-id-30957129aa name="Energy equivalent of POTEVP" units="W m-2" url="#POTFLX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </POTFLX-id-30957129aa>
> >>        <TLMIN-id-30957129aa name="-" units="" url="#TLMIN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </TLMIN-id-30957129aa>
> >>        <TLMAX-id-30957129aa name="-" units="" url="#TLMAX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </TLMAX-id-30957129aa>
> >>        <T02_MIN-id-30957129aa name="Hourly Min Shelter Temperature" units="K" url="#T02_MIN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </T02_MIN-id-30957129aa>
> >>        <T02_MAX-id-30957129aa name="Hourly Max Shelter Temperature" units="K" url="#T02_MAX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </T02_MAX-id-30957129aa>
> >>        <RH02_MIN-id-30957129aa name="Hourly Min Relative Humidity" units="" url="#RH02_MIN">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </RH02_MIN-id-30957129aa>
> >>        <RH02_MAX-id-30957129aa name="Hourly Max Relative Humidity" units="" url="#RH02_MAX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </RH02_MAX-id-30957129aa>
> >>        <NCFRCV-id-30957129aa name="times convec cloud &gt;0 between rad calls" units="" url="#NCFRCV">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </NCFRCV-id-30957129aa>
> >>        <NCFRST-id-30957129aa name="times stratiform cloud &gt;0 between rad calls" units="" url="#NCFRST">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </NCFRST-id-30957129aa>
> >>        <LANDMASK-id-30957129aa name="description" units="units" url="#LANDMASK">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </LANDMASK-id-30957129aa>
> >>        <PSFC-id-30957129aa name="SFC PRESSURE" units="" url="#PSFC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </PSFC-id-30957129aa>
> >>        <TH2-id-30957129aa name="POT TEMP at 2 M" units="" url="#TH2">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </TH2-id-30957129aa>
> >>        <U10-id-30957129aa name="U at 10 M" units="m/s" url="#U10">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </U10-id-30957129aa>
> >>        <V10-id-30957129aa name="V at 10 M" units="m/s" url="#V10">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </V10-id-30957129aa>
> >>        <LAI-id-30957129aa name="Leaf area index" units="area/area" url="#LAI">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </LAI-id-30957129aa>
> >>        <SMSTAV-id-30957129aa name="MOISTURE VARIBILITY" units="" url="#SMSTAV">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SMSTAV-id-30957129aa>
> >>        <SMSTOT-id-30957129aa name="TOTAL SOIL MOISTURE" units="" url="#SMSTOT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SMSTOT-id-30957129aa>
> >>        <SFROFF-id-30957129aa name="SURFACE RUNOFF" units="" url="#SFROFF">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </SFROFF-id-30957129aa>
> >>        <UDROFF-id-30957129aa name="UNDERGROUND RUNOFF" units="" url="#UDROFF">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </UDROFF-id-30957129aa>
> >>        <IVGTYP-id-30957129aa name="VEGETATION TYPE" units="" url="#IVGTYP">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </IVGTYP-id-30957129aa>
> >>        <ISLTYP-id-30957129aa name="SOIL TYPE" units="" url="#ISLTYP">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ISLTYP-id-30957129aa>
> >>        <VEGFRA-id-30957129aa name="VEGETATION FRACTION" units="" url="#VEGFRA">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </VEGFRA-id-30957129aa>
> >>        <SFCEVP-id-30957129aa name="SURFACE EVAPORATION" units="" url="#SFCEVP">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SFCEVP-id-30957129aa>
> >>        <GRDFLX-id-30957129aa name="GROUND HEAT FLUX" units="" url="#GRDFLX">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </GRDFLX-id-30957129aa>
> >>        <SFCEXC-id-30957129aa name="SURFACE EXCHANGE COEFFICIENT" units="" url="#SFCEXC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SFCEXC-id-30957129aa>
> >>        <ACSNOW-id-30957129aa name="ACCUMULATED SNOW" units="kg m-2" url="#ACSNOW">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ACSNOW-id-30957129aa>
> >>        <ACSNOM-id-30957129aa name="ACCUMULATED MELTED SNOW" units="kg m-2" url="#ACSNOM">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </ACSNOM-id-30957129aa>
> >>        <SNOW-id-30957129aa name="SNOW WATER EQUIVALENT" units="kg m-2" url="#SNOW">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SNOW-id-30957129aa>
> >>        <CANWAT-id-30957129aa name="CANOPY WATER" units="" url="#CANWAT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CANWAT-id-30957129aa>
> >>        <SST-id-30957129aa name="SEA SURFACE TEMPERATURE" units="K" url="#SST">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </SST-id-30957129aa>
> >>        <WEASD-id-30957129aa name="WATER EQUIVALENT OF ACCUMULATED SNOW" units="kg m-2" url="#WEASD">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </WEASD-id-30957129aa>
> >>        <NOAHRES-id-30957129aa name="RESIDUAL OF THE NOAH SURFACE ENERGY BUDGET" units="W m-2" url="#NOAHRES">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </NOAHRES-id-30957129aa>
> >>        <THZ0-id-30957129aa name="POT. TEMPERATURE AT TOP OF VISC. SUBLYR" units="K" url="#THZ0">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </THZ0-id-30957129aa>
> >>        <QZ0-id-30957129aa name="SPECIFIC HUMIDITY AT TOP OF VISC. SUBLYR" units="kg kg-1" url="#QZ0">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </QZ0-id-30957129aa>
> >>        <UZ0-id-30957129aa name="U WIND COMPONENT AT TOP OF VISC. SUBLYR" units="m s-1" url="#UZ0">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </UZ0-id-30957129aa>
> >>        <VZ0-id-30957129aa name="V WIND COMPONENT AT TOP OF VISC. SUBLYR" units="m s-1" url="#VZ0">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </VZ0-id-30957129aa>
> >>        <QSFC-id-30957129aa name="SPECIFIC HUMIDITY AT LOWER BOUNDARY" units="kg kg-1" url="#QSFC">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </QSFC-id-30957129aa>
> >>        <HTOP-id-30957129aa name="TOP OF CONVECTION LEVEL" units="" url="#HTOP">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>          </HTOP-id-30957129aa>
> >>        <HBOT-id-30957129aa name="BOT OF CONVECTION LEVEL" units="" url="#HBOT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HBOT-id-30957129aa>
> >>        <HTOPD-id-30957129aa name="TOP DEEP CONVECTION LEVEL" units="" url="#HTOPD">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>          </HTOPD-id-30957129aa>
> >>        <HBOTD-id-30957129aa name="BOT DEEP CONVECTION LEVEL" units="" url="#HBOTD">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HBOTD-id-30957129aa>
> >>        <HTOPS-id-30957129aa name="TOP SHALLOW CONVECTION LEVEL" units="" url="#HTOPS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HTOPS-id-30957129aa>
> >>        <HBOTS-id-30957129aa name="BOT SHALLOW CONVECTION LEVEL" units="" url="#HBOTS">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </HBOTS-id-30957129aa>
> >>        <CUPPT-id-30957129aa name="ACCUMULATED CONVECTIVE RAIN SINCE LAST CALL TO THE RADIATION" units="" url="#CUPPT">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>         </CUPPT-id-30957129aa>
> >>        <CPRATE-id-30957129aa name="INSTANTANEOUS CONVECTIVE PRECIPITATION RATE" units="" url="#CPRATE">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </CPRATE-id-30957129aa>
> >>        <SNOWH-id-30957129aa name="PHYSICAL SNOW DEPTH" units="m" url="#SNOWH">
> >>          <link match="/lasdata/grids/grid-GLON-GLAT-Time-id-30957129aa" />
> >>        </SNOWH-id-30957129aa>
> >>      </variables>
> >>    </id-30957129aa>
> >> </datasets>
> >> <grids>
> >>    <grid-GLON-GLAT-Time-id-30957129aa>
> >>      <link match="/lasdata/axes/GLON-x-id-30957129aa" />
> >>      <link match="/lasdata/axes/GLAT-y-id-30957129aa" />
> >>      <link match="/lasdata/axes/Time-t-id-30957129aa" />
> >>    </grid-GLON-GLAT-Time-id-30957129aa>
> >> </grids>
> >> <axes>
> >>    <GLON-x-id-30957129aa type="x" units="degrees_east">
> >>      <arange start="-78.4876" size="15" step="1.0" />
> >>    </GLON-x-id-30957129aa>
> >>    <GLAT-y-id-30957129aa type="y" units="degrees_north">
> >>      <arange start="37.481" size="8" step="1.0" />
> >>    </GLAT-y-id-30957129aa>
> >>    <Time-t-id-30957129aa type="t" units="hour">
> >>      <arange start="2005-01-23 00:00:00" size="2" step="1" />
> >>    </Time-t-id-30957129aa>
> >> </axes>
> >>
> >> Any ideas?
> >> Cheers
> >>
> > netcdf wrfout_2005-01-23 {
> > dimensions:
> > 	Time = UNLIMITED ; // (2 currently)
> > 	DateStrLen = 19 ;
> > 	west_east = 55 ;
> > 	south_north = 91 ;
> > 	bottom_top = 37 ;
> > 	bottom_top_stag = 38 ;
> > 	soil_layers_stag = 4 ;
> > variables:
> > 	char Times(Time, DateStrLen) ;
> > 	float LU_INDEX(Time, south_north, west_east) ;
> > 		LU_INDEX:FieldType = 104 ;
> > 		LU_INDEX:MemoryOrder = "XY " ;
> > 		LU_INDEX:description = "LAND USE CATEGORY" ;
> > 		LU_INDEX:units = "" ;
> > 		LU_INDEX:stagger = "" ;
> > 	float UMMIX(Time, bottom_top, south_north, west_east) ;
> > 		UMMIX:FieldType = 104 ;
> > 		UMMIX:MemoryOrder = "XYZ" ;
> > 		UMMIX:description = "U TENDENCY  MOMENTUM MIXING IN SAS" ;
> > 		UMMIX:units = "-" ;
> > 		UMMIX:stagger = "" ;
> > 	float VMMIX(Time, bottom_top, south_north, west_east) ;
> > 		VMMIX:FieldType = 104 ;
> > 		VMMIX:MemoryOrder = "XYZ" ;
> > 		VMMIX:description = "V TENDENCY  MOMENTUM MIXING IN SAS" ;
> > 		VMMIX:units = "-" ;
> > 		VMMIX:stagger = "" ;
> > 	float RANDOM(Time, south_north, west_east) ;
> > 		RANDOM:FieldType = 104 ;
> > 		RANDOM:MemoryOrder = "XY " ;
> > 		RANDOM:description = "RANDOM NUMBER FOR SAS" ;
> > 		RANDOM:units = "" ;
> > 		RANDOM:stagger = "" ;
> > 	float HBM2(Time, south_north, west_east) ;
> > 		HBM2:FieldType = 104 ;
> > 		HBM2:MemoryOrder = "XY " ;
> > 		HBM2:description = "Height boundary mask; =0 outer 2 rows on H
> > points" ;
> > 		HBM2:units = "" ;
> > 		HBM2:stagger = "" ;
> > 	float HBM3(Time, south_north, west_east) ;
> > 		HBM3:FieldType = 104 ;
> > 		HBM3:MemoryOrder = "XY " ;
> > 		HBM3:description = "Height boundary mask; =0 outer 3 rows on H
> > points" ;
> > 		HBM3:units = "" ;
> > 		HBM3:stagger = "" ;
> > 	float VBM2(Time, south_north, west_east) ;
> > 		VBM2:FieldType = 104 ;
> > 		VBM2:MemoryOrder = "XY " ;
> > 		VBM2:description = "Velocity boundary mask; =0 outer 2 rows on V
> > points" ;
> > 		VBM2:units = "" ;
> > 		VBM2:stagger = "" ;
> > 	float VBM3(Time, south_north, west_east) ;
> > 		VBM3:FieldType = 104 ;
> > 		VBM3:MemoryOrder = "XY " ;
> > 		VBM3:description = "Velocity boundary mask; =0 outer 3 rows on V
> > points" ;
> > 		VBM3:units = "" ;
> > 		VBM3:stagger = "" ;
> > 	float SM(Time, south_north, west_east) ;
> > 		SM:FieldType = 104 ;
> > 		SM:MemoryOrder = "XY " ;
> > 		SM:description = "Sea mask; =1 for sea, =0 for land" ;
> > 		SM:units = "" ;
> > 		SM:stagger = "" ;
> > 	float SICE(Time, south_north, west_east) ;
> > 		SICE:FieldType = 104 ;
> > 		SICE:MemoryOrder = "XY " ;
> > 		SICE:description = "Sea ice mask; =1 for sea ice, =0 for no sea ice" ;
> > 		SICE:units = "" ;
> > 		SICE:stagger = "" ;
> > 	float PD(Time, south_north, west_east) ;
> > 		PD:FieldType = 104 ;
> > 		PD:MemoryOrder = "XY " ;
> > 		PD:description = "Mass at I,J in the sigma domain" ;
> > 		PD:units = "Pa" ;
> > 		PD:stagger = "" ;
> > 	float FIS(Time, south_north, west_east) ;
> > 		FIS:FieldType = 104 ;
> > 		FIS:MemoryOrder = "XY " ;
> > 		FIS:description = "Surface geopotential" ;
> > 		FIS:units = "m2 s-2" ;
> > 		FIS:stagger = "" ;
> > 	float RES(Time, south_north, west_east) ;
> > 		RES:FieldType = 104 ;
> > 		RES:MemoryOrder = "XY " ;
> > 		RES:description = "Reciprocal of surface sigma" ;
> > 		RES:units = "" ;
> > 		RES:stagger = "" ;
> > 	float T(Time, bottom_top, south_north, west_east) ;
> > 		T:FieldType = 104 ;
> > 		T:MemoryOrder = "XYZ" ;
> > 		T:description = "Sensible temperature" ;
> > 		T:units = "K" ;
> > 		T:stagger = "" ;
> > 	float Q(Time, bottom_top, south_north, west_east) ;
> > 		Q:FieldType = 104 ;
> > 		Q:MemoryOrder = "XYZ" ;
> > 		Q:description = "Specific humidity" ;
> > 		Q:units = "kg kg-1" ;
> > 		Q:stagger = "" ;
> > 	float U(Time, bottom_top, south_north, west_east) ;
> > 		U:FieldType = 104 ;
> > 		U:MemoryOrder = "XYZ" ;
> > 		U:description = "U component of wind" ;
> > 		U:units = "m s-1" ;
> > 		U:stagger = "" ;
> > 	float V(Time, bottom_top, south_north, west_east) ;
> > 		V:FieldType = 104 ;
> > 		V:MemoryOrder = "XYZ" ;
> > 		V:description = "V component of wind" ;
> > 		V:units = "m s-1" ;
> > 		V:stagger = "" ;
> > 	float DX_NMM(Time, south_north, west_east) ;
> > 		DX_NMM:FieldType = 104 ;
> > 		DX_NMM:MemoryOrder = "XY " ;
> > 		DX_NMM:description = "East-west distance H-to-V points" ;
> > 		DX_NMM:units = "m" ;
> > 		DX_NMM:stagger = "" ;
> > 	float ETA1(Time, bottom_top_stag) ;
> > 		ETA1:FieldType = 104 ;
> > 		ETA1:MemoryOrder = "Z  " ;
> > 		ETA1:description = "Interface sigma value in pressure domain" ;
> > 		ETA1:units = "" ;
> > 		ETA1:stagger = "Z" ;
> > 	float ETA2(Time, bottom_top_stag) ;
> > 		ETA2:FieldType = 104 ;
> > 		ETA2:MemoryOrder = "Z  " ;
> > 		ETA2:description = "Interface sigma value in sigma domain" ;
> > 		ETA2:units = "" ;
> > 		ETA2:stagger = "Z" ;
> > 	float PDTOP(Time) ;
> > 		PDTOP:FieldType = 104 ;
> > 		PDTOP:MemoryOrder = "0  " ;
> > 		PDTOP:description = "Mass at I,J in pressure domain" ;
> > 		PDTOP:units = "Pa" ;
> > 		PDTOP:stagger = "" ;
> > 	float PT(Time) ;
> > 		PT:FieldType = 104 ;
> > 		PT:MemoryOrder = "0  " ;
> > 		PT:description = "Pressure at top of domain" ;
> > 		PT:units = "Pa" ;
> > 		PT:stagger = "" ;
> > 	float PBLH(Time, south_north, west_east) ;
> > 		PBLH:FieldType = 104 ;
> > 		PBLH:MemoryOrder = "XY " ;
> > 		PBLH:description = "PBL Height" ;
> > 		PBLH:units = "m" ;
> > 		PBLH:stagger = "" ;
> > 	float MIXHT(Time, south_north, west_east) ;
> > 		MIXHT:FieldType = 104 ;
> > 		MIXHT:MemoryOrder = "XY " ;
> > 		MIXHT:description = "MXL HEIGHT" ;
> > 		MIXHT:units = "m" ;
> > 		MIXHT:stagger = "" ;
> > 	float USTAR(Time, south_north, west_east) ;
> > 		USTAR:FieldType = 104 ;
> > 		USTAR:MemoryOrder = "XY " ;
> > 		USTAR:description = "Friction velocity" ;
> > 		USTAR:units = "m s-1" ;
> > 		USTAR:stagger = "" ;
> > 	float Z0(Time, south_north, west_east) ;
> > 		Z0:FieldType = 104 ;
> > 		Z0:MemoryOrder = "XY " ;
> > 		Z0:description = "Roughness height" ;
> > 		Z0:units = "m" ;
> > 		Z0:stagger = "" ;
> > 	float THS(Time, south_north, west_east) ;
> > 		THS:FieldType = 104 ;
> > 		THS:MemoryOrder = "XY " ;
> > 		THS:description = "Surface potential temperature" ;
> > 		THS:units = "K" ;
> > 		THS:stagger = "" ;
> > 	float QS(Time, south_north, west_east) ;
> > 		QS:FieldType = 104 ;
> > 		QS:MemoryOrder = "XY " ;
> > 		QS:description = "Surface specific humidity" ;
> > 		QS:units = "kg kg-1" ;
> > 		QS:stagger = "" ;
> > 	float TWBS(Time, south_north, west_east) ;
> > 		TWBS:FieldType = 104 ;
> > 		TWBS:MemoryOrder = "XY " ;
> > 		TWBS:description = "Instantaneous sensible heat flux" ;
> > 		TWBS:units = "W m-2" ;
> > 		TWBS:stagger = "" ;
> > 	float QWBS(Time, south_north, west_east) ;
> > 		QWBS:FieldType = 104 ;
> > 		QWBS:MemoryOrder = "XY " ;
> > 		QWBS:description = "Instantaneous latent heat flux" ;
> > 		QWBS:units = "W m-2" ;
> > 		QWBS:stagger = "" ;
> > 	float TAUX(Time, south_north, west_east) ;
> > 		TAUX:FieldType = 104 ;
> > 		TAUX:MemoryOrder = "XY " ;
> > 		TAUX:description = "Instantaneous stress along X direction in
> > KG/M/S^2" ;
> > 		TAUX:units = "-" ;
> > 		TAUX:stagger = "" ;
> > 	float TAUY(Time, south_north, west_east) ;
> > 		TAUY:FieldType = 104 ;
> > 		TAUY:MemoryOrder = "XY " ;
> > 		TAUY:description = "Instantaneous stress along Y direction in
> > KG/M/S^2" ;
> > 		TAUY:units = "-" ;
> > 		TAUY:stagger = "" ;
> > 	float PREC(Time, south_north, west_east) ;
> > 		PREC:FieldType = 104 ;
> > 		PREC:MemoryOrder = "XY " ;
> > 		PREC:description = "Precipitation in physics timestep" ;
> > 		PREC:units = "m" ;
> > 		PREC:stagger = "" ;
> > 	float APREC(Time, south_north, west_east) ;
> > 		APREC:FieldType = 104 ;
> > 		APREC:MemoryOrder = "XY " ;
> > 		APREC:description = "-" ;
> > 		APREC:units = "-" ;
> > 		APREC:stagger = "" ;
> > 	float ACPREC(Time, south_north, west_east) ;
> > 		ACPREC:FieldType = 104 ;
> > 		ACPREC:MemoryOrder = "XY " ;
> > 		ACPREC:description = "Accumulated total precipitation" ;
> > 		ACPREC:units = "m" ;
> > 		ACPREC:stagger = "" ;
> > 	float CUPREC(Time, south_north, west_east) ;
> > 		CUPREC:FieldType = 104 ;
> > 		CUPREC:MemoryOrder = "XY " ;
> > 		CUPREC:description = "Accumulated convective precipitation" ;
> > 		CUPREC:units = "m" ;
> > 		CUPREC:stagger = "" ;
> > 	float LSPA(Time, south_north, west_east) ;
> > 		LSPA:FieldType = 104 ;
> > 		LSPA:MemoryOrder = "XY " ;
> > 		LSPA:description = "Land Surface Precipitation Accumulation" ;
> > 		LSPA:units = "kg m-2" ;
> > 		LSPA:stagger = "" ;
> > 	float SNO(Time, south_north, west_east) ;
> > 		SNO:FieldType = 104 ;
> > 		SNO:MemoryOrder = "XY " ;
> > 		SNO:description = "Liquid water eqiv of snow on ground" ;
> > 		SNO:units = "kg m-2" ;
> > 		SNO:stagger = "" ;
> > 	float SI(Time, south_north, west_east) ;
> > 		SI:FieldType = 104 ;
> > 		SI:MemoryOrder = "XY " ;
> > 		SI:description = "Depth of snow on ground" ;
> > 		SI:units = "mm" ;
> > 		SI:stagger = "" ;
> > 	float CLDEFI(Time, south_north, west_east) ;
> > 		CLDEFI:FieldType = 104 ;
> > 		CLDEFI:MemoryOrder = "XY " ;
> > 		CLDEFI:description = "Convective cloud efficiency" ;
> > 		CLDEFI:units = "" ;
> > 		CLDEFI:stagger = "" ;
> > 	float TH10(Time, south_north, west_east) ;
> > 		TH10:FieldType = 104 ;
> > 		TH10:MemoryOrder = "XY " ;
> > 		TH10:description = "10-m potential temperature from MYJ" ;
> > 		TH10:units = "K" ;
> > 		TH10:stagger = "" ;
> > 	float Q10(Time, south_north, west_east) ;
> > 		Q10:FieldType = 104 ;
> > 		Q10:MemoryOrder = "XY " ;
> > 		Q10:description = "10-m specific humidity from MYJ" ;
> > 		Q10:units = "kg kg-1" ;
> > 		Q10:stagger = "" ;
> > 	float PSHLTR(Time, south_north, west_east) ;
> > 		PSHLTR:FieldType = 104 ;
> > 		PSHLTR:MemoryOrder = "XY " ;
> > 		PSHLTR:description = "2-m pressure from MYJ" ;
> > 		PSHLTR:units = "Pa" ;
> > 		PSHLTR:stagger = "" ;
> > 	float TSHLTR(Time, south_north, west_east) ;
> > 		TSHLTR:FieldType = 104 ;
> > 		TSHLTR:MemoryOrder = "XY " ;
> > 		TSHLTR:description = "2-m potential temperature from MYJ" ;
> > 		TSHLTR:units = "K" ;
> > 		TSHLTR:stagger = "" ;
> > 	float QSHLTR(Time, south_north, west_east) ;
> > 		QSHLTR:FieldType = 104 ;
> > 		QSHLTR:MemoryOrder = "XY " ;
> > 		QSHLTR:description = "2-m specific humidity from MYJ" ;
> > 		QSHLTR:units = "kg kg-1" ;
> > 		QSHLTR:stagger = "" ;
> > 	float Q2(Time, bottom_top, south_north, west_east) ;
> > 		Q2:FieldType = 104 ;
> > 		Q2:MemoryOrder = "XYZ" ;
> > 		Q2:description = "2 * Turbulence kinetic energy" ;
> > 		Q2:units = "m2 s-2" ;
> > 		Q2:stagger = "" ;
> > 	float AKHS_OUT(Time, south_north, west_east) ;
> > 		AKHS_OUT:FieldType = 104 ;
> > 		AKHS_OUT:MemoryOrder = "XY " ;
> > 		AKHS_OUT:description = "Output sfc exch coeff for heat" ;
> > 		AKHS_OUT:units = "m2 s-1" ;
> > 		AKHS_OUT:stagger = "" ;
> > 	float AKMS_OUT(Time, south_north, west_east) ;
> > 		AKMS_OUT:FieldType = 104 ;
> > 		AKMS_OUT:MemoryOrder = "XY " ;
> > 		AKMS_OUT:description = "Output sfc exch coeff for momentum" ;
> > 		AKMS_OUT:units = "m2 s-1" ;
> > 		AKMS_OUT:stagger = "" ;
> > 	float ALBASE(Time, south_north, west_east) ;
> > 		ALBASE:FieldType = 104 ;
> > 		ALBASE:MemoryOrder = "XY " ;
> > 		ALBASE:description = "Base albedo" ;
> > 		ALBASE:units = "" ;
> > 		ALBASE:stagger = "" ;
> > 	float ALBEDO(Time, south_north, west_east) ;
> > 		ALBEDO:FieldType = 104 ;
> > 		ALBEDO:MemoryOrder = "XY " ;
> > 		ALBEDO:description = "Dynamic albedo" ;
> > 		ALBEDO:units = "" ;
> > 		ALBEDO:stagger = "" ;
> > 	float CNVBOT(Time, south_north, west_east) ;
> > 		CNVBOT:FieldType = 104 ;
> > 		CNVBOT:MemoryOrder = "XY " ;
> > 		CNVBOT:description = "Lowest convec cloud bottom lyr between
> > outputs" ;
> > 		CNVBOT:units = "" ;
> > 		CNVBOT:stagger = "" ;
> > 	float CNVTOP(Time, south_north, west_east) ;
> > 		CNVTOP:FieldType = 104 ;
> > 		CNVTOP:MemoryOrder = "XY " ;
> > 		CNVTOP:description = "Highest convec cloud top lyr between outputs" ;
> > 		CNVTOP:units = "" ;
> > 		CNVTOP:stagger = "" ;
> > 	float CZEN(Time, south_north, west_east) ;
> > 		CZEN:FieldType = 104 ;
> > 		CZEN:MemoryOrder = "XY " ;
> > 		CZEN:description = "Cosine of solar zenith angle" ;
> > 		CZEN:units = "" ;
> > 		CZEN:stagger = "" ;
> > 	float CZMEAN(Time, south_north, west_east) ;
> > 		CZMEAN:FieldType = 104 ;
> > 		CZMEAN:MemoryOrder = "XY " ;
> > 		CZMEAN:description = "Mean CZEN between SW radiation calls" ;
> > 		CZMEAN:units = "" ;
> > 		CZMEAN:stagger = "" ;
> > 	float EPSR(Time, south_north, west_east) ;
> > 		EPSR:FieldType = 104 ;
> > 		EPSR:MemoryOrder = "XY " ;
> > 		EPSR:description = "Radiative emissivity" ;
> > 		EPSR:units = "" ;
> > 		EPSR:stagger = "" ;
> > 	float GLAT(Time, south_north, west_east) ;
> > 		GLAT:FieldType = 104 ;
> > 		GLAT:MemoryOrder = "XY " ;
> > 		GLAT:description = "Geographic latitude, radians" ;
> > 		GLAT:units = "" ;
> > 		GLAT:stagger = "" ;
> > 	float GLON(Time, south_north, west_east) ;
> > 		GLON:FieldType = 104 ;
> > 		GLON:MemoryOrder = "XY " ;
> > 		GLON:description = "Geographic longitude, radians" ;
> > 		GLON:units = "" ;
> > 		GLON:stagger = "" ;
> > 	float MXSNAL(Time, south_north, west_east) ;
> > 		MXSNAL:FieldType = 104 ;
> > 		MXSNAL:MemoryOrder = "XY " ;
> > 		MXSNAL:description = "Maximum deep snow albedo" ;
> > 		MXSNAL:units = "" ;
> > 		MXSNAL:stagger = "" ;
> > 	float RADOT(Time, south_north, west_east) ;
> > 		RADOT:FieldType = 104 ;
> > 		RADOT:MemoryOrder = "XY " ;
> > 		RADOT:description = "Radiative emission from surface" ;
> > 		RADOT:units = "W m-2" ;
> > 		RADOT:stagger = "" ;
> > 	float SIGT4(Time, south_north, west_east) ;
> > 		SIGT4:FieldType = 104 ;
> > 		SIGT4:MemoryOrder = "XY " ;
> > 		SIGT4:description = "Stefan-Boltzmann * T**4" ;
> > 		SIGT4:units = "W m-2" ;
> > 		SIGT4:stagger = "" ;
> > 	float TGROUND(Time, south_north, west_east) ;
> > 		TGROUND:FieldType = 104 ;
> > 		TGROUND:MemoryOrder = "XY " ;
> > 		TGROUND:description = "Deep ground soil temperature" ;
> > 		TGROUND:units = "K" ;
> > 		TGROUND:stagger = "" ;
> > 	float CWM(Time, bottom_top, south_north, west_east) ;
> > 		CWM:FieldType = 104 ;
> > 		CWM:MemoryOrder = "XYZ" ;
> > 		CWM:description = "Total condensate" ;
> > 		CWM:units = "kg kg-1" ;
> > 		CWM:stagger = "" ;
> > 	float RRW(Time, bottom_top, south_north, west_east) ;
> > 		RRW:FieldType = 104 ;
> > 		RRW:MemoryOrder = "XYZ" ;
> > 		RRW:description = "Tracer" ;
> > 		RRW:units = "kg kg-1" ;
> > 		RRW:stagger = "" ;
> > 	float F_ICE(Time, bottom_top, south_north, west_east) ;
> > 		F_ICE:FieldType = 104 ;
> > 		F_ICE:MemoryOrder = "XYZ" ;
> > 		F_ICE:description = "Frozen fraction of CWM" ;
> > 		F_ICE:units = "" ;
> > 		F_ICE:stagger = "" ;
> > 	float F_RAIN(Time, bottom_top, south_north, west_east) ;
> > 		F_RAIN:FieldType = 104 ;
> > 		F_RAIN:MemoryOrder = "XYZ" ;
> > 		F_RAIN:description = "Rain fraction of liquid part of CWM" ;
> > 		F_RAIN:units = "" ;
> > 		F_RAIN:stagger = "" ;
> > 	float F_RIMEF(Time, bottom_top, south_north, west_east) ;
> > 		F_RIMEF:FieldType = 104 ;
> > 		F_RIMEF:MemoryOrder = "XYZ" ;
> > 		F_RIMEF:description = "Rime factor" ;
> > 		F_RIMEF:units = "" ;
> > 		F_RIMEF:stagger = "" ;
> > 	float CLDFRA(Time, bottom_top, south_north, west_east) ;
> > 		CLDFRA:FieldType = 104 ;
> > 		CLDFRA:MemoryOrder = "XYZ" ;
> > 		CLDFRA:description = "Cloud fraction" ;
> > 		CLDFRA:units = "" ;
> > 		CLDFRA:stagger = "" ;
> > 	float SR(Time, south_north, west_east) ;
> > 		SR:FieldType = 104 ;
> > 		SR:MemoryOrder = "XY " ;
> > 		SR:description = "Timestep mass ratio of snow:precip" ;
> > 		SR:units = "" ;
> > 		SR:stagger = "" ;
> > 	float CFRACH(Time, south_north, west_east) ;
> > 		CFRACH:FieldType = 104 ;
> > 		CFRACH:MemoryOrder = "XY " ;
> > 		CFRACH:description = "High cloud fraction" ;
> > 		CFRACH:units = "" ;
> > 		CFRACH:stagger = "" ;
> > 	float CFRACL(Time, south_north, west_east) ;
> > 		CFRACL:FieldType = 104 ;
> > 		CFRACL:MemoryOrder = "XY " ;
> > 		CFRACL:description = "Low cloud fraction" ;
> > 		CFRACL:units = "" ;
> > 		CFRACL:stagger = "" ;
> > 	float CFRACM(Time, south_north, west_east) ;
> > 		CFRACM:FieldType = 104 ;
> > 		CFRACM:MemoryOrder = "XY " ;
> > 		CFRACM:description = "Middle cloud fraction" ;
> > 		CFRACM:units = "" ;
> > 		CFRACM:stagger = "" ;
> > 	int ISLOPE(Time, south_north, west_east) ;
> > 		ISLOPE:FieldType = 106 ;
> > 		ISLOPE:MemoryOrder = "XY " ;
> > 		ISLOPE:description = "-" ;
> > 		ISLOPE:units = "-" ;
> > 		ISLOPE:stagger = "" ;
> > 	float DZSOIL(Time, bottom_top) ;
> > 		DZSOIL:FieldType = 104 ;
> > 		DZSOIL:MemoryOrder = "Z  " ;
> > 		DZSOIL:description = "Thickness of soil layers" ;
> > 		DZSOIL:units = "m" ;
> > 		DZSOIL:stagger = "" ;
> > 	float SLDPTH(Time, bottom_top) ;
> > 		SLDPTH:FieldType = 104 ;
> > 		SLDPTH:MemoryOrder = "Z  " ;
> > 		SLDPTH:description = "Depths of centers of soil layers" ;
> > 		SLDPTH:units = "m" ;
> > 		SLDPTH:stagger = "" ;
> > 	float CMC(Time, south_north, west_east) ;
> > 		CMC:FieldType = 104 ;
> > 		CMC:MemoryOrder = "XY " ;
> > 		CMC:description = "Canopy moisture" ;
> > 		CMC:units = "m" ;
> > 		CMC:stagger = "" ;
> > 	float GRNFLX(Time, south_north, west_east) ;
> > 		GRNFLX:FieldType = 104 ;
> > 		GRNFLX:MemoryOrder = "XY " ;
> > 		GRNFLX:description = "Deep soil heat flux" ;
> > 		GRNFLX:units = "W m-2" ;
> > 		GRNFLX:stagger = "" ;
> > 	float PCTSNO(Time, south_north, west_east) ;
> > 		PCTSNO:FieldType = 104 ;
> > 		PCTSNO:MemoryOrder = "XY " ;
> > 		PCTSNO:description = "-" ;
> > 		PCTSNO:units = "-" ;
> > 		PCTSNO:stagger = "" ;
> > 	float SOILTB(Time, south_north, west_east) ;
> > 		SOILTB:FieldType = 104 ;
> > 		SOILTB:MemoryOrder = "XY " ;
> > 		SOILTB:description = "Deep ground soil temperature" ;
> > 		SOILTB:units = "K" ;
> > 		SOILTB:stagger = "" ;
> > 	float VEGFRC(Time, south_north, west_east) ;
> > 		VEGFRC:FieldType = 104 ;
> > 		VEGFRC:MemoryOrder = "XY " ;
> > 		VEGFRC:description = "Vegetation fraction" ;
> > 		VEGFRC:units = "" ;
> > 		VEGFRC:stagger = "" ;
> > 	float SH2O(Time, soil_layers_stag, south_north, west_east) ;
> > 		SH2O:FieldType = 104 ;
> > 		SH2O:MemoryOrder = "XYZ" ;
> > 		SH2O:description = "Unfrozen soil moisture volume fraction" ;
> > 		SH2O:units = "" ;
> > 		SH2O:stagger = "Z" ;
> > 	float SMC(Time, soil_layers_stag, south_north, west_east) ;
> > 		SMC:FieldType = 104 ;
> > 		SMC:MemoryOrder = "XYZ" ;
> > 		SMC:description = "Soil moisture volume fraction" ;
> > 		SMC:units = "" ;
> > 		SMC:stagger = "Z" ;
> > 	float STC(Time, soil_layers_stag, south_north, west_east) ;
> > 		STC:FieldType = 104 ;
> > 		STC:MemoryOrder = "XYZ" ;
> > 		STC:description = "Soil temperature" ;
> > 		STC:units = "K" ;
> > 		STC:stagger = "Z" ;
> > 	float HSTDV(Time, south_north, west_east) ;
> > 		HSTDV:FieldType = 104 ;
> > 		HSTDV:MemoryOrder = "XY " ;
> > 		HSTDV:description = "Standard deviation of height" ;
> > 		HSTDV:units = "m" ;
> > 		HSTDV:stagger = "" ;
> > 	float HCNVX(Time, south_north, west_east) ;
> > 		HCNVX:FieldType = 104 ;
> > 		HCNVX:MemoryOrder = "XY " ;
> > 		HCNVX:description = "Normalized 4th moment of orographic convexity" ;
> > 		HCNVX:units = "" ;
> > 		HCNVX:stagger = "" ;
> > 	float HASYW(Time, south_north, west_east) ;
> > 		HASYW:FieldType = 104 ;
> > 		HASYW:MemoryOrder = "XY " ;
> > 		HASYW:description = "Orographic asymmetry in W-E plane" ;
> > 		HASYW:units = "" ;
> > 		HASYW:stagger = "" ;
> > 	float HASYS(Time, south_north, west_east) ;
> > 		HASYS:FieldType = 104 ;
> > 		HASYS:MemoryOrder = "XY " ;
> > 		HASYS:description = "Orographic asymmetry in S-N plane" ;
> > 		HASYS:units = "" ;
> > 		HASYS:stagger = "" ;
> > 	float HASYSW(Time, south_north, west_east) ;
> > 		HASYSW:FieldType = 104 ;
> > 		HASYSW:MemoryOrder = "XY " ;
> > 		HASYSW:description = "Orographic asymmetry in SW-NE plane" ;
> > 		HASYSW:units = "" ;
> > 		HASYSW:stagger = "" ;
> > 	float HASYNW(Time, south_north, west_east) ;
> > 		HASYNW:FieldType = 104 ;
> > 		HASYNW:MemoryOrder = "XY " ;
> > 		HASYNW:description = "Orographic asymmetry in NW-SE plane" ;
> > 		HASYNW:units = "" ;
> > 		HASYNW:stagger = "" ;
> > 	float HLENW(Time, south_north, west_east) ;
> > 		HLENW:FieldType = 104 ;
> > 		HLENW:MemoryOrder = "XY " ;
> > 		HLENW:description = "Orographic length scale in W-E plane" ;
> > 		HLENW:units = "" ;
> > 		HLENW:stagger = "" ;
> > 	float HLENS(Time, south_north, west_east) ;
> > 		HLENS:FieldType = 104 ;
> > 		HLENS:MemoryOrder = "XY " ;
> > 		HLENS:description = "Orographic length scale in S-N plane" ;
> > 		HLENS:units = "" ;
> > 		HLENS:stagger = "" ;
> > 	float HLENSW(Time, south_north, west_east) ;
> > 		HLENSW:FieldType = 104 ;
> > 		HLENSW:MemoryOrder = "XY " ;
> > 		HLENSW:description = "Orographic length scale in SW-NE plane" ;
> > 		HLENSW:units = "" ;
> > 		HLENSW:stagger = "" ;
> > 	float HLENNW(Time, south_north, west_east) ;
> > 		HLENNW:FieldType = 104 ;
> > 		HLENNW:MemoryOrder = "XY " ;
> > 		HLENNW:description = "Orographic length scale in NW-SE plane" ;
> > 		HLENNW:units = "" ;
> > 		HLENNW:stagger = "" ;
> > 	float HANGL(Time, south_north, west_east) ;
> > 		HANGL:FieldType = 104 ;
> > 		HANGL:MemoryOrder = "XY " ;
> > 		HANGL:description = "Angle of the mountain range w/r/t east" ;
> > 		HANGL:units = "deg" ;
> > 		HANGL:stagger = "" ;
> > 	float HANIS(Time, south_north, west_east) ;
> > 		HANIS:FieldType = 104 ;
> > 		HANIS:MemoryOrder = "XY " ;
> > 		HANIS:description = "Anisotropy/aspect ratio of orography" ;
> > 		HANIS:units = "" ;
> > 		HANIS:stagger = "" ;
> > 	float HSLOP(Time, south_north, west_east) ;
> > 		HSLOP:FieldType = 104 ;
> > 		HSLOP:MemoryOrder = "XY " ;
> > 		HSLOP:description = "Slope of orography" ;
> > 		HSLOP:units = "" ;
> > 		HSLOP:stagger = "" ;
> > 	float HZMAX(Time, south_north, west_east) ;
> > 		HZMAX:FieldType = 104 ;
> > 		HZMAX:MemoryOrder = "XY " ;
> > 		HZMAX:description = "Maximum height above mean orography" ;
> > 		HZMAX:units = "m" ;
> > 		HZMAX:stagger = "" ;
> > 	float UGWDSFC(Time, south_north, west_east) ;
> > 		UGWDSFC:FieldType = 104 ;
> > 		UGWDSFC:MemoryOrder = "XY " ;
> > 		UGWDSFC:description = "Surface zonal wind stress due to gravity wave
> > drag" ;
> > 		UGWDSFC:units = "N m-2" ;
> > 		UGWDSFC:stagger = "" ;
> > 	float VGWDSFC(Time, south_north, west_east) ;
> > 		VGWDSFC:FieldType = 104 ;
> > 		VGWDSFC:MemoryOrder = "XY " ;
> > 		VGWDSFC:description = "Surface meridional wind stress due to gravity
> > wave drag" ;
> > 		VGWDSFC:units = "N m-2" ;
> > 		VGWDSFC:stagger = "" ;
> > 	float PINT(Time, bottom_top_stag, south_north, west_east) ;
> > 		PINT:FieldType = 104 ;
> > 		PINT:MemoryOrder = "XYZ" ;
> > 		PINT:description = "Model layer interface pressure" ;
> > 		PINT:units = "Pa" ;
> > 		PINT:stagger = "Z" ;
> > 	float W(Time, bottom_top_stag, south_north, west_east) ;
> > 		W:FieldType = 104 ;
> > 		W:MemoryOrder = "XYZ" ;
> > 		W:description = "Vertical velocity" ;
> > 		W:units = "m s-1" ;
> > 		W:stagger = "Z" ;
> > 	float ACFRCV(Time, south_north, west_east) ;
> > 		ACFRCV:FieldType = 104 ;
> > 		ACFRCV:MemoryOrder = "XY " ;
> > 		ACFRCV:description = "Accum convective cloud fraction" ;
> > 		ACFRCV:units = "" ;
> > 		ACFRCV:stagger = "" ;
> > 	float ACFRST(Time, south_north, west_east) ;
> > 		ACFRST:FieldType = 104 ;
> > 		ACFRST:MemoryOrder = "XY " ;
> > 		ACFRST:description = "Accum stratiform cloud fraction" ;
> > 		ACFRST:units = "" ;
> > 		ACFRST:stagger = "" ;
> > 	float SSROFF(Time, south_north, west_east) ;
> > 		SSROFF:FieldType = 104 ;
> > 		SSROFF:MemoryOrder = "XY " ;
> > 		SSROFF:description = "Surface runoff" ;
> > 		SSROFF:units = "mm" ;
> > 		SSROFF:stagger = "" ;
> > 	float BGROFF(Time, south_north, west_east) ;
> > 		BGROFF:FieldType = 104 ;
> > 		BGROFF:MemoryOrder = "XY " ;
> > 		BGROFF:description = "Subsurface runoff" ;
> > 		BGROFF:units = "mm" ;
> > 		BGROFF:stagger = "" ;
> > 	float RLWIN(Time, south_north, west_east) ;
> > 		RLWIN:FieldType = 104 ;
> > 		RLWIN:MemoryOrder = "XY " ;
> > 		RLWIN:description = "Downward longwave at surface" ;
> > 		RLWIN:units = "W m-2" ;
> > 		RLWIN:stagger = "" ;
> > 	float RLWTOA(Time, south_north, west_east) ;
> > 		RLWTOA:FieldType = 104 ;
> > 		RLWTOA:MemoryOrder = "XY " ;
> > 		RLWTOA:description = "Outgoing LW flux at top of atmos" ;
> > 		RLWTOA:units = "W m-2" ;
> > 		RLWTOA:stagger = "" ;
> > 	float ALWIN(Time, south_north, west_east) ;
> > 		ALWIN:FieldType = 104 ;
> > 		ALWIN:MemoryOrder = "XY " ;
> > 		ALWIN:description = "Accum LW down at surface" ;
> > 		ALWIN:units = "W m-2" ;
> > 		ALWIN:stagger = "" ;
> > 	float ALWOUT(Time, south_north, west_east) ;
> > 		ALWOUT:FieldType = 104 ;
> > 		ALWOUT:MemoryOrder = "XY " ;
> > 		ALWOUT:description = "Accum RADOT (see above)" ;
> > 		ALWOUT:units = "W m-2" ;
> > 		ALWOUT:stagger = "" ;
> > 	float ALWTOA(Time, south_north, west_east) ;
> > 		ALWTOA:FieldType = 104 ;
> > 		ALWTOA:MemoryOrder = "XY " ;
> > 		ALWTOA:description = "Accum RLWTOA" ;
> > 		ALWTOA:units = "W m-2" ;
> > 		ALWTOA:stagger = "" ;
> > 	float RSWIN(Time, south_north, west_east) ;
> > 		RSWIN:FieldType = 104 ;
> > 		RSWIN:MemoryOrder = "XY " ;
> > 		RSWIN:description = "Downward shortwave at surface" ;
> > 		RSWIN:units = "W m-2" ;
> > 		RSWIN:stagger = "" ;
> > 	float RSWINC(Time, south_north, west_east) ;
> > 		RSWINC:FieldType = 104 ;
> > 		RSWINC:MemoryOrder = "XY " ;
> > 		RSWINC:description = "Clear-sky equivalent of RSWIN" ;
> > 		RSWINC:units = "W m-2" ;
> > 		RSWINC:stagger = "" ;
> > 	float RSWOUT(Time, south_north, west_east) ;
> > 		RSWOUT:FieldType = 104 ;
> > 		RSWOUT:MemoryOrder = "XY " ;
> > 		RSWOUT:description = "Upward shortwave at surface" ;
> > 		RSWOUT:units = "W m-2" ;
> > 		RSWOUT:stagger = "" ;
> > 	float ASWIN(Time, south_north, west_east) ;
> > 		ASWIN:FieldType = 104 ;
> > 		ASWIN:MemoryOrder = "XY " ;
> > 		ASWIN:description = "Accum SW down at surface" ;
> > 		ASWIN:units = "W m-2" ;
> > 		ASWIN:stagger = "" ;
> > 	float ASWOUT(Time, south_north, west_east) ;
> > 		ASWOUT:FieldType = 104 ;
> > 		ASWOUT:MemoryOrder = "XY " ;
> > 		ASWOUT:description = "Accum RSWOUT" ;
> > 		ASWOUT:units = "W m-2" ;
> > 		ASWOUT:stagger = "" ;
> > 	float ASWTOA(Time, south_north, west_east) ;
> > 		ASWTOA:FieldType = 104 ;
> > 		ASWTOA:MemoryOrder = "XY " ;
> > 		ASWTOA:description = "Accum RSWTOA" ;
> > 		ASWTOA:units = "W m-2" ;
> > 		ASWTOA:stagger = "" ;
> > 	float SFCSHX(Time, south_north, west_east) ;
> > 		SFCSHX:FieldType = 104 ;
> > 		SFCSHX:MemoryOrder = "XY " ;
> > 		SFCSHX:description = "Accum sfc sensible heat flux" ;
> > 		SFCSHX:units = "W m-2" ;
> > 		SFCSHX:stagger = "" ;
> > 	float SFCLHX(Time, south_north, west_east) ;
> > 		SFCLHX:FieldType = 104 ;
> > 		SFCLHX:MemoryOrder = "XY " ;
> > 		SFCLHX:description = "Accum sfc latent heat flux" ;
> > 		SFCLHX:units = "W m-2" ;
> > 		SFCLHX:stagger = "" ;
> > 	float SUBSHX(Time, south_north, west_east) ;
> > 		SUBSHX:FieldType = 104 ;
> > 		SUBSHX:MemoryOrder = "XY " ;
> > 		SUBSHX:description = "Accum deep soil heat flux" ;
> > 		SUBSHX:units = "W m-2" ;
> > 		SUBSHX:stagger = "" ;
> > 	float SNOPCX(Time, south_north, west_east) ;
> > 		SNOPCX:FieldType = 104 ;
> > 		SNOPCX:MemoryOrder = "XY " ;
> > 		SNOPCX:description = "Snow phase change heat flux" ;
> > 		SNOPCX:units = "W m-2" ;
> > 		SNOPCX:stagger = "" ;
> > 	float SFCUVX(Time, south_north, west_east) ;
> > 		SFCUVX:FieldType = 104 ;
> > 		SFCUVX:MemoryOrder = "XY " ;
> > 		SFCUVX:description = "-" ;
> > 		SFCUVX:units = "-" ;
> > 		SFCUVX:stagger = "" ;
> > 	float POTEVP(Time, south_north, west_east) ;
> > 		POTEVP:FieldType = 104 ;
> > 		POTEVP:MemoryOrder = "XY " ;
> > 		POTEVP:description = "Accum potential evaporation" ;
> > 		POTEVP:units = "m" ;
> > 		POTEVP:stagger = "" ;
> > 	float POTFLX(Time, south_north, west_east) ;
> > 		POTFLX:FieldType = 104 ;
> > 		POTFLX:MemoryOrder = "XY " ;
> > 		POTFLX:description = "Energy equivalent of POTEVP" ;
> > 		POTFLX:units = "W m-2" ;
> > 		POTFLX:stagger = "" ;
> > 	float TLMIN(Time, south_north, west_east) ;
> > 		TLMIN:FieldType = 104 ;
> > 		TLMIN:MemoryOrder = "XY " ;
> > 		TLMIN:description = "-" ;
> > 		TLMIN:units = "-" ;
> > 		TLMIN:stagger = "" ;
> > 	float TLMAX(Time, south_north, west_east) ;
> > 		TLMAX:FieldType = 104 ;
> > 		TLMAX:MemoryOrder = "XY " ;
> > 		TLMAX:description = "-" ;
> > 		TLMAX:units = "-" ;
> > 		TLMAX:stagger = "" ;
> > 	float T02_MIN(Time, south_north, west_east) ;
> > 		T02_MIN:FieldType = 104 ;
> > 		T02_MIN:MemoryOrder = "XY " ;
> > 		T02_MIN:description = "Hourly Min Shelter Temperature" ;
> > 		T02_MIN:units = "K" ;
> > 		T02_MIN:stagger = "" ;
> > 	float T02_MAX(Time, south_north, west_east) ;
> > 		T02_MAX:FieldType = 104 ;
> > 		T02_MAX:MemoryOrder = "XY " ;
> > 		T02_MAX:description = "Hourly Max Shelter Temperature" ;
> > 		T02_MAX:units = "K" ;
> > 		T02_MAX:stagger = "" ;
> > 	float RH02_MIN(Time, south_north, west_east) ;
> > 		RH02_MIN:FieldType = 104 ;
> > 		RH02_MIN:MemoryOrder = "XY " ;
> > 		RH02_MIN:description = "Hourly Min Relative Humidity" ;
> > 		RH02_MIN:units = "" ;
> > 		RH02_MIN:stagger = "" ;
> > 	float RH02_MAX(Time, south_north, west_east) ;
> > 		RH02_MAX:FieldType = 104 ;
> > 		RH02_MAX:MemoryOrder = "XY " ;
> > 		RH02_MAX:description = "Hourly Max Relative Humidity" ;
> > 		RH02_MAX:units = "" ;
> > 		RH02_MAX:stagger = "" ;
> > 	int NCFRCV(Time, south_north, west_east) ;
> > 		NCFRCV:FieldType = 106 ;
> > 		NCFRCV:MemoryOrder = "XY " ;
> > 		NCFRCV:description = "  times convec cloud >0 between rad calls" ;
> > 		NCFRCV:units = "" ;
> > 		NCFRCV:stagger = "" ;
> > 	int NCFRST(Time, south_north, west_east) ;
> > 		NCFRST:FieldType = 106 ;
> > 		NCFRST:MemoryOrder = "XY " ;
> > 		NCFRST:description = "  times stratiform cloud >0 between rad calls" ;
> > 		NCFRST:units = "" ;
> > 		NCFRST:stagger = "" ;
> > 	int NPHS0(Time) ;
> > 		NPHS0:FieldType = 106 ;
> > 		NPHS0:MemoryOrder = "0  " ;
> > 		NPHS0:description = "-" ;
> > 		NPHS0:units = "-" ;
> > 		NPHS0:stagger = "" ;
> > 	int NPREC(Time) ;
> > 		NPREC:FieldType = 106 ;
> > 		NPREC:MemoryOrder = "0  " ;
> > 		NPREC:description = "  timesteps between resetting precip bucket" ;
> > 		NPREC:units = "" ;
> > 		NPREC:stagger = "" ;
> > 	int NCLOD(Time) ;
> > 		NCLOD:FieldType = 106 ;
> > 		NCLOD:MemoryOrder = "0  " ;
> > 		NCLOD:description = "  timesteps between resetting cloud frac accum" ;
> > 		NCLOD:units = "" ;
> > 		NCLOD:stagger = "" ;
> > 	int NHEAT(Time) ;
> > 		NHEAT:FieldType = 106 ;
> > 		NHEAT:MemoryOrder = "0  " ;
> > 		NHEAT:description = "  timesteps between resetting latent heat
> > accum" ;
> > 		NHEAT:units = "" ;
> > 		NHEAT:stagger = "" ;
> > 	int NRDLW(Time) ;
> > 		NRDLW:FieldType = 106 ;
> > 		NRDLW:MemoryOrder = "0  " ;
> > 		NRDLW:description = "  timesteps between resetting longwave accums" ;
> > 		NRDLW:units = "" ;
> > 		NRDLW:stagger = "" ;
> > 	int NRDSW(Time) ;
> > 		NRDSW:FieldType = 106 ;
> > 		NRDSW:MemoryOrder = "0  " ;
> > 		NRDSW:description = "  timesteps between resetting shortwave accums" ;
> > 		NRDSW:units = "" ;
> > 		NRDSW:stagger = "" ;
> > 	int NSRFC(Time) ;
> > 		NSRFC:FieldType = 106 ;
> > 		NSRFC:MemoryOrder = "0  " ;
> > 		NSRFC:description = "  timesteps between resetting sfcflux accums" ;
> > 		NSRFC:units = "" ;
> > 		NSRFC:stagger = "" ;
> > 	float AVRAIN(Time) ;
> > 		AVRAIN:FieldType = 104 ;
> > 		AVRAIN:MemoryOrder = "0  " ;
> > 		AVRAIN:description = "  of times gridscale precip called in NHEAT
> > steps" ;
> > 		AVRAIN:units = "" ;
> > 		AVRAIN:stagger = "" ;
> > 	float AVCNVC(Time) ;
> > 		AVCNVC:FieldType = 104 ;
> > 		AVCNVC:MemoryOrder = "0  " ;
> > 		AVCNVC:description = "  of times convective precip called in NHEAT
> > steps" ;
> > 		AVCNVC:units = "" ;
> > 		AVCNVC:stagger = "" ;
> > 	float ACUTIM(Time) ;
> > 		ACUTIM:FieldType = 104 ;
> > 		ACUTIM:MemoryOrder = "0  " ;
> > 		ACUTIM:description = "-" ;
> > 		ACUTIM:units = "-" ;
> > 		ACUTIM:stagger = "" ;
> > 	float ARDLW(Time) ;
> > 		ARDLW:FieldType = 104 ;
> > 		ARDLW:MemoryOrder = "0  " ;
> > 		ARDLW:description = "  of times LW fluxes summed before resetting" ;
> > 		ARDLW:units = "" ;
> > 		ARDLW:stagger = "" ;
> > 	float ARDSW(Time) ;
> > 		ARDSW:FieldType = 104 ;
> > 		ARDSW:MemoryOrder = "0  " ;
> > 		ARDSW:description = "  of times SW fluxes summed before resetting" ;
> > 		ARDSW:units = "" ;
> > 		ARDSW:stagger = "" ;
> > 	float ASRFC(Time) ;
> > 		ASRFC:FieldType = 104 ;
> > 		ASRFC:MemoryOrder = "0  " ;
> > 		ASRFC:description = "  of times sfc fluxes summed before resetting" ;
> > 		ASRFC:units = "" ;
> > 		ASRFC:stagger = "" ;
> > 	float APHTIM(Time) ;
> > 		APHTIM:FieldType = 104 ;
> > 		APHTIM:MemoryOrder = "0  " ;
> > 		APHTIM:description = "-" ;
> > 		APHTIM:units = "-" ;
> > 		APHTIM:stagger = "" ;
> > 	float LANDMASK(Time, south_north, west_east) ;
> > 		LANDMASK:FieldType = 104 ;
> > 		LANDMASK:MemoryOrder = "XY " ;
> > 		LANDMASK:description = "description" ;
> > 		LANDMASK:units = "units" ;
> > 		LANDMASK:stagger = "" ;
> > 	float QVAPOR(Time, bottom_top, south_north, west_east) ;
> > 		QVAPOR:FieldType = 104 ;
> > 		QVAPOR:MemoryOrder = "XYZ" ;
> > 		QVAPOR:description = "Water vapor mixing ratio" ;
> > 		QVAPOR:units = "kg kg-1" ;
> > 		QVAPOR:stagger = "" ;
> > 	float QCLOUD(Time, bottom_top, south_north, west_east) ;
> > 		QCLOUD:FieldType = 104 ;
> > 		QCLOUD:MemoryOrder = "XYZ" ;
> > 		QCLOUD:description = "Cloud water mixing ratio" ;
> > 		QCLOUD:units = "kg kg-1" ;
> > 		QCLOUD:stagger = "" ;
> > 	float QRAIN(Time, bottom_top, south_north, west_east) ;
> > 		QRAIN:FieldType = 104 ;
> > 		QRAIN:MemoryOrder = "XYZ" ;
> > 		QRAIN:description = "Rain water mixing ratio" ;
> > 		QRAIN:units = "kg kg-1" ;
> > 		QRAIN:stagger = "" ;
> > 	float QSNOW(Time, bottom_top, south_north, west_east) ;
> > 		QSNOW:FieldType = 104 ;
> > 		QSNOW:MemoryOrder = "XYZ" ;
> > 		QSNOW:description = "Snow mixing ratio" ;
> > 		QSNOW:units = "kg kg-1" ;
> > 		QSNOW:stagger = "" ;
> > 	float SMOIS(Time, soil_layers_stag, south_north, west_east) ;
> > 		SMOIS:FieldType = 104 ;
> > 		SMOIS:MemoryOrder = "XYZ" ;
> > 		SMOIS:description = "SOIL MOISTURE" ;
> > 		SMOIS:units = "" ;
> > 		SMOIS:stagger = "Z" ;
> > 	float PSFC(Time, south_north, west_east) ;
> > 		PSFC:FieldType = 104 ;
> > 		PSFC:MemoryOrder = "XY " ;
> > 		PSFC:description = "SFC PRESSURE" ;
> > 		PSFC:units = "-" ;
> > 		PSFC:stagger = "" ;
> > 	float TH2(Time, south_north, west_east) ;
> > 		TH2:FieldType = 104 ;
> > 		TH2:MemoryOrder = "XY " ;
> > 		TH2:description = "POT TEMP at 2 M" ;
> > 		TH2:units = "" ;
> > 		TH2:stagger = "" ;
> > 	float U10(Time, south_north, west_east) ;
> > 		U10:FieldType = 104 ;
> > 		U10:MemoryOrder = "XY " ;
> > 		U10:description = "U at 10 M" ;
> > 		U10:units = "m/s" ;
> > 		U10:stagger = "" ;
> > 		U10:coordinates = "GLON GLAT Time" ;
> > 	float V10(Time, south_north, west_east) ;
> > 		V10:FieldType = 104 ;
> > 		V10:MemoryOrder = "XY " ;
> > 		V10:description = "V at 10 M" ;
> > 		V10:units = "m/s" ;
> > 		V10:stagger = "" ;
> > 		V10:coordinates = "GLON GLAT Time" ;
> > 	float LAI(Time, south_north, west_east) ;
> > 		LAI:FieldType = 104 ;
> > 		LAI:MemoryOrder = "XY " ;
> > 		LAI:description = "Leaf area index" ;
> > 		LAI:units = "area/area" ;
> > 		LAI:stagger = "" ;
> > 	float SMSTAV(Time, south_north, west_east) ;
> > 		SMSTAV:FieldType = 104 ;
> > 		SMSTAV:MemoryOrder = "XY " ;
> > 		SMSTAV:description = "MOISTURE VARIBILITY" ;
> > 		SMSTAV:units = "" ;
> > 		SMSTAV:stagger = "" ;
> > 	float SMSTOT(Time, south_north, west_east) ;
> > 		SMSTOT:FieldType = 104 ;
> > 		SMSTOT:MemoryOrder = "XY " ;
> > 		SMSTOT:description = "TOTAL SOIL MOISTURE" ;
> > 		SMSTOT:units = "" ;
> > 		SMSTOT:stagger = "" ;
> > 	float SFROFF(Time, south_north, west_east) ;
> > 		SFROFF:FieldType = 104 ;
> > 		SFROFF:MemoryOrder = "XY " ;
> > 		SFROFF:description = "SURFACE RUNOFF" ;
> > 		SFROFF:units = "" ;
> > 		SFROFF:stagger = "" ;
> > 	float UDROFF(Time, south_north, west_east) ;
> > 		UDROFF:FieldType = 104 ;
> > 		UDROFF:MemoryOrder = "XY " ;
> > 		UDROFF:description = "UNDERGROUND RUNOFF" ;
> > 		UDROFF:units = "" ;
> > 		UDROFF:stagger = "" ;
> > 	int IVGTYP(Time, south_north, west_east) ;
> > 		IVGTYP:FieldType = 106 ;
> > 		IVGTYP:MemoryOrder = "XY " ;
> > 		IVGTYP:description = "VEGETATION TYPE" ;
> > 		IVGTYP:units = "" ;
> > 		IVGTYP:stagger = "" ;
> > 	int ISLTYP(Time, south_north, west_east) ;
> > 		ISLTYP:FieldType = 106 ;
> > 		ISLTYP:MemoryOrder = "XY " ;
> > 		ISLTYP:description = "SOIL TYPE" ;
> > 		ISLTYP:units = "" ;
> > 		ISLTYP:stagger = "" ;
> > 	float VEGFRA(Time, south_north, west_east) ;
> > 		VEGFRA:FieldType = 104 ;
> > 		VEGFRA:MemoryOrder = "XY " ;
> > 		VEGFRA:description = "VEGETATION FRACTION" ;
> > 		VEGFRA:units = "" ;
> > 		VEGFRA:stagger = "" ;
> > 	float SFCEVP(Time, south_north, west_east) ;
> > 		SFCEVP:FieldType = 104 ;
> > 		SFCEVP:MemoryOrder = "XY " ;
> > 		SFCEVP:description = "SURFACE EVAPORATION" ;
> > 		SFCEVP:units = "" ;
> > 		SFCEVP:stagger = "" ;
> > 	float GRDFLX(Time, south_north, west_east) ;
> > 		GRDFLX:FieldType = 104 ;
> > 		GRDFLX:MemoryOrder = "XY " ;
> > 		GRDFLX:description = "GROUND HEAT FLUX" ;
> > 		GRDFLX:units = "" ;
> > 		GRDFLX:stagger = "" ;
> > 	float SFCEXC(Time, south_north, west_east) ;
> > 		SFCEXC:FieldType = 104 ;
> > 		SFCEXC:MemoryOrder = "XY " ;
> > 		SFCEXC:description = "SURFACE EXCHANGE COEFFICIENT" ;
> > 		SFCEXC:units = "" ;
> > 		SFCEXC:stagger = "" ;
> > 	float ACSNOW(Time, south_north, west_east) ;
> > 		ACSNOW:FieldType = 104 ;
> > 		ACSNOW:MemoryOrder = "XY " ;
> > 		ACSNOW:description = "ACCUMULATED SNOW" ;
> > 		ACSNOW:units = "kg m-2" ;
> > 		ACSNOW:stagger = "" ;
> > 	float ACSNOM(Time, south_north, west_east) ;
> > 		ACSNOM:FieldType = 104 ;
> > 		ACSNOM:MemoryOrder = "XY " ;
> > 		ACSNOM:description = "ACCUMULATED MELTED SNOW" ;
> > 		ACSNOM:units = "kg m-2" ;
> > 		ACSNOM:stagger = "" ;
> > 	float SNOW(Time, south_north, west_east) ;
> > 		SNOW:FieldType = 104 ;
> > 		SNOW:MemoryOrder = "XY " ;
> > 		SNOW:description = "SNOW WATER EQUIVALENT" ;
> > 		SNOW:units = "kg m-2" ;
> > 		SNOW:stagger = "" ;
> > 	float CANWAT(Time, south_north, west_east) ;
> > 		CANWAT:FieldType = 104 ;
> > 		CANWAT:MemoryOrder = "XY " ;
> > 		CANWAT:description = "CANOPY WATER" ;
> > 		CANWAT:units = "" ;
> > 		CANWAT:stagger = "" ;
> > 	float SST(Time, south_north, west_east) ;
> > 		SST:FieldType = 104 ;
> > 		SST:MemoryOrder = "XY " ;
> > 		SST:description = "SEA SURFACE TEMPERATURE" ;
> > 		SST:units = "K" ;
> > 		SST:stagger = "" ;
> > 	float WEASD(Time, south_north, west_east) ;
> > 		WEASD:FieldType = 104 ;
> > 		WEASD:MemoryOrder = "XY " ;
> > 		WEASD:description = "WATER EQUIVALENT OF ACCUMULATED SNOW" ;
> > 		WEASD:units = "kg m-2" ;
> > 		WEASD:stagger = "" ;
> > 	float NOAHRES(Time, south_north, west_east) ;
> > 		NOAHRES:FieldType = 104 ;
> > 		NOAHRES:MemoryOrder = "XY " ;
> > 		NOAHRES:description = "RESIDUAL OF THE NOAH SURFACE ENERGY BUDGET" ;
> > 		NOAHRES:units = "W m{-2}" ;
> > 		NOAHRES:stagger = "" ;
> > 	float THZ0(Time, south_north, west_east) ;
> > 		THZ0:FieldType = 104 ;
> > 		THZ0:MemoryOrder = "XY " ;
> > 		THZ0:description = "POT. TEMPERATURE AT TOP OF VISC. SUBLYR" ;
> > 		THZ0:units = "K" ;
> > 		THZ0:stagger = "" ;
> > 	float QZ0(Time, south_north, west_east) ;
> > 		QZ0:FieldType = 104 ;
> > 		QZ0:MemoryOrder = "XY " ;
> > 		QZ0:description = "SPECIFIC HUMIDITY AT TOP OF VISC. SUBLYR" ;
> > 		QZ0:units = "kg kg-1" ;
> > 		QZ0:stagger = "" ;
> > 	float UZ0(Time, south_north, west_east) ;
> > 		UZ0:FieldType = 104 ;
> > 		UZ0:MemoryOrder = "XY " ;
> > 		UZ0:description = "U WIND COMPONENT AT TOP OF VISC. SUBLYR" ;
> > 		UZ0:units = "m s-1" ;
> > 		UZ0:stagger = "" ;
> > 	float VZ0(Time, south_north, west_east) ;
> > 		VZ0:FieldType = 104 ;
> > 		VZ0:MemoryOrder = "XY " ;
> > 		VZ0:description = "V WIND COMPONENT AT TOP OF VISC. SUBLYR" ;
> > 		VZ0:units = "m s-1" ;
> > 		VZ0:stagger = "" ;
> > 	float QSFC(Time, south_north, west_east) ;
> > 		QSFC:FieldType = 104 ;
> > 		QSFC:MemoryOrder = "XY " ;
> > 		QSFC:description = "SPECIFIC HUMIDITY AT LOWER BOUNDARY" ;
> > 		QSFC:units = "kg kg-1" ;
> > 		QSFC:stagger = "" ;
> > 	float HTOP(Time, south_north, west_east) ;
> > 		HTOP:FieldType = 104 ;
> > 		HTOP:MemoryOrder = "XY " ;
> > 		HTOP:description = "TOP OF CONVECTION LEVEL" ;
> > 		HTOP:units = "" ;
> > 		HTOP:stagger = "" ;
> > 	float HBOT(Time, south_north, west_east) ;
> > 		HBOT:FieldType = 104 ;
> > 		HBOT:MemoryOrder = "XY " ;
> > 		HBOT:description = "BOT OF CONVECTION LEVEL" ;
> > 		HBOT:units = "" ;
> > 		HBOT:stagger = "" ;
> > 	float HTOPD(Time, south_north, west_east) ;
> > 		HTOPD:FieldType = 104 ;
> > 		HTOPD:MemoryOrder = "XY " ;
> > 		HTOPD:description = "TOP DEEP CONVECTION LEVEL" ;
> > 		HTOPD:units = "" ;
> > 		HTOPD:stagger = "" ;
> > 	float HBOTD(Time, south_north, west_east) ;
> > 		HBOTD:FieldType = 104 ;
> > 		HBOTD:MemoryOrder = "XY " ;
> > 		HBOTD:description = "BOT DEEP CONVECTION LEVEL" ;
> > 		HBOTD:units = "" ;
> > 		HBOTD:stagger = "" ;
> > 	float HTOPS(Time, south_north, west_east) ;
> > 		HTOPS:FieldType = 104 ;
> > 		HTOPS:MemoryOrder = "XY " ;
> > 		HTOPS:description = "TOP SHALLOW CONVECTION LEVEL" ;
> > 		HTOPS:units = "" ;
> > 		HTOPS:stagger = "" ;
> > 	float HBOTS(Time, south_north, west_east) ;
> > 		HBOTS:FieldType = 104 ;
> > 		HBOTS:MemoryOrder = "XY " ;
> > 		HBOTS:description = "BOT SHALLOW CONVECTION LEVEL" ;
> > 		HBOTS:units = "" ;
> > 		HBOTS:stagger = "" ;
> > 	float CUPPT(Time, south_north, west_east) ;
> > 		CUPPT:FieldType = 104 ;
> > 		CUPPT:MemoryOrder = "XY " ;
> > 		CUPPT:description = "ACCUMULATED CONVECTIVE RAIN SINCE LAST CALL TO
> > THE RADIATION" ;
> > 		CUPPT:units = "" ;
> > 		CUPPT:stagger = "" ;
> > 	float CPRATE(Time, south_north, west_east) ;
> > 		CPRATE:FieldType = 104 ;
> > 		CPRATE:MemoryOrder = "XY " ;
> > 		CPRATE:description = "INSTANTANEOUS CONVECTIVE PRECIPITATION RATE" ;
> > 		CPRATE:units = "" ;
> > 		CPRATE:stagger = "" ;
> > 	float SNOWH(Time, south_north, west_east) ;
> > 		SNOWH:FieldType = 104 ;
> > 		SNOWH:MemoryOrder = "XY " ;
> > 		SNOWH:description = "PHYSICAL SNOW DEPTH" ;
> > 		SNOWH:units = "m" ;
> > 		SNOWH:stagger = "" ;
> > 	float SMFR3D(Time, soil_layers_stag, south_north, west_east) ;
> > 		SMFR3D:FieldType = 104 ;
> > 		SMFR3D:MemoryOrder = "XYZ" ;
> > 		SMFR3D:description = "SOIL ICE" ;
> > 		SMFR3D:units = "" ;
> > 		SMFR3D:stagger = "Z" ;
> > 	int ITIMESTEP(Time) ;
> > 		ITIMESTEP:FieldType = 106 ;
> > 		ITIMESTEP:MemoryOrder = "0  " ;
> > 		ITIMESTEP:description = "" ;
> > 		ITIMESTEP:units = "" ;
> > 		ITIMESTEP:stagger = "" ;
> > 	float XTIME(Time) ;
> > 		XTIME:FieldType = 104 ;
> > 		XTIME:MemoryOrder = "0  " ;
> > 		XTIME:description = "minutes since simulation start" ;
> > 		XTIME:units = "seconds" ;
> > 		XTIME:stagger = "" ;
> >
> > // global attributes:
> > 		:TITLE = " OUTPUT FROM WRF V3.3 MODEL" ;
> > 		:START_DATE = "2005-01-23_00:00:00" ;
> > 		:SIMULATION_START_DATE = "2005-01-23_00:00:00" ;
> > 		:WEST-EAST_GRID_DIMENSION = 56 ;
> > 		:SOUTH-NORTH_GRID_DIMENSION = 92 ;
> > 		:BOTTOM-TOP_GRID_DIMENSION = 38 ;
> > 		:GRIDTYPE = "E" ;
> > 		:DIFF_OPT = 1 ;
> > 		:KM_OPT = 1 ;
> > 		:DAMP_OPT = 1 ;
> > 		:DAMPCOEF = 0.2f ;
> > 		:KHDIF = 0.f ;
> > 		:KVDIF = 0.f ;
> > 		:MP_PHYSICS = 5 ;
> > 		:RA_LW_PHYSICS = 99 ;
> > 		:RA_SW_PHYSICS = 99 ;
> > 		:SF_SFCLAY_PHYSICS = 2 ;
> > 		:SF_SURFACE_PHYSICS = 2 ;
> > 		:BL_PBL_PHYSICS = 2 ;
> > 		:CU_PHYSICS = 2 ;
> > 		:SURFACE_INPUT_SOURCE = 1 ;
> > 		:SST_UPDATE = 0 ;
> > 		:SF_URBAN_PHYSICS = 0 ;
> > 		:FEEDBACK = 1 ;
> > 		:SMOOTH_OPTION = 2 ;
> > 		:SWRAD_SCAT = 1.f ;
> > 		:W_DAMPING = 0 ;
> > 		:DFI_OPT = 0 ;
> > 		:SHCU_PHYSICS = 0 ;
> > 		:WEST-EAST_PATCH_START_UNSTAG = 1 ;
> > 		:WEST-EAST_PATCH_END_UNSTAG = 55 ;
> > 		:WEST-EAST_PATCH_START_STAG = 1 ;
> > 		:WEST-EAST_PATCH_END_STAG = 56 ;
> > 		:SOUTH-NORTH_PATCH_START_UNSTAG = 1 ;
> > 		:SOUTH-NORTH_PATCH_END_UNSTAG = 91 ;
> > 		:SOUTH-NORTH_PATCH_START_STAG = 1 ;
> > 		:SOUTH-NORTH_PATCH_END_STAG = 92 ;
> > 		:BOTTOM-TOP_PATCH_START_UNSTAG = 1 ;
> > 		:BOTTOM-TOP_PATCH_END_UNSTAG = 37 ;
> > 		:BOTTOM-TOP_PATCH_START_STAG = 1 ;
> > 		:BOTTOM-TOP_PATCH_END_STAG = 38 ;
> > 		:DX = 0.096f ;
> > 		:DY = 0.095f ;
> > 		:DT = 34.28571f ;
> > 		:CEN_LAT = 42.f ;
> > 		:CEN_LON = -71.f ;
> > 		:TRUELAT1 = 1.e+20f ;
> > 		:TRUELAT2 = 1.e+20f ;
> > 		:MOAD_CEN_LAT = 0.f ;
> > 		:STAND_LON = 1.e+20f ;
> > 		:GMT = 0.f ;
> > 		:JULYR = 2005 ;
> > 		:JULDAY = 23 ;
> > 		:MAP_PROJ = 203 ;
> > 		:MMINLU = "USGS" ;
> > 		:NUM_LAND_CAT = 24 ;
> > 		:ISWATER = 16 ;
> > 		:ISLAKE = -1 ;
> > 		:ISICE = 24 ;
> > 		:ISURBAN = 1 ;
> > 		:ISOILWATER = 14 ;
> > 		:I_PARENT_START = 1 ;
> > 		:J_PARENT_START = 1 ;
> >
> 

-- 
Arturo Avila Rosas
Ingeniería de Software
Instituto Mexicano del Petróleo
T. 91.75.73.99



[Thread Prev][Thread Next][Index]


Contact Us
Dept of Commerce / NOAA / OAR / PMEL / TMAP

Privacy Policy | Disclaimer | Accessibility Statement