When using pre-defined geographic area names in GEMPAK as defined in $GEMTBL/stns/geog.tbl, a default PROJ projection and GAREA is defined. The default projection can be used by specifying DEF with the desired GAREA value. For example, using the North America geographic name NAM with the default projection:
|
|
   
To properly display the CONUS region using the Mercator region above, the lower left longitude value must be moved further west, and the upper right latitude value must be mored further north!
When using gridded data, it is often useful to know the projection of the grid points in order to prevent unexpected clipping in the data set.
We've already seen that GEMPAK can use multiple files for grid diagnostics. GEMPAK can perform grid calculations which combine grids with differing projection and grid point spacing (introduced in GEMPAK5.8.1). If the grids are not of the same projection and grid point spacing, the first grid file in the list defines the internal navigation used for the computation of the diagnostic. So, an entry of "GDFILE = eta + gfs" is remapped to the eta file navigation, while "gfs + eta" is remapped to the gfs file navigation.
Many model data sets are transmitted on widely used grids. Some examples are:
Grid Name |
Region of Coverage |
Resolution |
Models Commonly Available |
| Grid 211 | CONUS | 80 Km | NAM, NGM, GFS, RUC |
| Grid 212 | CONUS | 40 Km | NAM, GFS |
| Grid 202 | CONUS | 190.5 Km | GFS, NGM |
| Grid 213 | CONUS | 95.25 Km | GFS, NGM |
| WAFS/Thinned | Global | 1.25 degree | GFS, UKMet |
If we want to use model data with objective analyses of surface or upperair data sets, we can grid our data onto the same grid as the model data we have, although this is not required. Luckily, this is quite easy using the CPYFIL parameter with GDCFIL.
If we have two gridded data sets that are not of the same projection or resolution, we can interpolate one grid to the projection used by the other data set. The program GDBIINT can interpolate gridded data from one projection to another.
Map projections can be chosen based on the desired map properties. For example:
Orthographic projection is used to repesent the Earth as viewed from infinity.GAREA = 0;-105;0;-105 PROJ = ort/50;-105;0 |
|
The cylindrical projection can be rotated to view both poles at the same time.GAREA = 0;0;0;0 PROJ = ced/0;-105;45 |
|
Any straight line drawn on a Gnomic map is on a great circle, and can be used to find the shortest path between two points. Gnomic is often useful for ocean and seismic waves which tend to travel along great circles.GAREA = -10;145;60;-80 PROJ = gno/21;-157;0 |
|