In the preceeding example, if it were desired to extend the
latitudinal domain poleward of
N and
S to
N and
S where the meridional resolution was to be
,
then the two previous bounding latitudes would
need to be replaced by four: one at
where
,
one at
where
,
one at
where
and one at
where
.
Poleward of 10 degrees, meridional resolution
would telescope from
to
over a span of
.
The average
meridional resolution in this region is calculated as the average of
the bounding resolutions which is
.
Therefore, there would be
additional grid cells in each
hemisphere between latitudes
and
.
This would be
specified in the code as follows:
c
c "nylats" = number of bounding latitudes to define 3 region
c "y_lat" = bounding latitudes {-30, -10.0, 10.0, 30}
c "dy_lat" = resolution centered at "y_lat" {1, 1/3, 1/3, 1}
c
parameter (nylats=4)
data (y_lat(j), j=1,nylats) /-30.0, -10.0, 10.0, 30.0/
data (dy_lat(j),j=1,nylats) /1.0, 0.3333333, 0.3333333, 1.0/