<p><b>duda</b> 2010-11-11 17:14:40 -0700 (Thu, 11 Nov 2010)</p><p>BRANCH COMMIT<br>
<br>
Add initial code to be further developed into a real-data test case <br>
initialization for the non-hydrostatic atmosphere core. Currently,<br>
much of the code in module_test_cases.F for new real-data &quot;test case&quot;<br>
is ifdef'd out, since that code reads data sets which are not likely<br>
to be available on most machines at this time.<br>
<br>
A few details:<br>
<br>
   module_llxy.F - Performs (lat,lon) &lt;-&gt; (i,j) transformations<br>
      needed when interpolating from initial fields on a different<br>
      grid and projection<br>
<br>
   read_geogrid.c - Reads static data sets in the raw binary raster<br>
      format used in the WRF Preprocessing System for topography, <br>
      land use, etc.<br>
<br>
   module_read_met.F - Reads meteorological fields stored in the<br>
      format used by the WRF Preprocessing System's ungrib and<br>
      metgrid programs<br>
<br>
   Makefile - Added compiler flags to use big-endian byte<br>
      order for unformatted reads in module_read_met.F<br>
<br>
<br>
A    src/core_init_nhyd_atmos/module_llxy.F<br>
M    src/core_init_nhyd_atmos/module_test_cases.F<br>
M    src/core_init_nhyd_atmos/Registry<br>
A    src/core_init_nhyd_atmos/module_read_met.F<br>
A    src/core_init_nhyd_atmos/read_geogrid.c<br>
M    src/core_init_nhyd_atmos/Makefile<br>
A    namelist.input.nhyd_realdata<br>
M    Makefile<br>
</p><hr noshade><pre><font color="gray">Modified: branches/atmos_nonhydrostatic/Makefile
===================================================================
--- branches/atmos_nonhydrostatic/Makefile        2010-11-11 22:30:06 UTC (rev 607)
+++ branches/atmos_nonhydrostatic/Makefile        2010-11-12 00:14:40 UTC (rev 608)
@@ -38,7 +38,7 @@
         &quot;CC = cc&quot; \
         &quot;SFC = ftn&quot; \
         &quot;SCC = cc&quot; \
-        &quot;FFLAGS = -i4 -r8 -gopt -O2 -Mvect=nosse -Kieee&quot; \
+        &quot;FFLAGS = -i4 -r8 -gopt -O2 -Mvect=nosse -Kieee -convert big_endian&quot; \
         &quot;CFLAGS = -fast&quot; \
         &quot;LDFLAGS = &quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -50,7 +50,7 @@
         &quot;CC = mpicc&quot; \
         &quot;SFC = pgf90&quot; \
         &quot;SCC = pgcc&quot; \
-        &quot;FFLAGS = -r8 -O3&quot; \
+        &quot;FFLAGS = -r8 -O3 -byteswapio&quot; \
         &quot;CFLAGS = -O3&quot; \
         &quot;LDFLAGS = -O3&quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -62,7 +62,7 @@
         &quot;CC = pgcc&quot; \
         &quot;SFC = pgf90&quot; \
         &quot;SCC = pgcc&quot; \
-        &quot;FFLAGS = -i4 -r8 -g -O2&quot; \
+        &quot;FFLAGS = -i4 -r8 -g -O2 -byteswapio&quot; \
         &quot;CFLAGS = -fast&quot; \
         &quot;LDFLAGS = &quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -74,7 +74,7 @@
         &quot;CC = pgcc&quot; \
         &quot;SFC = pgf90&quot; \
         &quot;SCC = pgcc&quot; \
-        &quot;FFLAGS = -r8 -O0 -g -Mbounds -Mchkptr&quot; \
+        &quot;FFLAGS = -r8 -O0 -g -Mbounds -Mchkptr -byteswapio&quot; \
         &quot;CFLAGS = -O0 -g&quot; \
         &quot;LDFLAGS = -O0 -g -Mbounds -Mchkptr&quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -86,7 +86,7 @@
         &quot;CC = gcc&quot; \
         &quot;SFC = ifort&quot; \
         &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -real-size 64 -O3&quot; \
+        &quot;FFLAGS = -real-size 64 -O3 -convert big_endian&quot; \
         &quot;CFLAGS = -O3 -m64&quot; \
         &quot;LDFLAGS = -O3&quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -98,7 +98,7 @@
         &quot;CC = mpicc&quot; \
         &quot;SFC = gfortran&quot; \
         &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -O3 -m64 -ffree-line-length-none -fdefault-real-8&quot; \
+        &quot;FFLAGS = -O3 -m64 -ffree-line-length-none -fdefault-real-8 -fconvert=big-endian&quot; \
         &quot;CFLAGS = -O3 -m64&quot; \
         &quot;LDFLAGS = -O3 -m64&quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -110,7 +110,7 @@
         &quot;CC = mpicc&quot; \
         &quot;SFC = g95&quot; \
         &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8&quot; \
+        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8 -fendian=big&quot; \
         &quot;CFLAGS = -O3&quot; \
         &quot;LDFLAGS = -O3&quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -122,7 +122,7 @@
         &quot;CC = gcc&quot; \
         &quot;SFC = g95&quot; \
         &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8&quot; \
+        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8 -fendian=big&quot; \
         &quot;CFLAGS = -O3&quot; \
         &quot;LDFLAGS = -O3&quot; \
         &quot;CORE = $(CORE)&quot; \

Added: branches/atmos_nonhydrostatic/namelist.input.nhyd_realdata
===================================================================
--- branches/atmos_nonhydrostatic/namelist.input.nhyd_realdata                                (rev 0)
+++ branches/atmos_nonhydrostatic/namelist.input.nhyd_realdata        2010-11-12 00:14:40 UTC (rev 608)
@@ -0,0 +1,52 @@
+&amp;nhyd_model
+   config_test_case = 7
+   config_time_integration = 'SRK3'
+   config_dt = 450
+   config_ntimesteps = 1920
+   config_output_interval = 192
+   config_number_of_sub_steps = 6
+   config_h_mom_eddy_visc2 = 0.0e+04
+   config_h_mom_eddy_visc4 = 0.
+   config_v_mom_eddy_visc2 = 00.0
+   config_h_theta_eddy_visc2 = 0.0e+04
+   config_h_theta_eddy_visc4 = 00.
+   config_v_theta_eddy_visc2 = 00.0
+   config_horiz_mixing       = '2d_smagorinsky'
+   config_len_disp           = 60000.
+   config_u_vadv_order = 3
+   config_w_vadv_order = 3
+   config_theta_vadv_order = 3
+   config_scalar_vadv_order = 3
+   config_theta_adv_order = 3
+   config_scalar_adv_order = 3
+   config_scalar_advection = .false.
+   config_positive_definite = .false.
+   config_coef_3rd_order = 1.0
+   config_monotonic = .false.
+   config_epssm = 0.1
+   config_smdiv = 0.1
+/
+
+&amp;dimensions
+   config_nvertlevels = 26
+   config_nfglevels = 27
+/
+
+&amp;data_sources
+   config_geog_data_path =    '/data3/mp/wrfhelp/WPS_GEOG/'
+   config_met_prefix     =    'GFS'
+   config_init_date      =    '2010-05-26_12'
+/
+
+
+&amp;io
+   config_input_name = 'grid.nc'
+   config_output_name = 'output.nc'
+   config_restart_name = 'restart.nc'
+/
+
+&amp;restart
+   config_restart_interval = 3000
+   config_do_restart = .false.
+   config_restart_time = 1036800.0
+/

Modified: branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/Makefile
===================================================================
--- branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/Makefile        2010-11-11 22:30:06 UTC (rev 607)
+++ branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/Makefile        2010-11-12 00:14:40 UTC (rev 608)
@@ -2,17 +2,26 @@
 
 OBJS = module_mpas_core.o \
        module_test_cases.o \
-       module_advection.o
+       module_advection.o \
+       module_read_met.o \
+       module_llxy.o \
+       read_geogrid.o
 
 all: core_hyd
 
 core_hyd: $(OBJS)
         ar -ru libdycore.a $(OBJS)
 
-module_test_cases.o: module_advection.o
+module_test_cases.o: module_advection.o module_read_met.o read_geogrid.o module_llxy.o
 
 module_advection.o: 
 
+module_read_met.o:
+
+read_geogrid.o:
+
+module_llxy.o:
+
 module_mpas_core.o: module_advection.o module_test_cases.o
 
 clean:

Modified: branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/Registry
===================================================================
--- branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/Registry        2010-11-11 22:30:06 UTC (rev 607)
+++ branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/Registry        2010-11-12 00:14:40 UTC (rev 608)
@@ -31,6 +31,10 @@
 namelist real      nhyd_model config_epssm                0.1
 namelist real      nhyd_model config_smdiv                0.1
 namelist integer   dimensions config_nvertlevels          26
+namelist integer   dimensions config_nfglevels            27
+namelist character data_sources config_geog_data_path     /data3/mp/wrfhelp/WPS_GEOG/
+namelist character data_sources config_met_prefix         GFS
+namelist character data_sources config_init_date          2010-05-26_12
 namelist character io         config_input_name           grid.nc
 namelist character io         config_output_name          output.nc
 namelist character io         config_restart_name         restart.nc
@@ -53,6 +57,7 @@
 dim TWENTYONE 21
 dim R3 3
 dim nVertLevels namelist:config_nvertlevels
+dim nFGLevels namelist:config_nfglevels
 dim nVertLevelsP1 nVertLevels+1
 
 #
@@ -116,6 +121,9 @@
 var persistent real    cf2 ( ) 0 io cf2 mesh - -
 var persistent real    cf3 ( ) 0 io cf3 mesh - -
 
+# land use
+var persistent integer lu_index ( nCells ) 0 io lu_index mesh - -
+
 # description of the vertical grid structure
 
 var persistent real    hx ( nVertLevelsP1 nCells ) 0 io hx mesh - -
@@ -136,6 +144,17 @@
 
 var persistent real    dss ( nVertLevels nCells ) 0 io dss mesh - -
 
+# Horizontally interpolated from first-guess data
+var persistent real    u_fg ( nFGLevels nEdges ) 0 o u fg - -
+var persistent real    v_fg ( nFGLevels nEdges ) 0 o v fg - -
+var persistent real    t_fg ( nFGLevels nCells ) 0 o t fg - -
+var persistent real    p_fg ( nFGLevels nCells ) 0 o p fg - -
+var persistent real    z_fg ( nFGLevels nCells ) 0 o z fg - -
+var persistent real    rh_fg ( nFGLevels nCells ) 0 o rh fg - -
+var persistent real    soilz_fg ( nCells ) 0 o soilz fg - -
+var persistent real    psfc_fg ( nCells ) 0 o psfc fg - -
+var persistent real    pmsl_fg ( nCells ) 0 o pmsl fg - -
+
 # Prognostic variables: read from input, saved in restart, and written to output
 var persistent real    u ( nVertLevels nEdges Time ) 2 io u state - -
 var persistent real    w ( nVertLevelsP1 nCells Time ) 2 io w state - -

Added: branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_llxy.F
===================================================================
--- branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_llxy.F                                (rev 0)
+++ branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_llxy.F        2010-11-12 00:14:40 UTC (rev 608)
@@ -0,0 +1,2226 @@
+MODULE llxy
+
+! Module that defines constants, data structures, and
+! subroutines used to convert grid indices to lat/lon
+! and vice versa.   
+!
+! SUPPORTED PROJECTIONS
+! ---------------------
+! Cylindrical Lat/Lon (code = PROJ_LATLON)
+! Mercator (code = PROJ_MERC)
+! Lambert Conformal (code = PROJ_LC)
+! Gaussian (code = PROJ_GAUSS)
+! Polar Stereographic (code = PROJ_PS)
+! Rotated Lat/Lon (code = PROJ_ROTLL)
+!
+! REMARKS
+! -------
+! The routines contained within were adapted from routines
+! obtained from NCEP's w3 library.  The original NCEP routines were less
+! flexible (e.g., polar-stereo routines only supported truelat of 60N/60S)
+! than what we needed, so modifications based on equations in Hoke, Hayes, and
+! Renninger (AFGWC/TN/79-003) were added to improve the flexibility.  
+! Additionally, coding was improved to F90 standards and the routines were
+! combined into this module.  
+!
+! ASSUMPTIONS
+! -----------
+!  Grid Definition:
+!    For mercator, lambert conformal, and polar-stereographic projections,
+!    the routines within assume the following:
+!
+!       1.  Grid is dimensioned (i,j) where i is the East-West direction,
+!           positive toward the east, and j is the north-south direction,
+!           positive toward the north.
+!       2.  Origin is at (1,1) and is located at the southwest corner,
+!           regardless of hemispere.
+!       3.  Grid spacing (dx) is always positive.
+!       4.  Values of true latitudes must be positive for NH domains
+!           and negative for SH domains.
+!
+!     For the latlon and Gaussian projection, the grid origin may be at any
+!     of the corners, and the deltalat and deltalon values can be signed to
+!     account for this using the following convention:
+!       Origin Location        Deltalat Sign      Deltalon Sign
+!       ---------------        -------------      -------------
+!        SW Corner                  +                   +
+!        NE Corner                  -                   -
+!        NW Corner                  -                   +
+!        SE Corner                  +                   -
+!
+!  Data Definitions:
+!       1. Any arguments that are a latitude value are expressed in
+!          degrees north with a valid range of -90 -&gt; 90
+!       2. Any arguments that are a longitude value are expressed in
+!          degrees east with a valid range of -180 -&gt; 180.
+!       3. Distances are in meters and are always positive.
+!       4. The standard longitude (stdlon) is defined as the longitude
+!          line which is parallel to the grid's y-axis (j-direction), along
+!          which latitude increases (NOT the absolute value of latitude, but
+!          the actual latitude, such that latitude increases continuously
+!          from the south pole to the north pole) as j increases.
+!       5. One true latitude value is required for polar-stereographic and
+!          mercator projections, and defines at which latitude the
+!          grid spacing is true.  For lambert conformal, two true latitude
+!          values must be specified, but may be set equal to each other to
+!          specify a tangent projection instead of a secant projection.
+!
+! USAGE
+! -----
+! To use the routines in this module, the calling routines must have the
+! following statement at the beginning of its declaration block:
+!   USE map_utils
+!
+! The use of the module not only provides access to the necessary routines,
+! but also defines a structure of TYPE (proj_info) that can be used
+! to declare a variable of the same type to hold your map projection
+! information.  It also defines some integer parameters that contain
+! the projection codes so one only has to use those variable names rather
+! than remembering the acutal code when using them.  The basic steps are
+! as follows:
+!
+!   1.  Ensure the &quot;USE map_utils&quot; is in your declarations.
+!   2.  Declare the projection information structure as type(proj_info):
+!         TYPE(proj_info) :: proj
+!   3.  Populate your structure by calling the map_set routine:
+!         CALL map_set(code,lat1,lon1,knowni,knownj,dx,stdlon,truelat1,truelat2,proj)
+!       where:
+!         code (input) = one of PROJ_LATLON, PROJ_MERC, PROJ_LC, PROJ_PS,
+!                        PROJ_GAUSS, or PROJ_ROTLL
+!         lat1 (input) = Latitude of grid origin point (i,j)=(1,1)
+!                         (see assumptions!)
+!         lon1 (input) = Longitude of grid origin
+!         knowni (input) = origin point, x-location
+!         knownj (input) = origin point, y-location
+!         dx (input) = grid spacing in meters (ignored for LATLON projections)
+!         stdlon (input) = Standard longitude for PROJ_PS and PROJ_LC,
+!               deltalon (see assumptions) for PROJ_LATLON,
+!               ignored for PROJ_MERC
+!         truelat1 (input) = 1st true latitude for PROJ_PS, PROJ_LC, and
+!                PROJ_MERC, deltalat (see assumptions) for PROJ_LATLON
+!         truelat2 (input) = 2nd true latitude for PROJ_LC,
+!                ignored for all others.
+!         proj (output) = The structure of type (proj_info) that will be fully
+!                populated after this call
+!
+!   4.  Now that the proj structure is populated, you may call either
+!       of the following routines:
+!
+!       latlon_to_ij(proj, lat, lon, i, j)
+!       ij_to_latlon(proj, i, j, lat, lon)
+!
+!       It is incumbent upon the calling routine to determine whether or
+!       not the values returned are within your domain's bounds.  All values
+!       of i, j, lat, and lon are REAL values.
+!
+!
+! REFERENCES
+! ----------
+!  Hoke, Hayes, and Renninger, &quot;Map Preojections and Grid Systems for
+!       Meteorological Applications.&quot; AFGWC/TN-79/003(Rev), Air Weather
+!       Service, 1985.
+!
+!  NCAR MM5v3 Modeling System, REGRIDDER program, module_first_guess_map.F
+!  NCEP routines w3fb06, w3fb07, w3fb08, w3fb09, w3fb11, w3fb12
+!
+! HISTORY
+! -------
+! 27 Mar 2001 - Original Version
+!               Brent L. Shaw, NOAA/FSL (CSU/CIRA)
+!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+   INTEGER, PARAMETER :: HH=4, VV=5
+
+   REAL (KIND=4), PARAMETER :: PI = 3.141592653589793
+
+   REAL (KIND=4), PARAMETER :: DEG_PER_RAD = 180./PI
+   REAL (KIND=4), PARAMETER :: RAD_PER_DEG = PI/180.
+
+   REAL (KIND=4), PARAMETER :: A_WGS84  = 6378137.
+   REAL (KIND=4), PARAMETER :: B_WGS84  = 6356752.314
+   REAL (KIND=4), PARAMETER :: RE_WGS84 = A_WGS84
+   REAL (KIND=4), PARAMETER :: E_WGS84  = 0.081819192
+
+   REAL (KIND=4), PARAMETER :: A_NAD83  = 6378137.
+   REAL (KIND=4), PARAMETER :: RE_NAD83 = A_NAD83
+   REAL (KIND=4), PARAMETER :: E_NAD83  = 0.0818187034
+
+   REAL (KIND=4), PARAMETER :: EARTH_RADIUS_M = 6370000.
+   REAL (KIND=4), PARAMETER :: EARTH_CIRC_M = 2.*PI*EARTH_RADIUS_M
+
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_LATLON = 0
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_LC = 1
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_PS = 2
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_PS_WGS84 = 102
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_MERC = 3
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_GAUSS = 4
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_CYL = 5
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_CASSINI = 6
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_ALBERS_NAD83 = 105
+   INTEGER, PUBLIC, PARAMETER  :: PROJ_ROTLL = 203
+
+   ! Define some private constants
+   INTEGER, PRIVATE, PARAMETER :: HIGH = 8

+   TYPE proj_info

+      INTEGER          :: code     ! Integer code for projection TYPE
+      INTEGER          :: nlat     ! For Gaussian -- number of latitude points 
+                                   !  north of the equator 
+      INTEGER          :: nlon     !
+                                   !
+      INTEGER          :: ixdim    ! For Rotated Lat/Lon -- number of mass points
+                                   !  in an odd row
+      INTEGER          :: jydim    ! For Rotated Lat/Lon -- number of rows
+      INTEGER          :: stagger  ! For Rotated Lat/Lon -- mass or velocity grid 
+      REAL (KIND=4)             :: phi      ! For Rotated Lat/Lon -- domain half-extent in 
+                                   !  degrees latitude
+      REAL (KIND=4)             :: lambda   ! For Rotated Lat/Lon -- domain half-extend in
+                                   !  degrees longitude
+      REAL (KIND=4)             :: lat1     ! SW latitude (1,1) in degrees (-90-&gt;90N)
+      REAL (KIND=4)             :: lon1     ! SW longitude (1,1) in degrees (-180-&gt;180E)
+      REAL (KIND=4)             :: lat0     ! For Cassini, latitude of projection pole
+      REAL (KIND=4)             :: lon0     ! For Cassini, longitude of projection pole
+      REAL (KIND=4)             :: dx       ! Grid spacing in meters at truelats, used
+                                   !  only for ps, lc, and merc projections
+      REAL (KIND=4)             :: dy       ! Grid spacing in meters at truelats, used
+                                   !  only for ps, lc, and merc projections
+      REAL (KIND=4)             :: latinc   ! Latitude increment for cylindrical lat/lon
+      REAL (KIND=4)             :: loninc   ! Longitude increment for cylindrical lat/lon
+                                   !  also the lon increment for Gaussian grid
+      REAL (KIND=4)             :: dlat     ! Lat increment for lat/lon grids
+      REAL (KIND=4)             :: dlon     ! Lon increment for lat/lon grids
+      REAL (KIND=4)             :: stdlon   ! Longitude parallel to y-axis (-180-&gt;180E)
+      REAL (KIND=4)             :: truelat1 ! First true latitude (all projections)
+      REAL (KIND=4)             :: truelat2 ! Second true lat (LC only)
+      REAL (KIND=4)             :: hemi     ! 1 for NH, -1 for SH
+      REAL (KIND=4)             :: cone     ! Cone factor for LC projections
+      REAL (KIND=4)             :: polei    ! Computed i-location of pole point
+      REAL (KIND=4)             :: polej    ! Computed j-location of pole point
+      REAL (KIND=4)             :: rsw      ! Computed radius to SW corner
+      REAL (KIND=4)             :: rebydx   ! Earth radius divided by dx
+      REAL (KIND=4)             :: knowni   ! X-location of known lat/lon
+      REAL (KIND=4)             :: knownj   ! Y-location of known lat/lon
+      REAL (KIND=4)             :: re_m     ! Radius of spherical earth, meters
+      REAL (KIND=4)             :: rho0     ! For Albers equal area
+      REAL (KIND=4)             :: nc       ! For Albers equal area
+      REAL (KIND=4)             :: bigc     ! For Albers equal area
+      LOGICAL          :: init     ! Flag to indicate if this struct is 
+                                   !  ready for use
+      LOGICAL          :: wrap     ! For Gaussian -- flag to indicate wrapping 
+                                   !  around globe?
+      REAL (KIND=4), POINTER, DIMENSION(:) :: gauss_lat  ! Latitude array for Gaussian grid

+   END TYPE proj_info
+
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+ CONTAINS
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

+   SUBROUTINE map_init(proj)
+      ! Initializes the map projection structure to missing values
+  
+      IMPLICIT NONE
+      TYPE(proj_info), INTENT(INOUT)  :: proj
+  
+      proj%lat1     = -999.9
+      proj%lon1     = -999.9
+      proj%lat0     = -999.9
+      proj%lon0     = -999.9
+      proj%dx       = -999.9
+      proj%dy       = -999.9
+      proj%latinc   = -999.9
+      proj%loninc   = -999.9
+      proj%stdlon   = -999.9
+      proj%truelat1 = -999.9
+      proj%truelat2 = -999.9
+      proj%phi      = -999.9
+      proj%lambda   = -999.9
+      proj%ixdim    = -999
+      proj%jydim    = -999
+      proj%stagger  = HH
+      proj%nlat     = 0
+      proj%nlon     = 0
+      proj%hemi     = 0.0
+      proj%cone     = -999.9
+      proj%polei    = -999.9
+      proj%polej    = -999.9
+      proj%rsw      = -999.9
+      proj%knowni   = -999.9
+      proj%knownj   = -999.9
+      proj%re_m     = EARTH_RADIUS_M
+      proj%init     = .FALSE.
+      proj%wrap     = .FALSE.
+      proj%rho0     = 0.
+      proj%nc       = 0.
+      proj%bigc     = 0.
+      nullify(proj%gauss_lat)
+   
+   END SUBROUTINE map_init
+
+
+   SUBROUTINE map_set(proj_code, proj, lat1, lon1, lat0, lon0, knowni, knownj, dx, latinc, &amp;
+                      loninc, stdlon, truelat1, truelat2, nlat, nlon, ixdim, jydim, &amp;
+                      stagger, phi, lambda, r_earth)
+      ! Given a partially filled proj_info structure, this routine computes
+      ! polei, polej, rsw, and cone (if LC projection) to complete the 
+      ! structure.  This allows us to eliminate redundant calculations when
+      ! calling the coordinate conversion routines multiple times for the
+      ! same map.
+      ! This will generally be the first routine called when a user wants
+      ! to be able to use the coordinate conversion routines, and it
+      ! will call the appropriate subroutines based on the 
+      ! proj%code which indicates which projection type this is.
+  
+      IMPLICIT NONE
+      
+      ! Declare arguments
+      INTEGER, INTENT(IN)               :: proj_code
+      INTEGER, INTENT(IN), OPTIONAL     :: nlat
+      INTEGER, INTENT(IN), OPTIONAL     :: nlon
+      INTEGER, INTENT(IN), OPTIONAL     :: ixdim
+      INTEGER, INTENT(IN), OPTIONAL     :: jydim
+      INTEGER, INTENT(IN), OPTIONAL     :: stagger
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: latinc
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: loninc
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: lat1
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: lon1
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: lat0
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: lon0
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: dx
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: stdlon
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: truelat1
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: truelat2
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: knowni
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: knownj
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: phi
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: lambda
+      REAL (KIND=4), INTENT(IN), OPTIONAL        :: r_earth
+      TYPE(proj_info), INTENT(OUT)      :: proj
+
+      INTEGER :: iter
+      REAL (KIND=4) :: dummy_lon1
+      REAL (KIND=4) :: dummy_lon0
+      REAL (KIND=4) :: dummy_stdlon
+  
+      ! First, verify that mandatory parameters are present for the specified proj_code
+      IF ( proj_code == PROJ_LC ) THEN
+         IF ( .NOT.PRESENT(truelat1) .OR. &amp;
+              .NOT.PRESENT(truelat2) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) .OR. &amp;
+              .NOT.PRESENT(knowni) .OR. &amp;
+              .NOT.PRESENT(knownj) .OR. &amp;
+              .NOT.PRESENT(stdlon) .OR. &amp;
+              .NOT.PRESENT(dx) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' truelat1, truelat2, lat1, lon1, knowni, knownj, stdlon, dx'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_PS ) THEN
+         IF ( .NOT.PRESENT(truelat1) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) .OR. &amp;
+              .NOT.PRESENT(knowni) .OR. &amp;
+              .NOT.PRESENT(knownj) .OR. &amp;
+              .NOT.PRESENT(stdlon) .OR. &amp;
+              .NOT.PRESENT(dx) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' truelat1, lat1, lon1, knonwi, knownj, stdlon, dx'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_PS_WGS84 ) THEN
+         IF ( .NOT.PRESENT(truelat1) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) .OR. &amp;
+              .NOT.PRESENT(knowni) .OR. &amp;
+              .NOT.PRESENT(knownj) .OR. &amp;
+              .NOT.PRESENT(stdlon) .OR. &amp;
+              .NOT.PRESENT(dx) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' truelat1, lat1, lon1, knonwi, knownj, stdlon, dx'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_ALBERS_NAD83 ) THEN
+         IF ( .NOT.PRESENT(truelat1) .OR. &amp;
+              .NOT.PRESENT(truelat2) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) .OR. &amp;
+              .NOT.PRESENT(knowni) .OR. &amp;
+              .NOT.PRESENT(knownj) .OR. &amp;
+              .NOT.PRESENT(stdlon) .OR. &amp;
+              .NOT.PRESENT(dx) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' truelat1, truelat2, lat1, lon1, knonwi, knownj, stdlon, dx'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_MERC ) THEN
+         IF ( .NOT.PRESENT(truelat1) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) .OR. &amp;
+              .NOT.PRESENT(knowni) .OR. &amp;
+              .NOT.PRESENT(knownj) .OR. &amp;
+              .NOT.PRESENT(dx) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' truelat1, lat1, lon1, knowni, knownj, dx'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_LATLON ) THEN
+         IF ( .NOT.PRESENT(latinc) .OR. &amp;
+              .NOT.PRESENT(loninc) .OR. &amp;
+              .NOT.PRESENT(knowni) .OR. &amp;
+              .NOT.PRESENT(knownj) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' latinc, loninc, knowni, knownj, lat1, lon1'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_CYL ) THEN
+         IF ( .NOT.PRESENT(latinc) .OR. &amp;
+              .NOT.PRESENT(loninc) .OR. &amp;
+              .NOT.PRESENT(stdlon) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' latinc, loninc, stdlon'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_CASSINI ) THEN
+         IF ( .NOT.PRESENT(latinc) .OR. &amp;
+              .NOT.PRESENT(loninc) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) .OR. &amp;
+              .NOT.PRESENT(lat0) .OR. &amp;
+              .NOT.PRESENT(lon0) .OR. &amp;
+              .NOT.PRESENT(knowni) .OR. &amp;
+              .NOT.PRESENT(knownj) .OR. &amp;
+              .NOT.PRESENT(stdlon) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' latinc, loninc, lat1, lon1, knowni, knownj, lat0, lon0, stdlon'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_GAUSS ) THEN
+         IF ( .NOT.PRESENT(nlat) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) .OR. &amp;
+              .NOT.PRESENT(loninc) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' nlat, lat1, lon1, loninc'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE IF ( proj_code == PROJ_ROTLL ) THEN
+         IF ( .NOT.PRESENT(ixdim) .OR. &amp;
+              .NOT.PRESENT(jydim) .OR. &amp;
+              .NOT.PRESENT(phi) .OR. &amp;
+              .NOT.PRESENT(lambda) .OR. &amp;
+              .NOT.PRESENT(lat1) .OR. &amp;
+              .NOT.PRESENT(lon1) .OR. &amp;
+              .NOT.PRESENT(stagger) ) THEN
+            PRINT '(A,I2)', 'The following are mandatory parameters for projection code : ', proj_code
+            PRINT '(A)', ' ixdim, jydim, phi, lambda, lat1, lon1, stagger'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         END IF
+      ELSE
+         PRINT '(A,I2)', 'Unknown projection code: ', proj_code
+         CALL llxy_error_fatal ( 'MAP_INIT' )
+      END IF
+  
+      ! Check for validity of mandatory variables in proj
+      IF ( PRESENT(lat1) ) THEN
+         IF ( ABS(lat1) .GT. 90. ) THEN
+            PRINT '(A)', 'Latitude of origin corner required as follows:'
+            PRINT '(A)', '    -90N &lt;= lat1 &lt; = 90.N'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         ENDIF
+      ENDIF
+  
+      IF ( PRESENT(lon1) ) THEN
+         dummy_lon1 = lon1
+         IF ( ABS(dummy_lon1) .GT. 180.) THEN
+            iter = 0 
+            DO WHILE (ABS(dummy_lon1) &gt; 180. .AND. iter &lt; 10)
+               IF (dummy_lon1 &lt; -180.) dummy_lon1 = dummy_lon1 + 360.
+               IF (dummy_lon1 &gt; 180.) dummy_lon1 = dummy_lon1 - 360.
+               iter = iter + 1
+            END DO
+            IF (abs(dummy_lon1) &gt; 180.) THEN
+               PRINT '(A)', 'Longitude of origin required as follows:'
+               PRINT '(A)', '   -180E &lt;= lon1 &lt;= 180W'
+               CALL llxy_error_fatal ( 'MAP_INIT' )
+            ENDIF
+         ENDIF
+      ENDIF
+  
+      IF ( PRESENT(lon0) ) THEN
+         dummy_lon0 = lon0
+         IF ( ABS(dummy_lon0) .GT. 180.) THEN
+            iter = 0 
+            DO WHILE (ABS(dummy_lon0) &gt; 180. .AND. iter &lt; 10)
+               IF (dummy_lon0 &lt; -180.) dummy_lon0 = dummy_lon0 + 360.
+               IF (dummy_lon0 &gt; 180.) dummy_lon0 = dummy_lon0 - 360.
+               iter = iter + 1
+            END DO
+            IF (abs(dummy_lon0) &gt; 180.) THEN
+               PRINT '(A)', 'Longitude of pole required as follows:'
+               PRINT '(A)', '   -180E &lt;= lon0 &lt;= 180W'
+               CALL llxy_error_fatal ( 'MAP_INIT' )
+            ENDIF
+         ENDIF
+      ENDIF
+  
+      IF ( PRESENT(dx) ) THEN
+         IF ((dx .LE. 0.).AND.(proj_code .NE. PROJ_LATLON)) THEN
+            PRINT '(A)', 'Require grid spacing (dx) in meters be positive'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         ENDIF
+      ENDIF
+  
+      IF ( PRESENT(stdlon) ) THEN
+         dummy_stdlon = stdlon
+         IF ((ABS(dummy_stdlon) &gt; 180.).AND.(proj_code /= PROJ_MERC)) THEN
+            iter = 0 
+            DO WHILE (ABS(dummy_stdlon) &gt; 180. .AND. iter &lt; 10)
+               IF (dummy_stdlon &lt; -180.) dummy_stdlon = dummy_stdlon + 360.
+               IF (dummy_stdlon &gt; 180.) dummy_stdlon = dummy_stdlon - 360.
+               iter = iter + 1
+            END DO
+            IF (abs(dummy_stdlon) &gt; 180.) THEN
+               PRINT '(A)', 'Need orientation longitude (stdlon) as: '
+               PRINT '(A)', '   -180E &lt;= stdlon &lt;= 180W' 
+               CALL llxy_error_fatal ( 'MAP_INIT' )
+            ENDIF
+         ENDIF
+      ENDIF
+  
+      IF ( PRESENT(truelat1) ) THEN
+         IF (ABS(truelat1).GT.90.) THEN
+            PRINT '(A)', 'Set true latitude 1 for all projections'
+            CALL llxy_error_fatal ( 'MAP_INIT' )
+         ENDIF
+      ENDIF
+     
+      CALL map_init(proj) 
+      proj%code  = proj_code
+      IF ( PRESENT(lat1) )     proj%lat1     = lat1
+      IF ( PRESENT(lon1) )     proj%lon1     = dummy_lon1
+      IF ( PRESENT(lat0) )     proj%lat0     = lat0
+      IF ( PRESENT(lon0) )     proj%lon0     = dummy_lon0
+      IF ( PRESENT(latinc) )   proj%latinc   = latinc
+      IF ( PRESENT(loninc) )   proj%loninc   = loninc
+      IF ( PRESENT(knowni) )   proj%knowni   = knowni
+      IF ( PRESENT(knownj) )   proj%knownj   = knownj
+      IF ( PRESENT(dx) )       proj%dx       = dx
+      IF ( PRESENT(stdlon) )   proj%stdlon   = dummy_stdlon
+      IF ( PRESENT(truelat1) ) proj%truelat1 = truelat1
+      IF ( PRESENT(truelat2) ) proj%truelat2 = truelat2
+      IF ( PRESENT(nlat) )     proj%nlat     = nlat
+      IF ( PRESENT(nlon) )     proj%nlon     = nlon
+      IF ( PRESENT(ixdim) )    proj%ixdim    = ixdim
+      IF ( PRESENT(jydim) )    proj%jydim    = jydim
+      IF ( PRESENT(stagger) )  proj%stagger  = stagger
+      IF ( PRESENT(phi) )      proj%phi      = phi
+      IF ( PRESENT(lambda) )   proj%lambda   = lambda
+      IF ( PRESENT(r_earth) )  proj%re_m     = r_earth
+  
+      IF ( PRESENT(dx) ) THEN 
+         IF ( (proj_code == PROJ_LC) .OR. (proj_code == PROJ_PS) .OR. &amp;
+              (proj_code == PROJ_PS_WGS84) .OR. (proj_code == PROJ_ALBERS_NAD83) .OR. &amp;
+              (proj_code == PROJ_MERC) ) THEN
+            proj%dx = dx
+            IF (truelat1 .LT. 0.) THEN
+               proj%hemi = -1.0 
+            ELSE
+               proj%hemi = 1.0
+            ENDIF
+            proj%rebydx = proj%re_m / dx
+         ENDIF
+      ENDIF
+
+      pick_proj: SELECT CASE(proj%code)
+  
+         CASE(PROJ_PS)
+            CALL set_ps(proj)
+
+         CASE(PROJ_PS_WGS84)
+            CALL set_ps_wgs84(proj)
+
+         CASE(PROJ_ALBERS_NAD83)
+            CALL set_albers_nad83(proj)
+   
+         CASE(PROJ_LC)
+            IF (ABS(proj%truelat2) .GT. 90.) THEN
+               proj%truelat2=proj%truelat1
+            ENDIF
+            CALL set_lc(proj)
+      
+         CASE (PROJ_MERC)
+            CALL set_merc(proj)
+      
+         CASE (PROJ_LATLON)
+   
+         CASE (PROJ_GAUSS)
+            CALL set_gauss(proj)
+      
+         CASE (PROJ_CYL)
+            CALL set_cyl(proj)
+      
+         CASE (PROJ_CASSINI)
+            CALL set_cassini(proj)
+      
+         CASE (PROJ_ROTLL)
+     
+      END SELECT pick_proj
+      proj%init = .TRUE.
+
+      RETURN
+
+   END SUBROUTINE map_set
+
+
+   SUBROUTINE latlon_to_ij(proj, lat, lon, i, j)
+      ! Converts input lat/lon values to the cartesian (i,j) value
+      ! for the given projection. 
+  
+      IMPLICIT NONE
+      TYPE(proj_info), INTENT(IN)          :: proj
+      REAL (KIND=4), INTENT(IN)                     :: lat
+      REAL (KIND=4), INTENT(IN)                     :: lon
+      REAL (KIND=4), INTENT(OUT)                    :: i
+      REAL (KIND=4), INTENT(OUT)                    :: j
+  
+      IF (.NOT.proj%init) THEN
+         PRINT '(A)', 'You have not called map_set for this projection'
+         CALL llxy_error_fatal ( 'LATLON_TO_IJ' )
+      ENDIF
+  
+      SELECT CASE(proj%code)
+   
+         CASE(PROJ_LATLON)
+            CALL llij_latlon(lat,lon,proj,i,j)
+   
+         CASE(PROJ_MERC)
+            CALL llij_merc(lat,lon,proj,i,j)
+   
+         CASE(PROJ_PS)
+            CALL llij_ps(lat,lon,proj,i,j)
+
+         CASE(PROJ_PS_WGS84)
+            CALL llij_ps_wgs84(lat,lon,proj,i,j)
+         
+         CASE(PROJ_ALBERS_NAD83)
+            CALL llij_albers_nad83(lat,lon,proj,i,j)
+         
+         CASE(PROJ_LC)
+            CALL llij_lc(lat,lon,proj,i,j)
+   
+         CASE(PROJ_GAUSS)
+            CALL llij_gauss(lat,lon,proj,i,j)
+   
+         CASE(PROJ_CYL)
+            CALL llij_cyl(lat,lon,proj,i,j)
+
+         CASE(PROJ_CASSINI)
+            CALL llij_cassini(lat,lon,proj,i,j)
+
+         CASE(PROJ_ROTLL)
+            CALL llij_rotlatlon(lat,lon,proj,i,j)
+   
+         CASE DEFAULT
+            PRINT '(A,I2)', 'Unrecognized map projection code: ', proj%code
+            CALL llxy_error_fatal ( 'LATLON_TO_IJ' )
+    
+      END SELECT
+
+      RETURN
+
+   END SUBROUTINE latlon_to_ij
+
+
+   SUBROUTINE ij_to_latlon(proj, i, j, lat, lon)
+      ! Computes geographical latitude and longitude for a given (i,j) point
+      ! in a grid with a projection of proj
+  
+      IMPLICIT NONE
+      TYPE(proj_info),INTENT(IN)          :: proj
+      REAL (KIND=4), INTENT(IN)                    :: i
+      REAL (KIND=4), INTENT(IN)                    :: j
+      REAL (KIND=4), INTENT(OUT)                   :: lat
+      REAL (KIND=4), INTENT(OUT)                   :: lon
+  
+      IF (.NOT.proj%init) THEN
+         PRINT '(A)', 'You have not called map_set for this projection'
+         CALL llxy_error_fatal ( 'IJ_TO_LATLON' )
+      ENDIF
+      SELECT CASE (proj%code)
+  
+         CASE (PROJ_LATLON)
+            CALL ijll_latlon(i, j, proj, lat, lon)
+   
+         CASE (PROJ_MERC)
+            CALL ijll_merc(i, j, proj, lat, lon)
+   
+         CASE (PROJ_PS)
+            CALL ijll_ps(i, j, proj, lat, lon)
+
+         CASE (PROJ_PS_WGS84)
+            CALL ijll_ps_wgs84(i, j, proj, lat, lon)
+   
+         CASE (PROJ_ALBERS_NAD83)
+            CALL ijll_albers_nad83(i, j, proj, lat, lon)
+   
+         CASE (PROJ_LC)
+            CALL ijll_lc(i, j, proj, lat, lon)
+   
+         CASE (PROJ_CYL)
+            CALL ijll_cyl(i, j, proj, lat, lon)
+   
+         CASE (PROJ_CASSINI)
+            CALL ijll_cassini(i, j, proj, lat, lon)
+   
+         CASE (PROJ_ROTLL)
+            CALL ijll_rotlatlon(i, j, proj, lat, lon)
+   
+         CASE DEFAULT
+            PRINT '(A,I2)', 'Unrecognized map projection code: ', proj%code
+            CALL llxy_error_fatal ( 'IJ_TO_LATLON' )
+  
+      END SELECT
+      RETURN
+   END SUBROUTINE ij_to_latlon
+
+
+   SUBROUTINE set_ps(proj)
+      ! Initializes a polar-stereographic map projection from the partially
+      ! filled proj structure. This routine computes the radius to the
+      ! southwest corner and computes the i/j location of the pole for use
+      ! in llij_ps and ijll_ps.
+      IMPLICIT NONE
+   
+      ! Declare args
+      TYPE(proj_info), INTENT(INOUT)    :: proj
+  
+      ! Local vars
+      REAL (KIND=4)                              :: ala1
+      REAL (KIND=4)                              :: alo1
+      REAL (KIND=4)                              :: reflon
+      REAL (KIND=4)                              :: scale_top
+  
+      ! Executable code
+      reflon = proj%stdlon + 90.
+  
+      ! Compute numerator term of map scale factor
+      scale_top = 1. + proj%hemi * SIN(proj%truelat1 * rad_per_deg)
+  
+      ! Compute radius to lower-left (SW) corner
+      ala1 = proj%lat1 * rad_per_deg
+      proj%rsw = proj%rebydx*COS(ala1)*scale_top/(1.+proj%hemi*SIN(ala1))
+  
+      ! Find the pole point
+      alo1 = (proj%lon1 - reflon) * rad_per_deg
+      proj%polei = proj%knowni - proj%rsw * COS(alo1)
+      proj%polej = proj%knownj - proj%hemi * proj%rsw * SIN(alo1)
+
+      RETURN
+
+   END SUBROUTINE set_ps
+
+
+   SUBROUTINE llij_ps(lat,lon,proj,i,j)
+      ! Given latitude (-90 to 90), longitude (-180 to 180), and the
+      ! standard polar-stereographic projection information via the 
+      ! public proj structure, this routine returns the i/j indices which
+      ! if within the domain range from 1-&gt;nx and 1-&gt;ny, respectively.
+  
+      IMPLICIT NONE
+  
+      ! Delcare input arguments
+      REAL (KIND=4), INTENT(IN)               :: lat
+      REAL (KIND=4), INTENT(IN)               :: lon
+      TYPE(proj_info),INTENT(IN)     :: proj
+  
+      ! Declare output arguments     
+      REAL (KIND=4), INTENT(OUT)              :: i !(x-index)
+      REAL (KIND=4), INTENT(OUT)              :: j !(y-index)
+  
+      ! Declare local variables
+      
+      REAL (KIND=4)                           :: reflon
+      REAL (KIND=4)                           :: scale_top
+      REAL (KIND=4)                           :: ala
+      REAL (KIND=4)                           :: alo
+      REAL (KIND=4)                           :: rm
+  
+      ! BEGIN CODE
+    
+      reflon = proj%stdlon + 90.
+     
+      ! Compute numerator term of map scale factor
+  
+      scale_top = 1. + proj%hemi * SIN(proj%truelat1 * rad_per_deg)
+  
+      ! Find radius to desired point
+      ala = lat * rad_per_deg
+      rm = proj%rebydx * COS(ala) * scale_top/(1. + proj%hemi *SIN(ala))
+      alo = (lon - reflon) * rad_per_deg
+      i = proj%polei + rm * COS(alo)
+      j = proj%polej + proj%hemi * rm * SIN(alo)
+   
+      RETURN
+
+   END SUBROUTINE llij_ps
+
+
+   SUBROUTINE ijll_ps(i, j, proj, lat, lon)

+      ! This is the inverse subroutine of llij_ps.  It returns the 
+      ! latitude and longitude of an i/j point given the projection info 
+      ! structure.  
+  
+      IMPLICIT NONE
+  
+      ! Declare input arguments
+      REAL (KIND=4), INTENT(IN)                    :: i    ! Column
+      REAL (KIND=4), INTENT(IN)                    :: j    ! Row
+      TYPE (proj_info), INTENT(IN)        :: proj
+      
+      ! Declare output arguments
+      REAL (KIND=4), INTENT(OUT)                   :: lat     ! -90 -&gt; 90 north
+      REAL (KIND=4), INTENT(OUT)                   :: lon     ! -180 -&gt; 180 East
+  
+      ! Local variables
+      REAL (KIND=4)                                :: reflon
+      REAL (KIND=4)                                :: scale_top
+      REAL (KIND=4)                                :: xx,yy
+      REAL (KIND=4)                                :: gi2, r2
+      REAL (KIND=4)                                :: arccos
+  
+      ! Begin Code
+  
+      ! Compute the reference longitude by rotating 90 degrees to the east
+      ! to find the longitude line parallel to the positive x-axis.
+      reflon = proj%stdlon + 90.
+     
+      ! Compute numerator term of map scale factor
+      scale_top = 1. + proj%hemi * SIN(proj%truelat1 * rad_per_deg)
+  
+      ! Compute radius to point of interest
+      xx = i - proj%polei
+      yy = (j - proj%polej) * proj%hemi
+      r2 = xx**2 + yy**2
+  
+      ! Now the magic code
+      IF (r2 .EQ. 0.) THEN 
+         lat = proj%hemi * 90.
+         lon = reflon
+      ELSE
+         gi2 = (proj%rebydx * scale_top)**2.
+         lat = deg_per_rad * proj%hemi * ASIN((gi2-r2)/(gi2+r2))
+         arccos = ACOS(xx/SQRT(r2))
+         IF (yy .GT. 0) THEN
+            lon = reflon + deg_per_rad * arccos
+         ELSE
+            lon = reflon - deg_per_rad * arccos
+         ENDIF
+      ENDIF
+    
+      ! Convert to a -180 -&gt; 180 East convention
+      IF (lon .GT. 180.) lon = lon - 360.
+      IF (lon .LT. -180.) lon = lon + 360.
+
+      RETURN
+   
+   END SUBROUTINE ijll_ps
+
+
+   SUBROUTINE set_ps_wgs84(proj)
+      ! Initializes a polar-stereographic map projection (WGS84 ellipsoid) 
+      ! from the partially filled proj structure. This routine computes the 
+      ! radius to the southwest corner and computes the i/j location of the 
+      ! pole for use in llij_ps and ijll_ps.
+
+      IMPLICIT NONE
+   
+      ! Arguments
+      TYPE(proj_info), INTENT(INOUT)    :: proj
+  
+      ! Local variables
+      REAL (KIND=4) :: h, mc, tc, t, rho
+
+      h = proj%hemi
+
+      mc = cos(h*proj%truelat1*rad_per_deg)/sqrt(1.0-(E_WGS84*sin(h*proj%truelat1*rad_per_deg))**2.0)
+      tc = sqrt(((1.0-sin(h*proj%truelat1*rad_per_deg))/(1.0+sin(h*proj%truelat1*rad_per_deg)))* &amp;
+                (((1.0+E_WGS84*sin(h*proj%truelat1*rad_per_deg))/(1.0-E_WGS84*sin(h*proj%truelat1*rad_per_deg)))**E_WGS84 ))
+
+      ! Find the i/j location of reference lat/lon with respect to the pole of the projection
+      t = sqrt(((1.0-sin(h*proj%lat1*rad_per_deg))/(1.0+sin(h*proj%lat1*rad_per_deg)))* &amp;
+               (((1.0+E_WGS84*sin(h*proj%lat1*rad_per_deg))/(1.0-E_WGS84*sin(h*proj%lat1*rad_per_deg)) )**E_WGS84 ) )
+      rho = h * (A_WGS84 / proj%dx) * mc * t / tc
+      proj%polei = rho * sin((h*proj%lon1 - h*proj%stdlon)*rad_per_deg)
+      proj%polej = -rho * cos((h*proj%lon1 - h*proj%stdlon)*rad_per_deg)
+
+      RETURN
+
+   END SUBROUTINE set_ps_wgs84
+
+
+   SUBROUTINE llij_ps_wgs84(lat,lon,proj,i,j)
+      ! Given latitude (-90 to 90), longitude (-180 to 180), and the
+      ! standard polar-stereographic projection information via the 
+      ! public proj structure, this routine returns the i/j indices which
+      ! if within the domain range from 1-&gt;nx and 1-&gt;ny, respectively.
+  
+      IMPLICIT NONE
+  
+      ! Arguments
+      REAL (KIND=4), INTENT(IN)               :: lat
+      REAL (KIND=4), INTENT(IN)               :: lon
+      REAL (KIND=4), INTENT(OUT)              :: i !(x-index)
+      REAL (KIND=4), INTENT(OUT)              :: j !(y-index)
+      TYPE(proj_info),INTENT(IN)     :: proj
+  
+      ! Local variables
+      REAL (KIND=4) :: h, mc, tc, t, rho
+
+      h = proj%hemi
+
+      mc = cos(h*proj%truelat1*rad_per_deg)/sqrt(1.0-(E_WGS84*sin(h*proj%truelat1*rad_per_deg))**2.0)
+      tc = sqrt(((1.0-sin(h*proj%truelat1*rad_per_deg))/(1.0+sin(h*proj%truelat1*rad_per_deg)))* &amp;
+                (((1.0+E_WGS84*sin(h*proj%truelat1*rad_per_deg))/(1.0-E_WGS84*sin(h*proj%truelat1*rad_per_deg)))**E_WGS84 ))
+
+      t = sqrt(((1.0-sin(h*lat*rad_per_deg))/(1.0+sin(h*lat*rad_per_deg))) * &amp;
+               (((1.0+E_WGS84*sin(h*lat*rad_per_deg))/(1.0-E_WGS84*sin(h*lat*rad_per_deg)))**E_WGS84))
+
+      ! Find the x/y location of the requested lat/lon with respect to the pole of the projection
+      rho = (A_WGS84 / proj%dx) * mc * t / tc
+      i = h *  rho * sin((h*lon - h*proj%stdlon)*rad_per_deg)
+      j = h *(-rho)* cos((h*lon - h*proj%stdlon)*rad_per_deg)
+
+      ! Get i/j relative to reference i/j
+      i = proj%knowni + (i - proj%polei)
+      j = proj%knownj + (j - proj%polej)
+  
+      RETURN
+
+   END SUBROUTINE llij_ps_wgs84
+
+
+   SUBROUTINE ijll_ps_wgs84(i, j, proj, lat, lon)

+      ! This is the inverse subroutine of llij_ps.  It returns the 
+      ! latitude and longitude of an i/j point given the projection info 
+      ! structure.  
+  
+      implicit none
+  
+      ! Arguments
+      REAL (KIND=4), INTENT(IN)                    :: i    ! Column
+      REAL (KIND=4), INTENT(IN)                    :: j    ! Row
+      REAL (KIND=4), INTENT(OUT)                   :: lat     ! -90 -&gt; 90 north
+      REAL (KIND=4), INTENT(OUT)                   :: lon     ! -180 -&gt; 180 East
+      TYPE (proj_info), INTENT(IN)        :: proj
+
+      ! Local variables
+      REAL (KIND=4) :: h, mc, tc, t, rho, x, y
+      REAL (KIND=4) :: chi, a, b, c, d
+
+      h = proj%hemi
+      x = (i - proj%knowni + proj%polei)
+      y = (j - proj%knownj + proj%polej)
+
+      mc = cos(h*proj%truelat1*rad_per_deg)/sqrt(1.0-(E_WGS84*sin(h*proj%truelat1*rad_per_deg))**2.0)
+      tc = sqrt(((1.0-sin(h*proj%truelat1*rad_per_deg))/(1.0+sin(h*proj%truelat1*rad_per_deg))) * &amp;
+                (((1.0+E_WGS84*sin(h*proj%truelat1*rad_per_deg))/(1.0-E_WGS84*sin(h*proj%truelat1*rad_per_deg)))**E_WGS84 ))
+
+      rho = sqrt((x*proj%dx)**2.0 + (y*proj%dx)**2.0)
+      t = rho * tc / (A_WGS84 * mc) 
+
+      lon = h*proj%stdlon + h*atan2(h*x,h*(-y))
+
+      chi = PI/2.0-2.0*atan(t)
+      a = 1./2.*E_WGS84**2. + 5./24.*E_WGS84**4. +  1./40.*E_WGS84**6.  +    73./2016.*E_WGS84**8.
+      b =                     7./24.*E_WGS84**4. + 29./120.*E_WGS84**6. + 54113./40320.*E_WGS84**8.
+      c =                                           7./30.*E_WGS84**6.  +    81./280.*E_WGS84**8.
+      d =                                                                  4279./20160.*E_WGS84**8.
+
+      lat = chi + sin(2.*chi)*(a + cos(2.*chi)*(b + cos(2.*chi)*(c + d*cos(2.*chi))))
+      lat = h * lat
+
+      lat = lat*deg_per_rad
+      lon = lon*deg_per_rad
+
+      RETURN
+   
+   END SUBROUTINE ijll_ps_wgs84
+
+
+   SUBROUTINE set_albers_nad83(proj)
+      ! Initializes an Albers equal area map projection (NAD83 ellipsoid) 
+      ! from the partially filled proj structure. This routine computes the 
+      ! radius to the southwest corner and computes the i/j location of the 
+      ! pole for use in llij_albers_nad83 and ijll_albers_nad83.
+
+      IMPLICIT NONE
+   
+      ! Arguments
+      TYPE(proj_info), INTENT(INOUT)    :: proj
+  
+      ! Local variables
+      REAL (KIND=4) :: h, m1, m2, q1, q2, theta, q, sinphi
+
+      h = proj%hemi
+
+      m1 = cos(h*proj%truelat1*rad_per_deg)/sqrt(1.0-(E_NAD83*sin(h*proj%truelat1*rad_per_deg))**2.0)
+      m2 = cos(h*proj%truelat2*rad_per_deg)/sqrt(1.0-(E_NAD83*sin(h*proj%truelat2*rad_per_deg))**2.0)
+
+      sinphi = sin(proj%truelat1*rad_per_deg)
+      q1 = (1.0-E_NAD83**2.0) * &amp;
+           ((sinphi/(1.0-(E_NAD83*sinphi)**2.0)) - 1.0/(2.0*E_NAD83) * log((1.0-E_NAD83*sinphi)/(1.0+E_NAD83*sinphi)))
+
+      sinphi = sin(proj%truelat2*rad_per_deg)
+      q2 = (1.0-E_NAD83**2.0) * &amp;
+           ((sinphi/(1.0-(E_NAD83*sinphi)**2.0)) - 1.0/(2.0*E_NAD83) * log((1.0-E_NAD83*sinphi)/(1.0+E_NAD83*sinphi)))
+
+      if (proj%truelat1 == proj%truelat2) then
+         proj%nc = sin(proj%truelat1*rad_per_deg)
+      else
+         proj%nc = (m1**2.0 - m2**2.0) / (q2 - q1)
+      end if
+
+      proj%bigc = m1**2.0 + proj%nc*q1
+
+      ! Find the i/j location of reference lat/lon with respect to the pole of the projection
+      sinphi = sin(proj%lat1*rad_per_deg)
+      q = (1.0-E_NAD83**2.0) * &amp;
+           ((sinphi/(1.0-(E_NAD83*sinphi)**2.0)) - 1.0/(2.0*E_NAD83) * log((1.0-E_NAD83*sinphi)/(1.0+E_NAD83*sinphi)))
+
+      proj%rho0 = h * (A_NAD83 / proj%dx) * sqrt(proj%bigc - proj%nc * q) / proj%nc 
+      theta = proj%nc*(proj%lon1 - proj%stdlon)*rad_per_deg
+
+      proj%polei = proj%rho0 * sin(h*theta) 
+      proj%polej = proj%rho0 - proj%rho0 * cos(h*theta)
+
+      RETURN
+
+   END SUBROUTINE set_albers_nad83
+
+
+   SUBROUTINE llij_albers_nad83(lat,lon,proj,i,j)
+      ! Given latitude (-90 to 90), longitude (-180 to 180), and the
+      ! standard projection information via the 
+      ! public proj structure, this routine returns the i/j indices which
+      ! if within the domain range from 1-&gt;nx and 1-&gt;ny, respectively.
+  
+      IMPLICIT NONE
+  
+      ! Arguments
+      REAL (KIND=4), INTENT(IN)               :: lat
+      REAL (KIND=4), INTENT(IN)               :: lon
+      REAL (KIND=4), INTENT(OUT)              :: i !(x-index)
+      REAL (KIND=4), INTENT(OUT)              :: j !(y-index)
+      TYPE(proj_info),INTENT(IN)     :: proj
+  
+      ! Local variables
+      REAL (KIND=4) :: h, q, rho, theta, sinphi
+
+      h = proj%hemi
+
+      sinphi = sin(h*lat*rad_per_deg)
+
+      ! Find the x/y location of the requested lat/lon with respect to the pole of the projection
+      q = (1.0-E_NAD83**2.0) * &amp;
+           ((sinphi/(1.0-(E_NAD83*sinphi)**2.0)) - 1.0/(2.0*E_NAD83) * log((1.0-E_NAD83*sinphi)/(1.0+E_NAD83*sinphi)))
+
+      rho = h * (A_NAD83 / proj%dx) * sqrt(proj%bigc - proj%nc * q) / proj%nc
+      theta = proj%nc * (h*lon - h*proj%stdlon)*rad_per_deg
+
+      i = h*rho*sin(theta)
+      j = h*proj%rho0 - h*rho*cos(theta)
+
+      ! Get i/j relative to reference i/j
+      i = proj%knowni + (i - proj%polei)
+      j = proj%knownj + (j - proj%polej)
+
+      RETURN
+
+   END SUBROUTINE llij_albers_nad83
+
+
+   SUBROUTINE ijll_albers_nad83(i, j, proj, lat, lon)

+      ! This is the inverse subroutine of llij_albers_nad83.  It returns the 
+      ! latitude and longitude of an i/j point given the projection info 
+      ! structure.  
+  
+      implicit none
+  
+      ! Arguments
+      REAL (KIND=4), INTENT(IN)                    :: i    ! Column
+      REAL (KIND=4), INTENT(IN)                    :: j    ! Row
+      REAL (KIND=4), INTENT(OUT)                   :: lat     ! -90 -&gt; 90 north
+      REAL (KIND=4), INTENT(OUT)                   :: lon     ! -180 -&gt; 180 East
+      TYPE (proj_info), INTENT(IN)        :: proj
+
+      ! Local variables
+      REAL (KIND=4) :: h, q, rho, theta, beta, x, y
+      REAL (KIND=4) :: a, b, c
+
+      h = proj%hemi
+
+      x = (i - proj%knowni + proj%polei)
+      y = (j - proj%knownj + proj%polej)
+
+      rho = sqrt(x**2.0 + (proj%rho0 - y)**2.0)
+      theta = atan2(x, proj%rho0-y)
+
+      q = (proj%bigc - (rho*proj%nc*proj%dx/A_NAD83)**2.0) / proj%nc
+
+      beta = asin(q/(1.0 - log((1.0-E_NAD83)/(1.0+E_NAD83))*(1.0-E_NAD83**2.0)/(2.0*E_NAD83)))
+      a = 1./3.*E_NAD83**2. + 31./180.*E_NAD83**4. + 517./5040.*E_NAD83**6.
+      b =                     23./360.*E_NAD83**4. + 251./3780.*E_NAD83**6.
+      c =                                            761./45360.*E_NAD83**6.
+
+      lat = beta + a*sin(2.*beta) + b*sin(4.*beta) + c*sin(6.*beta)
+
+      lat = h*lat*deg_per_rad
+      lon = proj%stdlon + theta*deg_per_rad/proj%nc
+
+      RETURN
+   
+   END SUBROUTINE ijll_albers_nad83
+
+
+   SUBROUTINE set_lc(proj)
+      ! Initialize the remaining items in the proj structure for a
+      ! lambert conformal grid.
+  
+      IMPLICIT NONE
+      
+      TYPE(proj_info), INTENT(INOUT)     :: proj
+  
+      REAL (KIND=4)                               :: arg
+      REAL (KIND=4)                               :: deltalon1
+      REAL (KIND=4)                               :: tl1r
+      REAL (KIND=4)                               :: ctl1r
+  
+      ! Compute cone factor
+      CALL lc_cone(proj%truelat1, proj%truelat2, proj%cone)
+  
+      ! Compute longitude differences and ensure we stay out of the
+      ! forbidden &quot;cut zone&quot;
+      deltalon1 = proj%lon1 - proj%stdlon
+      IF (deltalon1 .GT. +180.) deltalon1 = deltalon1 - 360.
+      IF (deltalon1 .LT. -180.) deltalon1 = deltalon1 + 360.
+  
+      ! Convert truelat1 to radian and compute COS for later use
+      tl1r = proj%truelat1 * rad_per_deg
+      ctl1r = COS(tl1r)
+  
+      ! Compute the radius to our known lower-left (SW) corner
+      proj%rsw = proj%rebydx * ctl1r/proj%cone * &amp;
+             (TAN((90.*proj%hemi-proj%lat1)*rad_per_deg/2.) / &amp;
+              TAN((90.*proj%hemi-proj%truelat1)*rad_per_deg/2.))**proj%cone
+  
+      ! Find pole point
+      arg = proj%cone*(deltalon1*rad_per_deg)
+      proj%polei = proj%hemi*proj%knowni - proj%hemi * proj%rsw * SIN(arg)
+      proj%polej = proj%hemi*proj%knownj + proj%rsw * COS(arg)  
+  
+      RETURN
+
+   END SUBROUTINE set_lc                             
+
+
+   SUBROUTINE lc_cone(truelat1, truelat2, cone)

+   ! Subroutine to compute the cone factor of a Lambert Conformal projection

+      IMPLICIT NONE
+      
+      ! Input Args
+      REAL (KIND=4), INTENT(IN)             :: truelat1  ! (-90 -&gt; 90 degrees N)
+      REAL (KIND=4), INTENT(IN)             :: truelat2  !   &quot;   &quot;  &quot;   &quot;     &quot;
+  
+      ! Output Args
+      REAL (KIND=4), INTENT(OUT)            :: cone
+  
+      ! Locals
+  
+      ! BEGIN CODE
+  
+      ! First, see if this is a secant or tangent projection.  For tangent
+      ! projections, truelat1 = truelat2 and the cone is tangent to the 
+      ! Earth's surface at this latitude.  For secant projections, the cone
+      ! intersects the Earth's surface at each of the distinctly different
+      ! latitudes
+      IF (ABS(truelat1-truelat2) .GT. 0.1) THEN
+         cone = ALOG10(COS(truelat1*rad_per_deg)) - &amp;
+                ALOG10(COS(truelat2*rad_per_deg))
+         cone = cone /(ALOG10(TAN((45.0 - ABS(truelat1)/2.0) * rad_per_deg)) - &amp;
+                ALOG10(TAN((45.0 - ABS(truelat2)/2.0) * rad_per_deg)))        
+      ELSE
+         cone = SIN(ABS(truelat1)*rad_per_deg )  
+      ENDIF
+
+      RETURN
+
+   END SUBROUTINE lc_cone
+
+
+   SUBROUTINE ijll_lc( i, j, proj, lat, lon)

+   ! Subroutine to convert from the (i,j) cartesian coordinate to the 
+   ! geographical latitude and longitude for a Lambert Conformal projection.

+   ! History:
+   ! 25 Jul 01: Corrected by B. Shaw, NOAA/FSL
+   ! 
+      IMPLICIT NONE
+  
+      ! Input Args
+      REAL (KIND=4), INTENT(IN)              :: i        ! Cartesian X coordinate
+      REAL (KIND=4), INTENT(IN)              :: j        ! Cartesian Y coordinate
+      TYPE(proj_info),INTENT(IN)    :: proj     ! Projection info structure
+  
+      ! Output Args                 
+      REAL (KIND=4), INTENT(OUT)             :: lat      ! Latitude (-90-&gt;90 deg N)
+      REAL (KIND=4), INTENT(OUT)             :: lon      ! Longitude (-180-&gt;180 E)
+  
+      ! Locals 
+      REAL (KIND=4)                          :: inew
+      REAL (KIND=4)                          :: jnew
+      REAL (KIND=4)                          :: r
+      REAL (KIND=4)                          :: chi,chi1,chi2
+      REAL (KIND=4)                          :: r2
+      REAL (KIND=4)                          :: xx
+      REAL (KIND=4)                          :: yy
+  
+      ! BEGIN CODE
+  
+      chi1 = (90. - proj%hemi*proj%truelat1)*rad_per_deg
+      chi2 = (90. - proj%hemi*proj%truelat2)*rad_per_deg
+  
+      ! See if we are in the southern hemispere and flip the indices
+      ! if we are. 
+      inew = proj%hemi * i
+      jnew = proj%hemi * j
+  
+      ! Compute radius**2 to i/j location
+      xx = inew - proj%polei
+      yy = proj%polej - jnew
+      r2 = (xx*xx + yy*yy)
+      r = SQRT(r2)/proj%rebydx
+     
+      ! Convert to lat/lon
+      IF (r2 .EQ. 0.) THEN
+         lat = proj%hemi * 90.
+         lon = proj%stdlon
+      ELSE
+         
+         ! Longitude
+         lon = proj%stdlon + deg_per_rad * ATAN2(proj%hemi*xx,yy)/proj%cone
+# if ( defined (G95) &amp;&amp; ( DA_CORE == 1 ) )
+         lon = DMOD(lon+360., 360.)
+# else
+         lon = AMOD(lon+360., 360.)
+# endif
+   
+         ! Latitude.  Latitude determined by solving an equation adapted 
+         ! from:
+         !  Maling, D.H., 1973: Coordinate Systems and Map Projections
+         ! Equations #20 in Appendix I.  
+           
+         IF (chi1 .EQ. chi2) THEN
+            chi = 2.0*ATAN( ( r/TAN(chi1) )**(1./proj%cone) * TAN(chi1*0.5) )
+         ELSE
+            chi = 2.0*ATAN( (r*proj%cone/SIN(chi1))**(1./proj%cone) * TAN(chi1*0.5)) 
+         ENDIF
+         lat = (90.0-chi*deg_per_rad)*proj%hemi
+  
+      ENDIF
+  
+      IF (lon .GT. +180.) lon = lon - 360.
+      IF (lon .LT. -180.) lon = lon + 360.

+      RETURN
+
+   END SUBROUTINE ijll_lc
+
+
+   SUBROUTINE llij_lc( lat, lon, proj, i, j)

+   ! Subroutine to compute the geographical latitude and longitude values
+   ! to the cartesian x/y on a Lambert Conformal projection.
+     
+      IMPLICIT NONE
+  
+      ! Input Args
+      REAL (KIND=4), INTENT(IN)              :: lat      ! Latitude (-90-&gt;90 deg N)
+      REAL (KIND=4), INTENT(IN)              :: lon      ! Longitude (-180-&gt;180 E)
+      TYPE(proj_info),INTENT(IN)      :: proj     ! Projection info structure
+  
+      ! Output Args                 
+      REAL (KIND=4), INTENT(OUT)             :: i        ! Cartesian X coordinate
+      REAL (KIND=4), INTENT(OUT)             :: j        ! Cartesian Y coordinate
+  
+      ! Locals 
+      REAL (KIND=4)                          :: arg
+      REAL (KIND=4)                          :: deltalon
+      REAL (KIND=4)                          :: tl1r
+      REAL (KIND=4)                          :: rm
+      REAL (KIND=4)                          :: ctl1r
+      
+  
+      ! BEGIN CODE
+      
+      ! Compute deltalon between known longitude and standard lon and ensure
+      ! it is not in the cut zone
+      deltalon = lon - proj%stdlon
+      IF (deltalon .GT. +180.) deltalon = deltalon - 360.
+      IF (deltalon .LT. -180.) deltalon = deltalon + 360.
+      
+      ! Convert truelat1 to radian and compute COS for later use
+      tl1r = proj%truelat1 * rad_per_deg
+      ctl1r = COS(tl1r)     
+     
+      ! Radius to desired point
+      rm = proj%rebydx * ctl1r/proj%cone * &amp;
+           (TAN((90.*proj%hemi-lat)*rad_per_deg/2.) / &amp;
+            TAN((90.*proj%hemi-proj%truelat1)*rad_per_deg/2.))**proj%cone
+  
+      arg = proj%cone*(deltalon*rad_per_deg)
+      i = proj%polei + proj%hemi * rm * SIN(arg)
+      j = proj%polej - rm * COS(arg)
+  
+      ! Finally, if we are in the southern hemisphere, flip the i/j
+      ! values to a coordinate system where (1,1) is the SW corner
+      ! (what we assume) which is different than the original NCEP
+      ! algorithms which used the NE corner as the origin in the 
+      ! southern hemisphere (left-hand vs. right-hand coordinate?)
+      i = proj%hemi * i  
+      j = proj%hemi * j
+
+      RETURN
+   END SUBROUTINE llij_lc
+
+
+   SUBROUTINE set_merc(proj)
+   
+      ! Sets up the remaining basic elements for the mercator projection
+  
+      IMPLICIT NONE
+      TYPE(proj_info), INTENT(INOUT)       :: proj
+      REAL (KIND=4)                                 :: clain
+  
+  
+      !  Preliminary variables
+  
+      clain = COS(rad_per_deg*proj%truelat1)
+      proj%dlon = proj%dx / (proj%re_m * clain)
+  
+      ! Compute distance from equator to origin, and store in the 
+      ! proj%rsw tag.
+  
+      proj%rsw = 0.
+      IF (proj%lat1 .NE. 0.) THEN
+         proj%rsw = (ALOG(TAN(0.5*((proj%lat1+90.)*rad_per_deg))))/proj%dlon
+      ENDIF
+
+      RETURN
+
+   END SUBROUTINE set_merc
+
+
+   SUBROUTINE llij_merc(lat, lon, proj, i, j)

+      ! Compute i/j coordinate from lat lon for mercator projection
+    
+      IMPLICIT NONE
+      REAL (KIND=4), INTENT(IN)              :: lat
+      REAL (KIND=4), INTENT(IN)              :: lon
+      TYPE(proj_info),INTENT(IN)    :: proj
+      REAL (KIND=4),INTENT(OUT)              :: i
+      REAL (KIND=4),INTENT(OUT)              :: j
+      REAL (KIND=4)                          :: deltalon
+  
+      deltalon = lon - proj%lon1
+      IF (deltalon .LT. -180.) deltalon = deltalon + 360.
+      IF (deltalon .GT. 180.) deltalon = deltalon - 360.
+      i = proj%knowni + (deltalon/(proj%dlon*deg_per_rad))
+      j = proj%knownj + (ALOG(TAN(0.5*((lat + 90.) * rad_per_deg)))) / &amp;
+             proj%dlon - proj%rsw
+  
+      RETURN
+
+   END SUBROUTINE llij_merc
+
+
+   SUBROUTINE ijll_merc(i, j, proj, lat, lon)

+      ! Compute the lat/lon from i/j for mercator projection
+  
+      IMPLICIT NONE
+      REAL (KIND=4),INTENT(IN)               :: i
+      REAL (KIND=4),INTENT(IN)               :: j    
+      TYPE(proj_info),INTENT(IN)    :: proj
+      REAL (KIND=4), INTENT(OUT)             :: lat
+      REAL (KIND=4), INTENT(OUT)             :: lon 
+  
+  
+      lat = 2.0*ATAN(EXP(proj%dlon*(proj%rsw + j-proj%knownj)))*deg_per_rad - 90.
+      lon = (i-proj%knowni)*proj%dlon*deg_per_rad + proj%lon1
+      IF (lon.GT.180.) lon = lon - 360.
+      IF (lon.LT.-180.) lon = lon + 360.
+      RETURN
+
+   END SUBROUTINE ijll_merc
+
+
+   SUBROUTINE llij_latlon(lat, lon, proj, i, j)
+  
+      ! Compute the i/j location of a lat/lon on a LATLON grid.
+      IMPLICIT NONE
+      REAL (KIND=4), INTENT(IN)             :: lat
+      REAL (KIND=4), INTENT(IN)             :: lon
+      TYPE(proj_info), INTENT(IN)  :: proj
+      REAL (KIND=4), INTENT(OUT)            :: i
+      REAL (KIND=4), INTENT(OUT)            :: j
+  
+      REAL (KIND=4)                         :: deltalat
+      REAL (KIND=4)                         :: deltalon
+  
+      ! Compute deltalat and deltalon as the difference between the input 
+      ! lat/lon and the origin lat/lon
+      deltalat = lat - proj%lat1
+      deltalon = lon - proj%lon1      
+      
+      ! Compute i/j
+      i = deltalon/proj%loninc
+      j = deltalat/proj%latinc
+
+      i = i + proj%knowni
+      j = j + proj%knownj
+  
+      RETURN
+
+   END SUBROUTINE llij_latlon
+
+
+   SUBROUTINE ijll_latlon(i, j, proj, lat, lon)
+  
+      ! Compute the lat/lon location of an i/j on a LATLON grid.
+      IMPLICIT NONE
+      REAL (KIND=4), INTENT(IN)             :: i
+      REAL (KIND=4), INTENT(IN)             :: j
+      TYPE(proj_info), INTENT(IN)  :: proj
+      REAL (KIND=4), INTENT(OUT)            :: lat
+      REAL (KIND=4), INTENT(OUT)            :: lon
+  
+      REAL (KIND=4)                         :: i_work, j_work
+      REAL (KIND=4)                         :: deltalat
+      REAL (KIND=4)                         :: deltalon
+  
+      i_work = i - proj%knowni
+      j_work = j - proj%knownj
+
+      ! Compute deltalat and deltalon 
+      deltalat = j_work*proj%latinc
+      deltalon = i_work*proj%loninc
+  
+      lat = proj%lat1 + deltalat
+      lon = proj%lon1 + deltalon
+  
+      RETURN
+
+   END SUBROUTINE ijll_latlon
+
+
+   SUBROUTINE set_cyl(proj)
+
+      implicit none
+
+      ! Arguments
+      type(proj_info), intent(inout) :: proj
+
+      proj%hemi = 1.0
+
+   END SUBROUTINE set_cyl
+
+
+   SUBROUTINE llij_cyl(lat, lon, proj, i, j)
+
+      implicit none
+    
+      ! Arguments
+      REAL (KIND=4), intent(in) :: lat, lon
+      REAL (KIND=4), intent(out) :: i, j
+      type(proj_info), intent(in) :: proj
+
+      ! Local variables
+      REAL (KIND=4) :: deltalat
+      REAL (KIND=4) :: deltalon
+
+      ! Compute deltalat and deltalon as the difference between the input
+      ! lat/lon and the origin lat/lon
+      deltalat = lat - proj%lat1
+!      deltalon = lon - proj%stdlon
+      deltalon = lon - proj%lon1
+
+      if (deltalon &lt;   0.) deltalon = deltalon + 360.
+      if (deltalon &gt; 360.) deltalon = deltalon - 360.
+
+      ! Compute i/j
+      i = deltalon/proj%loninc
+      j = deltalat/proj%latinc
+
+      if (i &lt;= 0.)              i = i + 360./proj%loninc
+      if (i &gt; 360./proj%loninc) i = i - 360./proj%loninc
+
+      i = i + proj%knowni
+      j = j + proj%knownj
+
+   END SUBROUTINE llij_cyl
+
+
+   SUBROUTINE ijll_cyl(i, j, proj, lat, lon)
+   
+      implicit none
+    
+      ! Arguments
+      REAL (KIND=4), intent(in) :: i, j
+      REAL (KIND=4), intent(out) :: lat, lon
+      type(proj_info), intent(in) :: proj
+
+      ! Local variables
+      REAL (KIND=4) :: deltalat
+      REAL (KIND=4) :: deltalon
+      REAL (KIND=4) :: i_work, j_work
+
+      i_work = i - proj%knowni 
+      j_work = j - proj%knownj
+
+      if (i_work &lt; 0.)              i_work = i_work + 360./proj%loninc
+      if (i_work &gt;= 360./proj%loninc) i_work = i_work - 360./proj%loninc
+
+      ! Compute deltalat and deltalon
+      deltalat = j_work*proj%latinc
+      deltalon = i_work*proj%loninc
+
+      lat = deltalat + proj%lat1
+!      lon = deltalon + proj%stdlon
+      lon = deltalon + proj%lon1
+
+      if (lon &lt; -180.) lon = lon + 360.
+      if (lon &gt;  180.) lon = lon - 360.
+
+   END SUBROUTINE ijll_cyl
+
+
+   SUBROUTINE set_cassini(proj)
+
+      implicit none
+
+      ! Arguments
+      type(proj_info), intent(inout) :: proj
+
+      ! Local variables
+      REAL (KIND=4) :: comp_lat, comp_lon
+      logical :: global_domain
+
+      proj%hemi = 1.0
+
+      ! Try to determine whether this domain has global coverage
+      if (abs(proj%lat1 - proj%latinc/2. + 90.) &lt; 0.001 .and. &amp;
+          abs(mod(proj%lon1 - proj%loninc/2. - proj%stdlon,360.)) &lt; 0.001) then
+         global_domain = .true.
+      else
+         global_domain = .false.
+      end if
+
+      if (abs(proj%lat0) /= 90. .and. .not.global_domain) then
+         call rotate_coords(proj%lat1,proj%lon1,comp_lat,comp_lon,proj%lat0,proj%lon0,proj%stdlon,-1)
+         proj%lat1 = comp_lat
+         proj%lon1 = comp_lon
+      end if
+
+   END SUBROUTINE set_cassini
+
+
+   SUBROUTINE llij_cassini(lat, lon, proj, i, j)
+
+      implicit none
+    
+      ! Arguments
+      REAL (KIND=4), intent(in) :: lat, lon
+      REAL (KIND=4), intent(out) :: i, j
+      type(proj_info), intent(in) :: proj
+
+      ! Local variables
+      REAL (KIND=4) :: comp_lat, comp_lon
+
+      ! Convert geographic to computational lat/lon
+      if (abs(proj%lat0) /= 90.) then
+         call rotate_coords(lat,lon,comp_lat,comp_lon,proj%lat0,proj%lon0,proj%stdlon,-1)
+      else
+         comp_lat = lat
+         comp_lon = lon
+      end if
+
+      ! Convert computational lat/lon to i/j
+      call llij_cyl(comp_lat, comp_lon, proj, i, j)
+
+   END SUBROUTINE llij_cassini
+
+
+   SUBROUTINE ijll_cassini(i, j, proj, lat, lon)
+   
+      implicit none
+    
+      ! Arguments
+      REAL (KIND=4), intent(in) :: i, j
+      REAL (KIND=4), intent(out) :: lat, lon
+      type(proj_info), intent(in) :: proj
+
+      ! Local variables
+      REAL (KIND=4) :: comp_lat, comp_lon
+
+      ! Convert i/j to computational lat/lon
+      call ijll_cyl(i, j, proj, comp_lat, comp_lon)
+
+      ! Convert computational to geographic lat/lon
+      if (abs(proj%lat0) /= 90.) then
+         call rotate_coords(comp_lat,comp_lon,lat,lon,proj%lat0,proj%lon0,proj%stdlon,1)
+      else
+         lat = comp_lat
+         lon = comp_lon
+      end if
+
+   END SUBROUTINE ijll_cassini
+
+
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
+   ! Purpose: Converts between computational and geographic lat/lon for Cassini
+   !          
+   ! Notes: This routine was provided by Bill Skamarock, 2007-03-27
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
+   SUBROUTINE rotate_coords(ilat,ilon,olat,olon,lat_np,lon_np,lon_0,direction)
+
+      IMPLICIT NONE
+
+      REAL (KIND=4), INTENT(IN   ) :: ilat, ilon
+      REAL (KIND=4), INTENT(  OUT) :: olat, olon
+      REAL (KIND=4), INTENT(IN   ) :: lat_np, lon_np, lon_0
+      INTEGER, INTENT(IN  ), OPTIONAL :: direction
+      ! &gt;=0, default : computational -&gt; geographical
+      ! &lt; 0          : geographical  -&gt; computational
+
+      REAL (KIND=4) :: rlat, rlon
+      REAL (KIND=4) :: phi_np, lam_np, lam_0, dlam
+      REAL (KIND=4) :: sinphi, cosphi, coslam, sinlam
+
+      ! Convert all angles to radians
+      phi_np = lat_np * rad_per_deg
+      lam_np = lon_np * rad_per_deg
+      lam_0  = lon_0  * rad_per_deg
+      rlat = ilat * rad_per_deg
+      rlon = ilon * rad_per_deg
+
+      IF (PRESENT(direction) .AND. (direction &lt; 0)) THEN
+         ! The equations are exactly the same except for one small difference
+         ! with respect to longitude ...
+         dlam = PI - lam_0
+      ELSE
+         dlam = lam_np
+      END IF
+      sinphi = COS(phi_np)*COS(rlat)*COS(rlon-dlam) + SIN(phi_np)*SIN(rlat)
+      cosphi = SQRT(1.-sinphi*sinphi)
+      coslam = SIN(phi_np)*COS(rlat)*COS(rlon-dlam) - COS(phi_np)*SIN(rlat)
+      sinlam = COS(rlat)*SIN(rlon-dlam)
+      IF ( cosphi /= 0. ) THEN
+         coslam = coslam/cosphi
+         sinlam = sinlam/cosphi
+      END IF
+      olat = deg_per_rad*ASIN(sinphi)
+      olon = deg_per_rad*(ATAN2(sinlam,coslam)-dlam-lam_0+lam_np)
+      ! Both of my F90 text books prefer the DO-EXIT form, and claim it is faster
+      ! when optimization is turned on (as we will always do...)
+      DO
+         IF (olon &gt;= -180.) EXIT
+         olon = olon + 360.
+      END DO
+      DO
+         IF (olon &lt;=  180.) EXIT
+         olon = olon - 360.
+      END DO
+
+   END SUBROUTINE rotate_coords
+
+
+   SUBROUTINE llij_rotlatlon(lat, lon, proj, i_real, j_real)
+   
+      IMPLICIT NONE
+    
+      ! Arguments
+      REAL (KIND=4), INTENT(IN) :: lat, lon
+      REAL (KIND=4)             :: i, j
+      REAL (KIND=4), INTENT(OUT) :: i_real, j_real
+      TYPE (proj_info), INTENT(IN) :: proj
+      
+      ! Local variables
+      INTEGER :: ii,imt,jj,jmt,k,krows,ncol,nrow,iri
+      REAL(KIND=HIGH) :: dphd,dlmd !Grid increments, degrees
+      REAL(KIND=HIGH) :: glatd  !Geographic latitude, positive north
+      REAL(KIND=HIGH) :: glond  !Geographic longitude, positive west
+      REAL(KIND=HIGH) :: col,d1,d2,d2r,dlm,dlm1,dlm2,dph,glat,glon,    &amp;
+                         pi,r2d,row,tlat,tlat1,tlat2,              &amp;
+                         tlon,tlon1,tlon2,tph0,tlm0,x,y,z
+
+      glatd = lat
+      glond = -lon
+  
+      dphd = proj%phi/REAL((proj%jydim-1)/2)
+      dlmd = proj%lambda/REAL(proj%ixdim-1)
+
+      pi = ACOS(-1.0)
+      d2r = pi/180.
+      r2d = 1./d2r
+  
+      imt = 2*proj%ixdim-1
+      jmt = proj%jydim/2+1
+
+      glat = glatd*d2r
+      glon = glond*d2r
+      dph = dphd*d2r
+      dlm = dlmd*d2r
+      tph0 = proj%lat1*d2r
+      tlm0 = -proj%lon1*d2r
+  
+      x = COS(tph0)*COS(glat)*COS(glon-tlm0)+SIN(tph0)*SIN(glat)
+      y = -COS(glat)*SIN(glon-tlm0)
+      z = COS(tph0)*SIN(glat)-SIN(tph0)*COS(glat)*COS(glon-tlm0)
+      tlat = r2d*ATAN(z/SQRT(x*x+y*y))
+      tlon = r2d*ATAN(y/x)
+
+      row = tlat/dphd+jmt
+      col = tlon/dlmd+proj%ixdim
+
+      if ( (row - INT(row)) .gt. 0.999) then
+         row = row + 0.0002
+      else if ( (col - INT(col)) .gt. 0.999) then
+         col = col + 0.0002
+      end if
+
+      nrow = INT(row)
+      ncol = INT(col)
+
+!      nrow = NINT(row)
+!      ncol = NINT(col)
+
+      tlat = tlat*d2r
+      tlon = tlon*d2r
+
+  
+      IF (proj%stagger == HH) THEN
+
+         IF (mod(nrow,2) .eq. 0) then
+            i_real = col / 2.0
+         ELSE
+            i_real = col / 2.0 + 0.5
+         ENDIF
+         j_real=row
+
+  
+         IF ((abs(MOD(nrow,2)) == 1 .AND. abs(MOD(ncol,2)) == 1) .OR. &amp;
+             (MOD(nrow,2) == 0 .AND. MOD(ncol,2) == 0)) THEN
+
+            tlat1 = (nrow-jmt)*dph
+            tlat2 = tlat1+dph
+            tlon1 = (ncol-proj%ixdim)*dlm
+            tlon2 = tlon1+dlm
+
+            dlm1 = tlon-tlon1
+            dlm2 = tlon-tlon2
+            d1 = ACOS(COS(tlat)*COS(tlat1)*COS(dlm1)+SIN(tlat)*SIN(tlat1))
+            d2 = ACOS(COS(tlat)*COS(tlat2)*COS(dlm2)+SIN(tlat)*SIN(tlat2))
+
+            IF (d1 &gt; d2) THEN
+               nrow = nrow+1
+               ncol = ncol+1
+            END IF
+   
+         ELSE
+            tlat1 = (nrow+1-jmt)*dph
+            tlat2 = tlat1-dph
+            tlon1 = (ncol-proj%ixdim)*dlm
+            tlon2 = tlon1+dlm
+            dlm1 = tlon-tlon1
+            dlm2 = tlon-tlon2
+            d1 = ACOS(COS(tlat)*COS(tlat1)*COS(dlm1)+SIN(tlat)*SIN(tlat1))
+            d2 = ACOS(COS(tlat)*COS(tlat2)*COS(dlm2)+SIN(tlat)*SIN(tlat2))
+
+            IF (d1 &lt; d2) THEN
+               nrow = nrow+1
+            ELSE
+               ncol = ncol+1
+            END IF
+         END IF
+  
+      ELSE IF (proj%stagger == VV) THEN
+
+         IF (mod(nrow,2) .eq. 0) then
+            i_real = col / 2.0 + 0.5
+         ELSE
+            i_real = col / 2.0 
+         ENDIF
+         j_real=row
+  
+         IF ((MOD(nrow,2) == 0 .AND. abs(MOD(ncol,2)) == 1) .OR. &amp;
+             (abs(MOD(nrow,2)) == 1 .AND. MOD(ncol,2) == 0)) THEN
+            tlat1 = (nrow-jmt)*dph
+            tlat2 = tlat1+dph
+            tlon1 = (ncol-proj%ixdim)*dlm
+            tlon2 = tlon1+dlm
+            dlm1 = tlon-tlon1
+            dlm2 = tlon-tlon2
+            d1 = ACOS(COS(tlat)*COS(tlat1)*COS(dlm1)+SIN(tlat)*SIN(tlat1))
+            d2 = ACOS(COS(tlat)*COS(tlat2)*COS(dlm2)+SIN(tlat)*SIN(tlat2))
+    
+            IF (d1 &gt; d2) THEN
+               nrow = nrow+1
+               ncol = ncol+1
+            END IF
+   
+         ELSE
+            tlat1 = (nrow+1-jmt)*dph
+            tlat2 = tlat1-dph
+            tlon1 = (ncol-proj%ixdim)*dlm
+            tlon2 = tlon1+dlm
+            dlm1 = tlon-tlon1
+            dlm2 = tlon-tlon2
+            d1 = ACOS(COS(tlat)*COS(tlat1)*COS(dlm1)+SIN(tlat)*SIN(tlat1))
+            d2 = ACOS(COS(tlat)*COS(tlat2)*COS(dlm2)+SIN(tlat)*SIN(tlat2))
+    
+            IF (d1 &lt; d2) THEN
+               nrow = nrow+1
+            ELSE
+               ncol = ncol+1
+            END IF
+         END IF
+      END IF
+  
+
+!!! Added next line as a Kludge - not yet understood why needed
+      if (ncol .le. 0) ncol=ncol-1
+
+      jj = nrow
+      ii = ncol/2
+
+      IF (proj%stagger == HH) THEN
+         IF (abs(MOD(jj,2)) == 1) ii = ii+1
+      ELSE IF (proj%stagger == VV) THEN
+         IF (MOD(jj,2) == 0) ii=ii+1
+      END IF
+
+      i = REAL(ii)
+      j = REAL(jj)
+
+   END SUBROUTINE llij_rotlatlon
+
+
+   SUBROUTINE ijll_rotlatlon(i, j, proj, lat,lon)
+   
+      IMPLICIT NONE
+    
+      ! Arguments
+      REAL (KIND=4), INTENT(IN) :: i, j
+      REAL (KIND=4), INTENT(OUT) :: lat, lon
+      TYPE (proj_info), INTENT(IN) :: proj
+      
+      ! Local variables
+      INTEGER :: ih,jh
+      INTEGER :: midcol,midrow,ncol,iadd1,iadd2,imt,jh2,knrow,krem,kv,nrow
+      REAL (KIND=4) :: i_work, j_work
+      REAL (KIND=4) :: dphd,dlmd !Grid increments, degrees
+      REAL(KIND=HIGH) :: arg1,arg2,d2r,fctr,glatr,glatd,glond,pi, &amp;
+              r2d,tlatd,tlond,tlatr,tlonr,tlm0,tph0
+      REAL (KIND=4) :: col
+
+      i_work = i
+      j_work = j
+  
+      if ( (j - INT(j)) .gt. 0.999) then
+         j_work = j + 0.0002
+      endif
+
+      jh = INT(j_work)
+  
+      dphd = proj%phi/REAL((proj%jydim-1)/2)
+      dlmd = proj%lambda/REAL(proj%ixdim-1)
+    
+      pi = ACOS(-1.0)
+      d2r = pi/180.
+      r2d = 1./d2r
+      tph0 = proj%lat1*d2r
+      tlm0 = -proj%lon1*d2r
+
+      midrow = (proj%jydim+1)/2
+      midcol = proj%ixdim
+
+      col = 2*i_work-1+abs(MOD(jh+1,2))
+      tlatd = (j_work-midrow)*dphd
+      tlond = (col-midcol)*dlmd
+
+       IF (proj%stagger == VV) THEN
+          if (mod(jh,2) .eq. 0) then
+             tlond = tlond - DLMD
+          else
+             tlond = tlond + DLMD
+          end if
+       END IF
+    
+      tlatr = tlatd*d2r
+      tlonr = tlond*d2r
+      arg1 = SIN(tlatr)*COS(tph0)+COS(tlatr)*SIN(tph0)*COS(tlonr)
+      glatr = ASIN(arg1)
+     
+      glatd = glatr*r2d
+     
+      arg2 = COS(tlatr)*COS(tlonr)/(COS(glatr)*COS(tph0))-TAN(glatr)*TAN(tph0)
+      IF (ABS(arg2) &gt; 1.) arg2 = ABS(arg2)/arg2
+      fctr = 1.
+      IF (tlond &gt; 0.) fctr = -1.
+     
+      glond = tlm0*r2d+fctr*ACOS(arg2)*r2d
+
+      lat = glatd
+      lon = -glond
+
+      IF (lon .GT. +180.) lon = lon - 360.
+      IF (lon .LT. -180.) lon = lon + 360.
+   
+   END SUBROUTINE ijll_rotlatlon
+
+
+   SUBROUTINE set_gauss(proj)
+    
+      IMPLICIT NONE

+      ! Argument
+      type (proj_info), intent(inout) :: proj

+      !  Initialize the array that will hold the Gaussian latitudes.

+      IF ( ASSOCIATED( proj%gauss_lat ) ) THEN
+         DEALLOCATE ( proj%gauss_lat )
+      END IF

+      !  Get the needed space for our array.

+      ALLOCATE ( proj%gauss_lat(proj%nlat*2) )

+      !  Compute the Gaussian latitudes.

+      CALL gausll( proj%nlat*2 , proj%gauss_lat )

+      !  Now, these could be upside down from what we want, so let's check.
+      !  We take advantage of the equatorial symmetry to remove any sort of
+      !  array re-ordering.

+      IF ( ABS(proj%gauss_lat(1) - proj%lat1) .GT. 0.01 ) THEN
+         proj%gauss_lat = -1. * proj%gauss_lat
+      END IF

+      !  Just a sanity check.

+      IF ( ABS(proj%gauss_lat(1) - proj%lat1) .GT. 0.01 ) THEN
+         PRINT '(A)','Oops, something is not right with the Gaussian latitude computation.'
+         PRINT '(A,F8.3,A)','The input data gave the starting latitude as ',proj%lat1,'.'
+         PRINT '(A,F8.3,A)','This routine computed the starting latitude as +-',ABS(proj%gauss_lat(1)),'.'
+         PRINT '(A,F8.3,A)','The difference is larger than 0.01 degrees, which is not expected.'
+         CALL llxy_error_fatal ( 'Gaussian_latitude_computation' )
+      END IF

+   END SUBROUTINE set_gauss
+
+
+   SUBROUTINE gausll ( nlat , lat_sp )

+      IMPLICIT NONE
+   
+      INTEGER                            :: nlat , i
+      REAL (KIND=HIGH) , PARAMETER       :: pi = 3.141592653589793
+      REAL (KIND=HIGH) , DIMENSION(nlat) :: cosc , gwt , sinc , colat , wos2 , lat
+      REAL (KIND=4)             , DIMENSION(nlat) :: lat_sp
+   
+      CALL lggaus(nlat, cosc, gwt, sinc, colat, wos2)
+   
+      DO i = 1, nlat
+         lat(i) = ACOS(sinc(i)) * 180._HIGH / pi
+         IF (i.gt.nlat/2) lat(i) = -lat(i)
+      END DO
+   
+      lat_sp = REAL(lat)

+   END SUBROUTINE gausll
+
+
+   SUBROUTINE lggaus( nlat, cosc, gwt, sinc, colat, wos2 )

+      IMPLICIT NONE

+      !  LGGAUS finds the Gaussian latitudes by finding the roots of the
+      !  ordinary Legendre polynomial of degree NLAT using Newton's
+      !  iteration method.
+      
+      !  On entry:
+            integer NLAT ! the number of latitudes (degree of the polynomial)
+      
+      !  On exit: for each Gaussian latitude
+      !     COSC   - cos(colatitude) or sin(latitude)
+      !     GWT    - the Gaussian weights
+      !     SINC   - sin(colatitude) or cos(latitude)
+      !     COLAT  - the colatitudes in radians
+      !     WOS2   - Gaussian weight over sin**2(colatitude)

+      REAL (KIND=HIGH) , DIMENSION(nlat) :: cosc , gwt , sinc , colat  , wos2 
+      REAL (KIND=HIGH) , PARAMETER       :: pi = 3.141592653589793

+      !  Convergence criterion for iteration of cos latitude

+      REAL (KIND=4) , PARAMETER :: xlim  = 1.0E-14

+      INTEGER :: nzero, i, j
+      REAL (KIND=HIGH) :: fi, fi1, a, b, g, gm, gp, gt, delta, c, d

+      !  The number of zeros between pole and equator

+      nzero = nlat/2

+      !  Set first guess for cos(colat)

+      DO i=1,nzero
+         cosc(i) = SIN( (i-0.5)*pi/nlat + pi*0.5 )
+      END DO

+      !  Constants for determining the derivative of the polynomial
+      fi  = nlat
+      fi1 = fi+1.0
+      a   = fi*fi1 / SQRT(4.0*fi1*fi1-1.0)
+      b   = fi1*fi / SQRT(4.0*fi*fi-1.0)

+      !  Loop over latitudes, iterating the search for each root

+      DO i=1,nzero
+         j=0

+         !  Determine the value of the ordinary Legendre polynomial for
+         !  the current guess root

+         DO
+            CALL lgord( g, cosc(i), nlat )
+   
+            !  Determine the derivative of the polynomial at this point
+   
+            CALL lgord( gm, cosc(i), nlat-1 )
+            CALL lgord( gp, cosc(i), nlat+1 )
+            gt = (cosc(i)*cosc(i)-1.0) / (a*gp-b*gm)
+   
+            !  Update the estimate of the root
+   
+            delta   = g*gt
+            cosc(i) = cosc(i) - delta
+   
+            !  If convergence criterion has not been met, keep trying
+   
+            j = j+1
+            IF( ABS(delta).GT.xlim ) CYCLE
+   
+            !  Determine the Gaussian weights
+   
+            c      = 2.0 *( 1.0-cosc(i)*cosc(i) )
+            CALL lgord( d, cosc(i), nlat-1 )
+            d      = d*d*fi*fi
+            gwt(i) = c *( fi-0.5 ) / d
+            EXIT

+         END DO

+      END DO

+      !  Determine the colatitudes and sin(colat) and weights over sin**2

+      DO i=1,nzero
+         colat(i)= ACOS(cosc(i))
+         sinc(i) = SIN(colat(i))
+         wos2(i) = gwt(i) /( sinc(i)*sinc(i) )
+      END DO

+      !  If NLAT is odd, set values at the equator

+      IF( MOD(nlat,2) .NE. 0 ) THEN
+         i       = nzero+1
+         cosc(i) = 0.0
+         c       = 2.0
+         CALL lgord( d, cosc(i), nlat-1 )
+         d       = d*d*fi*fi
+         gwt(i)  = c *( fi-0.5 ) / d
+         colat(i)= pi*0.5
+         sinc(i) = 1.0
+         wos2(i) = gwt(i)
+      END IF

+      !  Determine the southern hemisphere values by symmetry

+      DO i=nlat-nzero+1,nlat
+         cosc(i) =-cosc(nlat+1-i)
+         gwt(i)  = gwt(nlat+1-i)
+         colat(i)= pi-colat(nlat+1-i)
+         sinc(i) = sinc(nlat+1-i)
+         wos2(i) = wos2(nlat+1-i)
+      END DO

+   END SUBROUTINE lggaus
+
+
+   SUBROUTINE lgord( f, cosc, n )

+      IMPLICIT NONE

+      !  LGORD calculates the value of an ordinary Legendre polynomial at a
+      !  specific latitude.
+      
+      !  On entry:
+      !     cosc - COS(colatitude)
+      !     n      - the degree of the polynomial
+      
+      !  On exit:
+      !     f      - the value of the Legendre polynomial of degree N at
+      !              latitude ASIN(cosc)

+      REAL (KIND=HIGH) :: s1, c4, a, b, fk, f, cosc, colat, c1, fn, ang
+      INTEGER :: n, k

+      !  Determine the colatitude

+      colat = ACOS(cosc)

+      c1 = SQRT(2.0_HIGH)
+      DO k=1,n
+         c1 = c1 * SQRT( 1.0 - 1.0/(4*k*k) )
+      END DO

+      fn = n
+      ang= fn * colat
+      s1 = 0.0
+      c4 = 1.0
+      a  =-1.0
+      b  = 0.0
+      DO k=0,n,2
+         IF (k.eq.n) c4 = 0.5 * c4
+         s1 = s1 + c4 * COS(ang)
+         a  = a + 2.0
+         b  = b + 1.0
+         fk = k
+         ang= colat * (fn-fk-2.0)
+         c4 = ( a * (fn-b+1.0) / ( b * (fn+fn-a) ) ) * c4
+      END DO 

+      f = s1 * c1

+   END SUBROUTINE lgord
+
+
+   SUBROUTINE llij_gauss (lat, lon, proj, i, j) 

+      IMPLICIT NONE

+      REAL (KIND=4)    , INTENT(IN)  :: lat, lon
+      REAL (KIND=4)    , INTENT(OUT) :: i, j
+      TYPE (proj_info), INTENT(IN) :: proj

+      INTEGER :: n , n_low
+      LOGICAL :: found = .FALSE.
+      REAL (KIND=4)    :: diff_1 , diff_nlat

+      !  The easy one first, get the x location.  The calling routine has already made
+      !  sure that the necessary assumptions concerning the sign of the deltalon and the
+      !  relative east/west'ness of the longitude and the starting longitude are consistent
+      !  to allow this easy computation.

+      i = ( lon - proj%lon1 ) / proj%loninc + 1.

+      !  Since this is a global data set, we need to be concerned about wrapping the
+      !  fields around the globe.

+!      IF      ( ( proj%loninc .GT. 0 ) .AND. &amp;
+!                ( FLOOR((lon-proj%lon1)/proj%loninc) + 1 .GE. proj%ixdim ) .AND. &amp;
+!                ( lon + proj%loninc .GE. proj%lon1 + 360 ) ) THEN
+!! BUG: We may need to set proj%wrap, but proj is intent(in)
+!! WHAT IS THIS USED FOR?
+!!        proj%wrap = .TRUE.
+!         i = proj%ixdim
+!      ELSE IF ( ( proj%loninc .LT. 0 ) .AND. &amp;
+!                ( FLOOR((lon-proj%lon1)/proj%loninc) + 1 .GE. proj%ixdim ) .AND. &amp;
+!                ( lon + proj%loninc .LE. proj%lon1 - 360 ) ) THEN
+! ! BUG: We may need to set proj%wrap, but proj is intent(in)
+! ! WHAT IS THIS USED FOR?
+! !        proj%wrap = .TRUE.
+!         i = proj%ixdim
+!      END IF

+      !  Yet another quicky test, can we find bounding values?  If not, then we may be
+      !  dealing with putting data to a polar projection, so just give them them maximal
+      !  value for the location.  This is an OK assumption for the interpolation across the
+      !  top of the pole, given how close the longitude lines are.

+      IF ( ABS(lat) .GT. ABS(proj%gauss_lat(1)) ) THEN

+         diff_1    = lat - proj%gauss_lat(1)
+         diff_nlat = lat - proj%gauss_lat(proj%nlat*2)

+         IF ( ABS(diff_1) .LT. ABS(diff_nlat) ) THEN
+            j = 1
+         ELSE
+            j = proj%nlat*2
+         END IF

+      !  If the latitude is between the two bounding values, we have to search and interpolate.

+      ELSE

+         DO n = 1 , proj%nlat*2 -1
+            IF ( ( proj%gauss_lat(n) - lat ) * ( proj%gauss_lat(n+1) - lat ) .LE. 0 ) THEN
+               found = .TRUE.
+               n_low = n
+               EXIT
+            END IF
+         END DO

+         !  Everything still OK?
+  
+         IF ( .NOT. found ) THEN
+            PRINT '(A)','Troubles in river city.  No bounding values of latitude found in the Gaussian routines.'
+            CALL llxy_error_fatal ( 'Gee_no_bounding_lats_Gaussian' )
+         END IF

+         j = ( ( proj%gauss_lat(n_low) - lat                     ) * ( n_low + 1 ) + &amp;
+               ( lat                   - proj%gauss_lat(n_low+1) ) * ( n_low     ) ) / &amp;
+               ( proj%gauss_lat(n_low) - proj%gauss_lat(n_low+1) )

+      END IF
+
+   END SUBROUTINE llij_gauss 
+
+
+   SUBROUTINE llxy_error_fatal(mesg)
+
+      IMPLICIT NONE
+
+      CHARACTER (LEN=*), INTENT(IN) :: mesg
+
+      WRITE(0,*) trim(mesg)
+      STOP
+
+   END SUBROUTINE llxy_error_fatal
+  
+END MODULE llxy

Added: branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_read_met.F
===================================================================
--- branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_read_met.F                                (rev 0)
+++ branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_read_met.F        2010-11-12 00:14:40 UTC (rev 608)
@@ -0,0 +1,409 @@
+module read_met
+
+   integer, parameter :: MAX_FILENAME_LEN = 1024
+
+   real (kind=4), parameter :: EARTH_RADIUS_M = 6370000.   ! same as MM5 system
+
+   ! Projection codes for proj_info structure:
+   INTEGER, PRIVATE, PARAMETER  :: PROJ_LATLON = 0
+   INTEGER, PRIVATE, PARAMETER  :: PROJ_LC = 1
+   INTEGER, PRIVATE, PARAMETER  :: PROJ_PS = 2
+   INTEGER, PRIVATE, PARAMETER  :: PROJ_MERC = 3
+   INTEGER, PRIVATE, PARAMETER  :: PROJ_GAUSS = 4
+
+
+   ! Derived types
+   type met_data
+      integer                       :: version, nx, ny, iproj
+      real (kind=4)                 :: xfcst, xlvl, startlat, startlon, starti, startj, &amp;
+                                       deltalat, deltalon, dx, dy, xlonc, &amp;
+                                       truelat1, truelat2, earth_radius
+      real (kind=4), pointer, dimension(:,:) :: slab
+      logical                       :: is_wind_grid_rel
+      character (len=9)             :: field
+      character (len=24)            :: hdate
+      character (len=25)            :: units
+      character (len=32)            :: map_source
+      character (len=46)            :: desc
+   end type met_data
+
+
+   ! State variables?
+   integer :: input_unit
+   character (len=MAX_FILENAME_LEN) :: filename

+   contains

+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   ! Name: read_met_init
+   !
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   subroutine read_met_init(fg_source, source_is_constant, datestr, istatus)

+      implicit none
+  
+      ! Arguments
+      integer, intent(out) :: istatus
+      logical, intent(in) :: source_is_constant
+      character (len=*), intent(in) :: fg_source
+      character (len=*), intent(in) :: datestr
+  
+      ! Local variables
+      integer :: io_status
+      logical :: is_used
+
+      istatus = 0
+    
+      !  1) BUILD FILENAME BASED ON TIME 
+      filename = ' '
+      if (.not. source_is_constant) then 
+         write(filename, '(a)') trim(fg_source)//':'//trim(datestr)
+      else
+         write(filename, '(a)') trim(fg_source)
+      end if
+  
+      !  2) OPEN FILE
+      do input_unit=10,100
+         inquire(unit=input_unit, opened=is_used)
+         if (.not. is_used) exit
+      end do 
+      if (input_unit &gt; 100) write(0,*) 'Error: In read_met_init(), couldn''t find an available Fortran unit.'
+      open(unit=input_unit, file=trim(filename), status='old', form='unformatted', iostat=io_status)
+
+      if (io_status &gt; 0) istatus = 1
+
+      return
+  

+   end subroutine read_met_init


+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   ! Name: read_next_met_field
+   !
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   subroutine read_next_met_field(fg_data, istatus)

+      implicit none
+  
+      ! Arguments
+      type (met_data), intent(inout) :: fg_data
+      integer, intent(out) :: istatus
+  
+      ! Local variables
+      character (len=8) :: startloc
+  
+      istatus = 1
+  
+      !  1) READ FORMAT VERSION
+      read(unit=input_unit,err=1001,end=1001) fg_data % version
+  
+      ! PREGRID
+      if (fg_data % version == 3) then
+
+         read(unit=input_unit) fg_data % hdate, &amp;
+                               fg_data % xfcst, &amp;
+                               fg_data % field, &amp;
+                               fg_data % units, &amp;
+                               fg_data % desc,  &amp;
+                               fg_data % xlvl,  &amp;
+                               fg_data % nx,    &amp;
+                               fg_data % ny,    &amp;
+                               fg_data % iproj
+
+         fg_data % map_source = ' '
+
+         if (fg_data % field == 'HGT      ') fg_data % field = 'GHT      '
+
+         fg_data % starti = 1.0
+         fg_data % startj = 1.0
+     
+         ! Cylindrical equidistant
+         if (fg_data % iproj == 0) then
+            fg_data % iproj = PROJ_LATLON
+            read(unit=input_unit,err=1001,end=1001) fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % deltalat, &amp;
+                                                    fg_data % deltalon
+     
+         ! Mercator
+         else if (fg_data % iproj == 1) then
+            fg_data % iproj = PROJ_MERC
+            read(unit=input_unit,err=1001,end=1001) fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % truelat1
+     
+         ! Lambert conformal
+         else if (fg_data % iproj == 3) then
+            fg_data % iproj = PROJ_LC
+            read(unit=input_unit,err=1001,end=1001) fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % xlonc,    &amp;
+                                                    fg_data % truelat1, &amp;
+                                                    fg_data % truelat2
+     
+         ! Polar stereographic
+         else if (fg_data % iproj == 5) then
+            fg_data % iproj = PROJ_PS
+            read(unit=input_unit,err=1001,end=1001) fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % xlonc,    &amp;
+                                                    fg_data % truelat1
+
+         ! ?????????
+         else
+            write(0,*) 'Error: Unrecognized projection code ',fg_data % iproj,' when reading from '//trim(filename)
+     
+         end if
+     
+         fg_data % earth_radius = EARTH_RADIUS_M / 1000.
+
+#if (defined _GEOGRID) || (defined _METGRID)
+         fg_data % dx = fg_data % dx * 1000.
+         fg_data % dy = fg_data % dy * 1000.
+
+         if (fg_data % xlonc    &gt; 180.) fg_data % xlonc    = fg_data%xlonc    - 360.
+
+         if (fg_data % startlon &gt; 180.) fg_data % startlon = fg_data%startlon - 360.
+  
+         if (fg_data % startlat &lt; -90.) fg_data % startlat = -90.
+         if (fg_data % startlat &gt;  90.) fg_data % startlat = 90.
+#endif
+     
+         fg_data % is_wind_grid_rel = .true.
+     
+         allocate(fg_data % slab(fg_data % nx, fg_data % ny))
+         read(unit=input_unit,err=1001,end=1001) fg_data % slab
+     
+         istatus = 0 
+    
+      ! GRIB_PREP
+      else if (fg_data % version == 4) then
+  
+         read(unit=input_unit) fg_data % hdate,      &amp;
+                               fg_data % xfcst,      &amp;
+                               fg_data % map_source, &amp;
+                               fg_data % field,      &amp;
+                               fg_data % units,      &amp;
+                               fg_data % desc,       &amp;
+                               fg_data % xlvl,       &amp;
+                               fg_data % nx,         &amp;
+                               fg_data % ny,         &amp;
+                               fg_data % iproj
+  
+         if (fg_data % field == 'HGT      ') fg_data % field = 'GHT      '
+  
+         ! Cylindrical equidistant
+         if (fg_data % iproj == 0) then
+            fg_data % iproj = PROJ_LATLON
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % deltalat, &amp;
+                                                    fg_data % deltalon
+
+         ! Mercator
+         else if (fg_data % iproj == 1) then
+            fg_data % iproj = PROJ_MERC
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % truelat1
+
+         ! Lambert conformal
+         else if (fg_data % iproj == 3) then
+            fg_data % iproj = PROJ_LC
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % xlonc,    &amp;
+                                                    fg_data % truelat1, &amp;
+                                                    fg_data % truelat2
+
+         ! Polar stereographic
+         else if (fg_data % iproj == 5) then
+            fg_data % iproj = PROJ_PS
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % xlonc,    &amp;
+                                                    fg_data % truelat1
+     
+         ! ?????????
+         else
+            write(0,*) 'Error: Unrecognized projection code ',fg_data % iproj,' when reading from '//trim(filename)
+     
+         end if
+  
+         if (startloc == 'CENTER  ') then
+            fg_data % starti = real(fg_data % nx)/2.
+            fg_data % startj = real(fg_data % ny)/2.
+         else if (startloc == 'SWCORNER') then
+            fg_data % starti = 1.0
+            fg_data % startj = 1.0
+         end if
+
+         fg_data % earth_radius = EARTH_RADIUS_M / 1000.
+
+#if (defined _GEOGRID) || (defined _METGRID)
+         fg_data % dx = fg_data % dx * 1000.
+         fg_data % dy = fg_data % dy * 1000.
+
+         if (fg_data % xlonc    &gt; 180.) fg_data % xlonc    = fg_data % xlonc    - 360.
+
+         if (fg_data % startlon &gt; 180.) fg_data % startlon = fg_data % startlon - 360.
+  
+         if (fg_data % startlat &lt; -90.) fg_data % startlat = -90.
+         if (fg_data % startlat &gt;  90.) fg_data % startlat = 90.
+#endif
+         
+         fg_data % is_wind_grid_rel = .true.
+      
+         allocate(fg_data % slab(fg_data % nx, fg_data % ny))
+         read(unit=input_unit,err=1001,end=1001) fg_data % slab
+      
+         istatus = 0
+
+      ! WPS
+      else if (fg_data % version == 5) then
+  
+         read(unit=input_unit) fg_data % hdate,      &amp;
+                               fg_data % xfcst,      &amp;
+                               fg_data % map_source, &amp;
+                               fg_data % field,      &amp;
+                               fg_data % units,      &amp;
+                               fg_data % desc,       &amp;
+                               fg_data % xlvl,       &amp;
+                               fg_data % nx,         &amp;
+                               fg_data % ny,         &amp;
+                               fg_data % iproj
+  
+         if (fg_data % field == 'HGT      ') fg_data % field = 'GHT      '
+  
+         ! Cylindrical equidistant
+         if (fg_data % iproj == 0) then
+            fg_data % iproj = PROJ_LATLON
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % deltalat, &amp;
+                                                    fg_data % deltalon, &amp;
+                                                    fg_data % earth_radius
+
+         ! Mercator
+         else if (fg_data % iproj == 1) then
+            fg_data % iproj = PROJ_MERC
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % truelat1, &amp;
+                                                    fg_data % earth_radius
+
+         ! Lambert conformal
+         else if (fg_data % iproj == 3) then
+            fg_data % iproj = PROJ_LC
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % xlonc,    &amp;
+                                                    fg_data % truelat1, &amp;
+                                                    fg_data % truelat2, &amp;
+                                                    fg_data % earth_radius
+
+         ! Gaussian
+         else if (fg_data % iproj == 4) then
+            fg_data % iproj = PROJ_GAUSS
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % deltalat, &amp;
+                                                    fg_data % deltalon, &amp;
+                                                    fg_data % earth_radius
+
+         ! Polar stereographic
+         else if (fg_data % iproj == 5) then
+            fg_data % iproj = PROJ_PS
+            read(unit=input_unit,err=1001,end=1001) startloc, &amp;
+                                                    fg_data % startlat, &amp;
+                                                    fg_data % startlon, &amp;
+                                                    fg_data % dx,       &amp;
+                                                    fg_data % dy,       &amp;
+                                                    fg_data % xlonc,    &amp;
+                                                    fg_data % truelat1, &amp;
+                                                    fg_data % earth_radius
+     
+         ! ?????????
+         else
+            write(0,*) 'Error: Unrecognized projection code ',fg_data % iproj,' when reading from '//trim(filename)
+     
+         end if
+  
+         if (startloc == 'CENTER  ') then
+            fg_data % starti = real(fg_data % nx)/2.
+            fg_data % startj = real(fg_data % ny)/2.
+         else if (startloc == 'SWCORNER') then
+            fg_data % starti = 1.0
+            fg_data % startj = 1.0
+         end if
+
+#if (defined _GEOGRID) || (defined _METGRID)
+         fg_data % dx = fg_data % dx * 1000.
+         fg_data % dy = fg_data % dy * 1000.
+
+         if (fg_data % xlonc    &gt; 180.) fg_data % xlonc    = fg_data % xlonc    - 360.
+
+         if (fg_data % startlon &gt; 180.) fg_data % startlon = fg_data % startlon - 360.
+         
+         if (fg_data % startlat &lt; -90.) fg_data % startlat = -90.
+         if (fg_data % startlat &gt;  90.) fg_data % startlat =  90.
+#endif

+         read(unit=input_unit,err=1001,end=1001) fg_data % is_wind_grid_rel
+      
+         allocate(fg_data % slab(fg_data % nx, fg_data % ny))
+         read(unit=input_unit,err=1001,end=1001) fg_data % slab
+      
+         istatus = 0
+
+      else
+         write(0,*) 'Error: Didn''t recognize format version of data in '//trim(filename)//'.</font>
<font color="gray">'// &amp;
+                    'Found version ',fg_data % version,' but expected either 3, 4, or 5. This could be an endian problem.'
+      end if
+  
+      return

+   1001 return

+   end subroutine read_next_met_field


+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   ! Name: read_met_close
+   !
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   subroutine read_met_close()

+      implicit none
+  
+      close(unit=input_unit)
+      filename = 'UNINITIALIZED_FILENAME'
+  
+   end subroutine read_met_close
+
+end module read_met

Modified: branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_test_cases.F
===================================================================
--- branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_test_cases.F        2010-11-11 22:30:06 UTC (rev 607)
+++ branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/module_test_cases.F        2010-11-12 00:14:40 UTC (rev 608)
@@ -85,10 +85,23 @@
             block_ptr =&gt; block_ptr % next
          end do
 
+      else if (config_test_case == 7 ) then
+
+         write(0,*) ' real-data GFS test case '
+         block_ptr =&gt; domain % blocklist
+         do while (associated(block_ptr))
+            call nhyd_test_case_gfs(domain % dminfo, block_ptr % mesh, block_ptr % fg, block_ptr % state % time_levs(1) % state, block_ptr % diag, config_test_case)
+            do i=2,nTimeLevs
+               call copy_state(block_ptr % state % time_levs(i) % state, block_ptr % state % time_levs(1) % state)
+            end do
+
+            block_ptr =&gt; block_ptr % next
+         end do
+
       else
 
 
-         write(0,*) ' Only test case 1, 2, 3, 4, 5 and 6 are currently supported for nonhydrostatic core '
+         write(0,*) ' Only test case 1, 2, 3, 4, 5, 6, and 7 are currently supported for nonhydrostatic core '
          stop
       end if
 
@@ -1947,8 +1960,576 @@
    end subroutine nhyd_test_case_mtn_wave
 
 
-!----------------------------------------------------------------------------------------------------------
+   subroutine nhyd_test_case_gfs(dminfo, grid, fg, state, diag, test_case)
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   ! Real-data test case using GFS data
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
+      use read_met
+      use llxy
+      use dmpar
+
+      implicit none
+
+      type (dm_info), intent(in) :: dminfo
+      type (mesh_type), intent(inout) :: grid
+      type (fg_type), intent(inout) :: fg
+      type (state_type), intent(inout) :: state
+      type (diag_type), intent(inout) :: diag
+      integer, intent(in) :: test_case
+
+      real (kind=RKIND), parameter :: u0 = 35.0
+      real (kind=RKIND), parameter :: alpha_grid = 0.  ! no grid rotation
+      real (kind=RKIND), parameter :: omega_e = 7.29212e-05
+      real (kind=RKIND), parameter :: t0b = 250., t0 = 288., delta_t = 4.8e+05, dtdz = 0.005, eta_t = 0.2
+      real (kind=RKIND), parameter :: u_perturbation = 1., pert_radius = 0.1, latitude_pert = 40., longitude_pert = 20.
+      real (kind=RKIND), parameter :: theta_c = pii/4.0
+      real (kind=RKIND), parameter :: lambda_c = 3.0*pii/2.0
+      real (kind=RKIND), parameter :: rh_max = 0.4       ! Maximum relative humidity
+      real (kind=RKIND), parameter :: k_x = 9.           ! Normal mode wave number
+
+      type (met_data) :: field
+      type (proj_info) :: proj
+
+      real (kind=RKIND), dimension(:), pointer :: rdzw, dzu, rdzu, fzm, fzp
+      real (kind=RKIND), dimension(:), pointer :: vert_level, latPoints, lonPoints
+      real (kind=RKIND), dimension(:,:), pointer :: zgrid, zx, zz, hx
+      real (kind=RKIND), dimension(:,:), pointer :: pressure, ppb, pb, rho, rb, rr, tb, rtb, p, pp, dss, t, rt
+      real (kind=RKIND), dimension(:), pointer :: destField1d
+      real (kind=RKIND), dimension(:,:), pointer :: destField2d
+      real (kind=RKIND), dimension(:,:,:), pointer :: zf, zf3, zb, zb3
+      real (kind=RKIND), dimension(:,:,:), pointer :: scalars
+      real (kind=RKIND), dimension(:,:,:), pointer :: deriv_two
+
+      integer :: iCell, iCell1, iCell2 , iEdge, vtx1, vtx2, ivtx, i, k, nz, nz1, itr, itrp, cell1, cell2, nCellsSolve
+      integer :: nInterpPoints, ndims
+
+      !This is temporary variable here. It just need when calculate tangential velocity v.
+      integer :: eoe, j
+      integer, dimension(:), pointer :: nEdgesOnEdge 
+      integer, dimension(:,:), pointer :: edgesOnEdge, CellsOnEdge, cellsOnCell
+      real (kind=RKIND), dimension(:), pointer :: dvEdge, AreaCell 
+      real (kind=RKIND), dimension(:,:), pointer :: weightsOnEdge
+      real (kind=RKIND), dimension(:,:), pointer :: v
+
+      ! For interpolating terrain and land use
+      integer :: nx, ny, nzz, iPoint, subx, suby
+      integer :: isigned, endian, wordsize, istatus
+      integer :: iTileStart, iTileEnd
+      integer :: jTileStart, jTileEnd
+      integer, allocatable, dimension(:) :: nhs
+      integer, allocatable, dimension(:,:) :: ncat
+      real (kind=4) :: scalefactor   ! NB: this should be a single-precision real
+      real (kind=RKIND) :: lat_pt, lon_pt, lon_pt_o
+      real (kind=4), allocatable, dimension(:,:,:) :: rarray  ! NB: this should be a single-precision real array
+      character (len=1024) :: fname
+
+      real (kind=RKIND) :: u, flux, fluxk, lat1, lat2, eta_v, r_pert, u_pert, lat_pert, lon_pert, r
+      real (kind=4) :: lat, lon, x, y
+
+      real (kind=RKIND) :: ptop, p0, phi
+      real (kind=RKIND) :: lon_Edge
+
+      real (kind=RKIND) :: r_earth, etavs, ztemp, zd, zt, dz, gam, delt, str
+
+      real (kind=RKIND), dimension(grid % nVertLevels, grid % nCells) :: rel_hum, temperature, qv
+      real (kind=RKIND) :: ptmp, es, qvs, xnutr, znut, ptemp
+      integer :: iter
+
+      real (kind=RKIND), dimension(grid % nVertLevels + 1) :: hyai, hybi, znu, znw, znwc, znwv, hyam, hybm
+      real (kind=RKIND), dimension(grid % nVertLevels + 1) :: znuc, znuv, bn, divh, dpn
+
+      real (kind=RKIND), dimension(grid % nVertLevels + 1) :: sh, zw, ah
+      real (kind=RKIND), dimension(grid % nVertLevels) :: zu, dzw, rdzwp, rdzwm
+      real (kind=RKIND), dimension(grid % nVertLevels) :: eta, etav, teta, ppi, tt
+
+      real (kind=RKIND), dimension(grid % nCells) :: hs
+
+      real (kind=RKIND) :: d1, d2, d3, cf1, cf2, cf3, cof1, cof2, psurf
+
+      !  storage for (lat,z) arrays for zonal velocity calculation
+
+      integer, parameter :: nlat=361
+      real (kind=RKIND), dimension(grid % nVertLevels + 1) :: zz_1d, zgrid_1d, hx_1d
+      real (kind=RKIND), dimension(grid % nVertLevels) :: flux_zonal
+      real (kind=RKIND), dimension(nlat, grid % nVertLevels) :: u_2d, etavs_2d
+      real (kind=RKIND), dimension(nlat) :: lat_2d
+      real (kind=RKIND) :: dlat
+      real (kind=RKIND) :: z_edge, z_edge3, d2fdx2_cell1, d2fdx2_cell2
+
+      weightsOnEdge     =&gt; grid % weightsOnEdge % array
+      nEdgesOnEdge      =&gt; grid % nEdgesOnEdge % array
+      edgesOnEdge       =&gt; grid % edgesOnEdge % array
+      dvEdge            =&gt; grid % dvEdge % array
+      AreaCell          =&gt; grid % AreaCell % array
+      CellsOnEdge       =&gt; grid % CellsOnEdge % array
+      cellsOnCell       =&gt; grid % cellsOnCell % array
+
+      deriv_two  =&gt; grid % deriv_two % array
+      zf  =&gt; grid % zf % array
+      zf3 =&gt; grid % zf3% array
+      zb  =&gt; grid % zb % array
+      zb3 =&gt; grid % zb3% array
+
+      zgrid =&gt; grid % zgrid % array
+      rdzw =&gt; grid % rdzw % array
+      dzu =&gt; grid % dzu % array
+      rdzu =&gt; grid % rdzu % array
+      fzm =&gt; grid % fzm % array
+      fzp =&gt; grid % fzp % array
+      zx =&gt; grid % zx % array
+      zz =&gt; grid % zz % array
+      hx =&gt; grid % hx % array
+      dss =&gt; grid % dss % array
+
+      pb =&gt; diag % exner_base % array
+      rb =&gt; diag % rho_base % array
+      tb =&gt; diag % theta_base % array
+      rtb =&gt; diag % rtheta_base % array
+      p =&gt; diag % exner % array
+
+      ppb =&gt; diag % pressure_base % array
+      pp  =&gt; diag % pressure_p % array
+
+      rho =&gt; state % rho % array
+      rr =&gt; diag % rho_p % array
+      t =&gt; state % theta % array      
+      rt =&gt; diag % rtheta_p % array
+
+      scalars =&gt; state % scalars % array
+      
+      nz1 = grid % nVertLevels
+      nz = nz1 + 1
+      nCellsSolve = grid % nCellsSolve
+
+
+      !
+      ! Scale all distances and areas from a unit sphere to one with radius a
+      !
+      grid % xCell % array = grid % xCell % array * a
+      grid % yCell % array = grid % yCell % array * a
+      grid % zCell % array = grid % zCell % array * a
+      grid % xVertex % array = grid % xVertex % array * a
+      grid % yVertex % array = grid % yVertex % array * a
+      grid % zVertex % array = grid % zVertex % array * a
+      grid % xEdge % array = grid % xEdge % array * a
+      grid % yEdge % array = grid % yEdge % array * a
+      grid % zEdge % array = grid % zEdge % array * a
+      grid % dvEdge % array = grid % dvEdge % array * a
+      grid % dcEdge % array = grid % dcEdge % array * a
+      grid % areaCell % array = grid % areaCell % array * a**2.0
+      grid % areaTriangle % array = grid % areaTriangle % array * a**2.0
+      grid % kiteAreasOnVertex % array = grid % kiteAreasOnVertex % array * a**2.0
+
+      scalars(:,:,:) = 0.
+
+      call initialize_advection_rk(grid) 
+      call initialize_deformation_weights(grid) 
+
+      xnutr = 0.
+      zd = 12000.
+      znut = eta_t
+
+      etavs = (1.-0.252)*pii/2.
+      r_earth = a
+      p0 = 1.e+05
+
+
+#if 0
+      !
+      ! Interpolate HGT
+      !
+      nx = 126
+      ny = 126
+!      nx = 1206
+!      ny = 1206
+      nzz = 1
+      isigned = 1
+      endian = 0
+      wordsize = 2
+      scalefactor = 1.0
+      allocate(rarray(nx,ny,nzz))
+      allocate(nhs(grid % nCells))
+      nhs(:) = 0
+      grid % hx % array(:,:) = 0.0
+
+!      do jTileStart=1,20401,ny-6
+      do jTileStart=1,961,ny-6
+         jTileEnd = jTileStart + ny - 1 - 6
+!         do iTileStart=1,42001,nx-6
+         do iTileStart=1,2041,nx-6
+            iTileEnd = iTileStart + nx - 1 - 6
+!            write(fname,'(a,i5.5,a1,i5.5,a1,i5.5,a1,i5.5)') trim(config_geog_data_path)//'topo_30s/',iTileStart,'-',iTileEnd,'.',jTileStart,'-',jTileEnd
+            write(fname,'(a,i5.5,a1,i5.5,a1,i5.5,a1,i5.5)') trim(config_geog_data_path)//'topo_10m/',iTileStart,'-',iTileEnd,'.',jTileStart,'-',jTileEnd
+write(0,*) trim(fname)
+
+            call read_geogrid(fname, len_trim(fname), &amp;
+                              rarray, &amp;
+                              nx, ny, nzz, &amp;
+                              isigned, endian, scalefactor, wordsize, istatus)
+write(0,*) istatus
+write(0,*) 'min/max = ',minval(rarray(:,:,:)),maxval(rarray(:,:,:))
+            iPoint = 1
+            do j=4,ny-3
+            do i=4,nx-3
+!               lat_pt = -89.99583 + (jTileStart + j - 5) * 0.0083333333
+!               lon_pt = -179.99583 + (iTileStart + i - 5) * 0.0083333333
+               lat_pt = -89.91667 + (jTileStart + j - 5) * 0.166667
+               lon_pt = -179.91667 + (iTileStart + i - 5) * 0.166667
+               lat_pt = lat_pt * pii / 180.0
+               lon_pt = lon_pt * pii / 180.0
+
+               iPoint = nearest_cell(lat_pt, lon_pt, &amp;
+                                     iPoint, &amp;
+                                     grid % nCells, grid % maxEdges, grid % nEdgesOnCell % array, grid % cellsOnCell % array, &amp;
+                                     grid % latCell % array, grid % lonCell % array)
+
+               grid % hx % array(1,iPoint) = grid % hx % array(1,iPoint) + rarray(i,j,1)
+               nhs(iPoint) = nhs(iPoint) + 1
+
+            end do
+            end do
+
+          end do
+       end do
+
+      do iCell=1, grid % nCells
+         grid % hx % array(1,iCell) = grid % hx % array(1,iCell) / real(nhs(iCell))
+      end do
+
+      deallocate(rarray)
+      deallocate(nhs)
+

+      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+      ! SMOOTH TOPOGRAPHY TO CREATE 3D HX FIELD
+      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+      do k=2,grid%nVertLevels
+         grid % hx % array(k,:) = grid % hx % array(k-1,:)
+         do i=1,4
+            do iCell=1,grid%nCells
+               hs(iCell) = grid % hx % array(k,iCell)
+               do j = 1,grid % nEdgesOnCell % array(iCell)
+                  hs(iCell) = hs(iCell) + grid % hx % array(k,cellsOnCell(j,iCell))
+               end do
+               hs(iCell) = hs(iCell) / real(grid%nEdgesOnCell%array(iCell)+1)
+            end do
+            do iCell=1,grid%nCells
+               grid % hx % array(k,iCell) = hs(iCell)
+               do j = 1,grid % nEdgesOnCell % array(iCell)
+                  grid % hx % array(k,iCell) = grid % hx % array(k,iCell) + hs(cellsOnCell(j,iCell))
+               end do
+               grid % hx % array(k,iCell) = grid % hx % array(k,iCell) / real(grid%nEdgesOnCell%array(iCell)+1)
+            end do
+         end do
+      end do
+
+
+      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+      ! CREATE VERTICAL GRID
+      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+
+      !
+      ! Interpolate LU_INDEX
+      !
+      nx = 1200
+      ny = 1200
+      nzz = 1
+      isigned = 1
+      endian = 0
+      wordsize = 1
+      scalefactor = 1.0
+      allocate(rarray(nx,ny,nzz))
+      allocate(ncat(24,grid % nCells))
+      ncat(:,:) = 0
+      grid % lu_index % array(:) = 0.0
+
+      do jTileStart=1,20401,ny
+         jTileEnd = jTileStart + ny - 1
+         do iTileStart=1,42001,nx
+            iTileEnd = iTileStart + nx - 1
+            write(fname,'(a,i5.5,a1,i5.5,a1,i5.5,a1,i5.5)') trim(config_geog_data_path)//'/landuse_30s/',iTileStart,'-',iTileEnd,'.',jTileStart,'-',jTileEnd
+write(0,*) trim(fname)
+
+            call read_geogrid(fname, len_trim(fname), &amp;
+                              rarray, &amp;
+                              nx, ny, nzz, &amp;
+                              isigned, endian, scalefactor, wordsize, istatus)
+write(0,*) istatus
+
+            iPoint = 1
+            do j=1,ny
+            do i=1,nx
+               lat_pt = -89.99583 + (jTileStart + j - 2) * 0.0083333333
+               lon_pt = -179.99583 + (iTileStart + i - 2) * 0.0083333333
+               lat_pt = lat_pt * pii / 180.0
+               lon_pt = lon_pt * pii / 180.0
+
+               iPoint = nearest_cell(lat_pt, lon_pt, &amp;
+                                     iPoint, &amp;
+                                     grid % nCells, grid % maxEdges, grid % nEdgesOnCell % array, grid % cellsOnCell % array, &amp;
+                                     grid % latCell % array, grid % lonCell % array)
+
+               ncat(int(rarray(i,j,1)),iPoint) = ncat(int(rarray(i,j,1)),iPoint) + 1
+
+            end do
+            end do
+
+         end do
+      end do
+
+      do iCell=1, grid % nCells
+         grid % lu_index % array(iCell) = 1
+         do i=2,24
+            if (ncat(i,iCell) &gt; ncat(grid % lu_index % array(iCell),iCell)) then
+               grid % lu_index % array(iCell) = i
+            end if
+         end do
+      end do
+
+      deallocate(rarray)
+      deallocate(ncat)
+
+
+      !
+      ! Horizontally interpolate meteorological data
+      !
+      allocate(vert_level(config_nfglevels))
+      vert_level(:) = -1.0
+
+      call read_met_init(trim(config_met_prefix), .false., trim(config_init_date), istatus)
+
+      if (istatus /= 0) then
+         write(0,*) 'Error reading initial met data'
+         return
+      end if
+
+      call read_next_met_field(field, istatus)
+      do while (istatus == 0)
+         if (index(field % field, 'UU') /= 0 .or. &amp;
+             index(field % field, 'VV') /= 0 .or. &amp;
+             index(field % field, 'TT') /= 0 .or. &amp;
+             index(field % field, 'RH') /= 0 .or. &amp;
+             index(field % field, 'GHT') /= 0 .or. &amp;
+             index(field % field, 'PMSL') /= 0 .or. &amp;
+             index(field % field, 'PSFC') /= 0 .or. &amp;
+             index(field % field, 'SOILHGT') /= 0 .or. &amp;
+             index(field % field, 'PRES') /= 0) then
+
+            if (index(field % field, 'PMSL') == 0 .and. &amp;
+                index(field % field, 'PSFC') == 0 .and. &amp;
+                index(field % field, 'SOILHGT') == 0) then
+               do k=1,config_nfglevels
+                  if (vert_level(k) == field % xlvl .or. vert_level(k) == -1.0) exit
+               end do
+               if (k &gt; config_nfglevels) write(0,*) 'ERROR: We seem to have more levels than we thought we should!'
+               if (vert_level(k) == -1.0) vert_level(k) = field % xlvl
+            else
+               k = 1
+            end if
+
+            !
+            ! Set up projection
+            !
+            call map_init(proj)
+          
+            if (field % iproj == PROJ_LATLON) then
+               call map_set(PROJ_LATLON, proj, &amp;
+                            latinc = field % deltalat, &amp;
+                            loninc = field % deltalon, &amp;
+                            knowni = 1.0_4, &amp;
+                            knownj = 1.0_4, &amp;
+                            lat1 = field % startlat, &amp;
+                            lon1 = field % startlon)
+            end if
+
+
+            !
+            ! Horizontally interpolate the field at level k
+            !
+            if (index(field % field, 'UU') /= 0) then
+write(0,*) 'Interpolating U at ', k, vert_level(k)
+               nInterpPoints = grid % nEdges
+               latPoints =&gt; grid % latEdge % array
+               lonPoints =&gt; grid % lonEdge % array
+               destField2d =&gt; fg % u % array
+               ndims = 2
+            else if (index(field % field, 'VV') /= 0) then
+write(0,*) 'Interpolating V at ', k, vert_level(k)
+               nInterpPoints = grid % nEdges
+               latPoints =&gt; grid % latEdge % array
+               lonPoints =&gt; grid % lonEdge % array
+               destField2d =&gt; fg % v % array
+               ndims = 2
+            else if (index(field % field, 'TT') /= 0) then
+write(0,*) 'Interpolating T at ', k, vert_level(k)
+               nInterpPoints = grid % nCells
+               latPoints =&gt; grid % latCell % array
+               lonPoints =&gt; grid % lonCell % array
+               destField2d =&gt; fg % t % array
+               ndims = 2
+            else if (index(field % field, 'RH') /= 0) then
+write(0,*) 'Interpolating RH at ', k, vert_level(k)
+               nInterpPoints = grid % nCells
+               latPoints =&gt; grid % latCell % array
+               lonPoints =&gt; grid % lonCell % array
+               destField2d =&gt; fg % rh % array
+               ndims = 2
+            else if (index(field % field, 'GHT') /= 0) then
+write(0,*) 'Interpolating GHT at ', k, vert_level(k)
+               nInterpPoints = grid % nCells
+               latPoints =&gt; grid % latCell % array
+               lonPoints =&gt; grid % lonCell % array
+               destField2d =&gt; fg % z % array
+               ndims = 2
+            else if (index(field % field, 'PRES') /= 0) then
+write(0,*) 'Interpolating PRES at ', k, vert_level(k)
+               nInterpPoints = grid % nCells
+               latPoints =&gt; grid % latCell % array
+               lonPoints =&gt; grid % lonCell % array
+               destField2d =&gt; fg % p % array
+               ndims = 2
+            else if (index(field % field, 'PMSL') /= 0) then
+write(0,*) 'Interpolating PMSL'
+               nInterpPoints = grid % nCells
+               latPoints =&gt; grid % latCell % array
+               lonPoints =&gt; grid % lonCell % array
+               destField1d =&gt; fg % pmsl % array
+               ndims = 1
+            else if (index(field % field, 'PSFC') /= 0) then
+write(0,*) 'Interpolating PSFC'
+               nInterpPoints = grid % nCells
+               latPoints =&gt; grid % latCell % array
+               lonPoints =&gt; grid % lonCell % array
+               destField1d =&gt; fg % psfc % array
+               ndims = 1
+            else if (index(field % field, 'SOILHGT') /= 0) then
+write(0,*) 'Interpolating SOILHGT'
+               nInterpPoints = grid % nCells
+               latPoints =&gt; grid % latCell % array
+               lonPoints =&gt; grid % lonCell % array
+               destField1d =&gt; fg % soilz % array
+               ndims = 1
+            end if
+
+            do i=1,nInterpPoints
+               lat = latPoints(i)*DEG_PER_RAD
+               lon = lonPoints(i)*DEG_PER_RAD
+               call latlon_to_ij(proj, lat, lon, x, y)
+               if (x &lt; 0.0) then
+                  lon = lon + 360.0
+                  call latlon_to_ij(proj, lat, lon, x, y)
+               end if
+               if (ndims == 1) then
+                  destField1d(i) = four_pt(field % nx, field % ny, field % slab, x, y)
+               else if (ndims == 2) then
+                  destField2d(k,i) = four_pt(field % nx, field % ny, field % slab, x, y)
+               end if
+            end do
+         end if
+   
+         deallocate(field % slab)
+         call read_next_met_field(field, istatus)
+      end do
+
+      call read_met_close()
+
+
+      !  
+      ! Compute normal wind component and store in fg%u
+      !  
+      do iEdge=1,grid%nEdges
+         do k=1,config_nfglevels
+            fg % u % array(k,iEdge) = cos(grid % angleEdge % array(iEdge)) * fg % u % array(k,iEdge) &amp;
+                                    + sin(grid % angleEdge % array(iEdge)) * fg % v % array(k,iEdge)
+         end do
+      end do
+
+
+      !  
+      ! Vertically interpolate meteorological data
+      !  
+      do iCell=1,grid%nCells
+         do k=1,grid%nVertLevels
+            ! HGT
+            ! PRES
+            ! THETA
+            ! RH
+            ! T
+         end do
+      end do
+
+      do iEdge=1,grid%nEdges
+         do k=1,grid%nVertLevels
+            ! U
+         end do
+      end do
+
+
+      !
+      ! Diagnose fields needed in initial conditions file (u, w, rho, theta, scalars)
+      !
+
+      deallocate(vert_level)
+#endif
+
+
+   end subroutine nhyd_test_case_gfs
+
+
+   real function four_pt(nx, ny, array, xx, yy)
+
+      implicit none
+
+      integer, intent(in) :: nx, ny 
+      real (kind=4), dimension(nx, ny), intent(in) :: array
+      real (kind=4), intent(in) :: xx, yy
+
+      integer :: min_x, max_x, min_y, max_y
+
+      min_x = floor(xx)
+      min_y = floor(yy)
+      max_x = ceiling(xx)
+      max_y = ceiling(yy)
+
+      if (min_x == 0) min_x = max_x
+      if (max_x == nx+1) max_x = min_x
+      if (min_y == 0) min_y = max_y
+      if (max_y == ny+1) max_y = min_y
+
+      if ((min_x &lt; 1) .or. (max_x &gt; nx) .or. (min_y &lt; 1) .or. (max_y &gt; ny)) then
+         write(0,*) '(x,y) location out of bounds'
+         four_pt = 0.0
+         return
+      end if 
+
+      if (min_x == max_x) then
+         if (min_y == max_y) then
+            four_pt = array(min_x,min_y)
+         else
+            four_pt = array(min_x,min_y)*(real(max_y)-yy) + &amp;
+                      array(min_x,max_y)*(yy-real(min_y))
+         end if
+      else if (min_y == max_y) then
+         if (min_x == max_x) then
+            four_pt = array(min_x,min_y)
+         else
+            four_pt = array(min_x,min_y)*(real(max_x)-xx) + &amp;
+                      array(max_x,min_y)*(xx-real(min_x))
+         end if
+      else
+         four_pt = (yy - min_y) * (array(min_x,max_y)*(real(max_x)-xx) + &amp;
+                                   array(max_x,max_y)*(xx-real(min_x))) + &amp;
+                   (max_y - yy) * (array(min_x,min_y)*(real(max_x)-xx) + &amp;
+                                   array(max_x,min_y)*(xx-real(min_x)));
+      end if
+
+      return
+
+   end function four_pt
+
+
    real function sphere_distance(lat1, lon1, lat2, lon2, radius)
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    ! Compute the great-circle distance between (lat1, lon1) and (lat2, lon2) on a
@@ -1967,4 +2548,96 @@
 
    end function sphere_distance
 
+
+   integer function nearest_cell(target_lat, target_lon, &amp;
+                                 start_cell, &amp;
+                                 nCells, maxEdges, nEdgesOnCell, cellsOnCell, latCell, lonCell)
+
+      implicit none
+
+      real (kind=RKIND), intent(in) :: target_lat, target_lon
+      integer, intent(in) :: start_cell
+      integer, intent(in) :: nCells, maxEdges
+      integer, dimension(nCells), intent(in) :: nEdgesOnCell
+      integer, dimension(maxEdges,nCells), intent(in) :: cellsOnCell
+      real (kind=RKIND), dimension(nCells), intent(in) :: latCell, lonCell
+
+      integer :: i
+      integer :: iCell
+      integer :: current_cell
+      real (kind=RKIND) :: current_distance, d
+      real (kind=RKIND) :: nearest_distance
+
+      nearest_cell = start_cell
+      current_cell = -1
+
+      do while (nearest_cell /= current_cell)
+         current_cell = nearest_cell
+         current_distance = sphere_distance(latCell(current_cell), lonCell(current_cell), target_lat, target_lon, 1.0)
+         nearest_cell = current_cell
+         nearest_distance = current_distance
+         do i = 1, nEdgesOnCell(current_cell)
+            iCell = cellsOnCell(i,current_cell)
+            d = sphere_distance(latCell(iCell), lonCell(iCell), target_lat, target_lon, 1.0)
+            if (d &lt; nearest_distance) then
+               nearest_cell = iCell
+               nearest_distance = d
+            end if
+         end do
+      end do
+
+   end function nearest_cell
+
+
+   integer function nearest_edge(target_lat, target_lon, &amp;
+                                 start_edge, &amp;
+                                 nCells, nEdges, maxEdges, nEdgesOnCell, edgesOnCell, cellsOnEdge, latCell, lonCell, latEdge, lonEdge)
+
+      implicit none
+
+      real (kind=RKIND), intent(in) :: target_lat, target_lon
+      integer, intent(in) :: start_edge
+      integer, intent(in) :: nCells, nEdges, maxEdges
+      integer, dimension(nCells), intent(in) :: nEdgesOnCell
+      integer, dimension(maxEdges,nCells), intent(in) :: edgesOnCell
+      integer, dimension(2,nEdges), intent(in) :: cellsOnEdge
+      real (kind=RKIND), dimension(nCells), intent(in) :: latCell, lonCell
+      real (kind=RKIND), dimension(nEdges), intent(in) :: latEdge, lonEdge
+
+      integer :: i, cell1, cell2, iCell
+      integer :: iEdge
+      integer :: current_edge
+      real (kind=RKIND) :: cell1_dist, cell2_dist
+      real (kind=RKIND) :: current_distance, d
+      real (kind=RKIND) :: nearest_distance
+
+      nearest_edge = start_edge
+      current_edge = -1
+
+      do while (nearest_edge /= current_edge)
+         current_edge = nearest_edge
+         current_distance = sphere_distance(latEdge(current_edge), lonEdge(current_edge), target_lat, target_lon, 1.0)
+         nearest_edge = current_edge
+         nearest_distance = current_distance
+         cell1 = cellsOnEdge(1,current_edge)
+         cell2 = cellsOnEdge(2,current_edge)
+         cell1_dist = sphere_distance(latCell(cell1), lonCell(cell1), target_lat, target_lon, 1.0)
+         cell2_dist = sphere_distance(latCell(cell2), lonCell(cell2), target_lat, target_lon, 1.0)
+         if (cell1_dist &lt; cell2_dist) then
+            iCell = cell1
+         else
+            iCell = cell2
+         end if
+         do i = 1, nEdgesOnCell(iCell)
+            iEdge = edgesOnCell(i,iCell)
+            d = sphere_distance(latEdge(iEdge), lonEdge(iEdge), target_lat, target_lon, 1.0)
+            if (d &lt; nearest_distance) then
+               nearest_edge = iEdge
+               nearest_distance = d
+            end if
+         end do
+      end do
+
+   end function nearest_edge
+
 end module test_cases

Added: branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/read_geogrid.c
===================================================================
--- branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/read_geogrid.c                                (rev 0)
+++ branches/atmos_nonhydrostatic/src/core_init_nhyd_atmos/read_geogrid.c        2010-11-12 00:14:40 UTC (rev 608)
@@ -0,0 +1,139 @@
+/* File: read_geogrid.c
+
+   Sample subroutine to read an array from the geogrid binary format.
+
+   Notes: Depending on the compiler and compiler flags, the name of 
+   the read_geogrid() routine may need to be adjusted with respect
+   to the number of trailing underscores when calling from Fortran.
+
+   Michael G. Duda, NCAR/MMM
+*/
+
+#include &lt;stdlib.h&gt;
+#include &lt;stdio.h&gt;
+#include &lt;string.h&gt;
+
+#ifdef UNDERSCORE
+#define read_geogrid read_geogrid_
+#endif
+#ifdef DOUBLEUNDERSCORE
+#define read_geogrid read_geogrid__
+#endif
+
+#define BIG_ENDIAN    0
+#define LITTLE_ENDIAN 1
+
+int read_geogrid(
+      char * fname,            /* The name of the file to read from */
+      int * len,               /* The length of the filename */
+      float * rarray,          /* The array to be filled */
+      int * nx,                /* x-dimension of the array */
+      int * ny,                /* y-dimension of the array */
+      int * nz,                /* z-dimension of the array */
+      int * isigned,           /* 0=unsigned data, 1=signed data */
+      int * endian,            /* 0=big endian, 1=little endian */
+      float * scalefactor,     /* value to multiply array elements by before truncation to integers */
+      int * wordsize,          /* number of bytes to use for each array element */
+      int * status)
+{
+   int i, ival, cnt, narray;
+   int A2, B2;
+   int A3, B3, C3;
+   int A4, B4, C4, D4;
+   unsigned char * c;
+   char local_fname[1024];
+   FILE * bfile;
+
+   *status = 0;
+
+   narray = (*nx) * (*ny) * (*nz);
+
+   /* Make a null-terminated local copy of the filename */
+   strncpy(local_fname,fname,*len);
+   local_fname[*len]='\0';
+
+   /* Attempt to open file for reading */
+   if (!(bfile = fopen(local_fname,&quot;rb&quot;)))
+   {
+      *status = 1;
+      return 1;
+   }
+
+   /* Allocate memory to hold bytes from file and read data */ 
+   c = (unsigned char *)malloc(sizeof(unsigned char)*(*wordsize) * narray);
+   cnt = fread((void *)c, sizeof(unsigned char), narray*(*wordsize), bfile);

+   fclose(bfile);
+
+   if (cnt == 0) 
+   {
+      *status = 1;
+      return 1;
+   }
+
+   /* 
+      Set up byte offsets for each wordsize depending on byte order.
+      A, B, C, D give the offsets of the LSB through MSB (i.e., for 
+      word ABCD, A=MSB, D=LSB) in the array from the beginning of a word 
+   */
+   if (*endian == BIG_ENDIAN) {
+      A2 = 0; B2 = 1;
+      A3 = 0; B3 = 1; C3 = 2;
+      A4 = 0; B4 = 1; C4 = 2; D4 = 3;
+   }
+   else {
+      B2 = 0; A2 = 1;
+      C3 = 0; B3 = 1; A3 = 2;
+      D4 = 0; C4 = 1; B4 = 2; A4 = 3;
+   }
+
+   /* Convert words from native byte order */
+   switch(*wordsize) {
+      case 1:
+         for(i=0; i&lt;narray; i++)
+         {
+            ival = (int)(c[i]);      
+            if ((*isigned) &amp;&amp; (ival &gt; (1 &lt;&lt; 7))) ival -= (1 &lt;&lt; 8);
+            rarray[i] = (float)ival;
+         }
+         break;
+
+      case 2:
+         for(i=0; i&lt;narray; i++)
+         {
+            ival = (int)((c[2*i+A2]&lt;&lt;8) | (c[2*i+B2]));      
+            if ((*isigned) &amp;&amp; (ival &gt; (1 &lt;&lt; 15))) ival -= (1 &lt;&lt; 16);
+            rarray[i] = (float)ival;
+         }
+         break;
+
+      case 3:
+         for(i=0; i&lt;narray; i++)
+         {
+            ival = (int)((c[3*i+A3]&lt;&lt;16) | (c[3*i+B3]&lt;&lt;8) | c[3*i+C3]);      
+            if ((*isigned) * (ival &gt; (1 &lt;&lt; 23))) ival -= (1 &lt;&lt; 24);
+            rarray[i] = (float)ival;
+         }
+         break;
+
+      case 4:
+         for(i=0; i&lt;narray; i++)
+         {
+            ival = (int)((c[4*i+A4]&lt;&lt;24) | (c[4*i+B4]&lt;&lt;16) | (c[4*i+C4]&lt;&lt;8) | c[4*i+D4]);      
+            if ((*isigned) &amp;&amp; (ival &gt; (1 &lt;&lt; 31))) ival -= (1 &lt;&lt; 32);
+            rarray[i] = (float)ival;
+         }
+         break;
+   }
+
+   free(c);
+
+   /* Scale real-valued array by scalefactor */
+   if (*scalefactor != 1.0)
+   {
+      for (i=0; i&lt;narray; i++)
+         rarray[i] = rarray[i] * (*scalefactor);
+   }
+
+   return 0;
+}

</font>
</pre>