NSIDC global navigation NSIDC home Data Projects Research Cryosphere News Site map
Data section navigation NSIDC Data Catalog Search the Data Catalog Data Help Center Data Tools Data Features
NSIDC DAAC

MODIS Data at NSIDC



Home  |   Data Summaries  |   CMG Browse  |   Image Gallery  |   Order Data  |   News  |   FAQs

MS2GT: The MODIS Swath-to-Grid Toolbox

* Documentation for this product is in development. *
Please contact NSIDC User Services.


Tutorial 4: Gridding 1 km Sea Ice Data over the Ross Sea Using mod29.pl

Requirements

Suppose we want to put some MODIS 1 km sea ice swath data covering the western portion of the Ross Sea into a Polar Stereographic ellipsoidal projection centered at the south pole with the parallel of true scale set to 71 S. We want the vertical axis of the grid pointing due north towards the top of the grid and parallel to 180 E. We want the upper left corner of the grid at exactly 70 S 165 E and the lower right corner near 79 S 160 W. We want the grid resolution to be 1 km and we want to use the WGS84 ellipsoid (equatorial radius of 6378.137 km and an eccentricity of 0.081819190843). We want to grid all available MOD29 "channels." We could simply order MOD29 data; however, as we can see in Supported Data Sets, the latlon data are stored at only 5 km resolution in MOD29 granules. We could have mod29.pl work with only the MOD29 granules (i.e. by setting latlonlistfile to "none"); we decide that 5 km resolution for the latlon data is good enough for our purposes, so we won't order any MOD03 granules.

NOTE: To run this example, you'll need a machine with at least 100 MB of memory and at least 200 MB of free disk space.

Searching for the Data

Let's assume that we happen to know that January 24, 2001 was fairly clear over the western Ross Sea and that there was a significant amount of sea ice present, so we use the EDG to order two MOD29 granules acquired on January 24, 2001 at 1635 and 1640 that appear to cover the Ross Sea. You can use the following values for performing the search using the EDG:

Data Set
MODIS/TERRA SEA ICE EXTENT 5-MIN L2 SWATH 1KM

Search Area
Type in Lat/Lon Range:
Northern latitude: -70.0000
Southern latitude: -79.0000
Western longitude: 165.0000
Eastern longitude: -160.0000

Start Date: 2001-10-24  Time (UTC): 16:00:00
End Date:   2001-10-24  Time (UTC): 17:00:00

The search should find two granules having the following names:
                                                                                  MOD29.A2001024.1635.002.2001089060137.hdf
MOD29.A2001024.1640.002.2001089060152.hdf

Note that January 24, 2001 is day-of-year 024.

Ordering and Downloading the Data

Order and download the above files to some directory we'll call the tutorial_4 directory where you have at least 200 MB of free disk space. Note that you can also download the *.met files that accompany the *.hdf files, but the MS2GT software doesn't use them.

Creating the mod29.pl Command File

Create a text file in the tutorial_4 directory called wross_2001024_1635.csh containing the following line:

mod29.pl . wross_2001024_1635 listfile.txt WRoss1km.gpd 123456

This command specifies the following information (see mod29.pl):

Make wross_2001024_1635.csh executable by typing:

chmod +x wross_2001024_1635.csh

Creating the listfile

Create a text file called listfile.txt in the tutorial_4 directory containing the following two lines:

MOD29.A2001024.1635.002.2001089060137.hdf
MOD29.A2001024.1640.002.2001089060152.hdf

Note that we list the MOD29 files to be gridded.

Creating the gpd and mpp files

See Points, Pixels, Grids, and Cells for a description of the gpd and mpp file formats used by the mapx library in defining a grid and its associated map projection. In Tutorial 3, we created gpd and mpp files from scratch, but we required an exact location for the center of the grid. Here we'll do something similar, but we'll specify an exact location for the center of the upper left cell. We'll start with creating the mpp file, which we'll call S_stereo.mpp, in the ms2gt/grids directory (or, if you don't want to type it in, copy S_stereo.mpp from the ms2gt/tutorial_4 directory to the ms2gt/grids directory):

Polar Stereographic ellipsoid
-90.0 0.0 -71.0 lat0 lon0 lat1
180.0           rotation
100.0           scale (km/map unit)
-90.00  0.00    center lat lon
-90.00  -20.00  lat min max
-180.00 180.00  lon min max
 10.00 15.00    grid
0.00    0.00    label lat lon
1 0 0           cil bdy riv
6378.137        Earth equatorial radius (km) -- wgs84
0.081819190843  eccentricity -- wgs84

In preparing the gpd file which will define our grid, we will need to know following:

We now have all the information we need to create a preliminary gpd file which we'll call WRoss1km0.gpd in the ms2gt/grids directory (or, if you don't want to type it in, copy WRoss1km0.gpd from the ms2gt/tutorial_4 directory to the ms2gt/grids directory):

S_stereo.mpp    map projection parameters       # Western Ross Sea
1006    999     columns rows                    # preliminary values
100             grid cells per map unit         # 1 km
0       0       origin column, row              # origin south pole initially

Once WRoss1km0.gpd has been created in the ms2gt/grids directory, we can use gtest to determine the negative grid coordinates of the center of the map:

gtest

enter .gpd file name: WRoss1km0.gpd
> assuming old style fixed format file

gpd: WRoss1km0.gpd
mpp:S_stereo.mpp

forward_grid:
enter lat lon: -70 165
col,row = -567.976929 -2119.718262    status = 0
lat,lon = -70.000000 164.999985    status = 1
enter lat lon:

inverse_grid:
enter r s:

enter .gpd file name:

So we see that the grid cell coordinates of the center of the map should be column 567.976929 and row 2119.718262. Edit WRoss1km0.gpd to create WRoss1km1.gpd in the ms2gt/grids directory where we have replaced the 0 values for origin with the above values (or, if you don't want to type it in, copy WRoss1km1.gpd from the ms2gt/tutorial_4 directory to the ms2gt/grids directory):

S_stereo.mpp    map projection parameters       # Western Ross Sea
1006    999     columns rows                    # preliminary values
100             grid cells per map unit         # 1 km
567.976929 2119.718262     origin column, row

We still have only approximate values for the number of columns and rows. We use gtest again, this time with WRoss1km1.gpd, to find the grid coordinates of 79 S 160 W which will be close to the center of our lower right cell, and we'll use these grid coordinates to determine the final number of columns and rows for our grid:

gtest

enter .gpd file name: WRoss1km1.gpd
> assuming old style fixed format file

gpd: WRoss1km1.gpd
mpp:S_stereo.mpp

forward_grid:
enter lat lon: -79 -160
col,row = 977.960999 993.297119    status = 1
lat,lon = -79.000000 -160.000000    status = 1
enter lat lon:

inverse_grid:
enter r s:

enter .gpd file name:

So we see that our grid should have round(977.96099) + 1 = 979 columns and round(993.297119) + 1 = 994 rows. Edit WRoss1km1.gpd to create the final gpd file which we'll call WRoss1km.gpd in the ms2gt/grids directory where we have replaced the preliminary numbers of columns and rows with the values 979 and 994, respectively (or, if you don't want to type it in, copy WRoss1km.gpd from the ms2gt/tutorial_4 directory to the ms2gt/grids directory):

S_stereo.mpp    map projection parameters       # Western Ross Sea
979     994     columns rows                    # Polar Stereographic
100             grid cells per map unit         # 1 km
567.976929 2119.718262     origin column, row

We now use gtest a third and final time to check that the upper left and lower right corners of WRoss1km.gpd are where they should be:

gtest

enter .gpd file name: WRoss1km.gpd
> assuming old style fixed format file

gpd: WRoss1km.gpd
mpp:S_stereo.mpp

forward_grid:
enter lat lon:

inverse_grid:
enter r s: 0 0
lat,lon = -70.000000 164.999985    status = 1
col,row = -0.000488 0.000000    status = 1
enter r s: 978 993
lat,lon = -78.997337 -160.003098    status = 1
col,row = 977.999878 993.000488    status = 1
enter r s:

enter .gpd file name:

So we see that the upper left corner values of -70.000000 164.999985 are essentially the same as our target values of 70 S and 165 E and that the lower right corner values of -78.997337 -160.003098 are very close to our target values of 79 S and 160 W.

Running the mod29.pl Command File

Run the shell script containing the mod29.pl command by changing to the tutorial_4 directory, and then typing:

wross_2001024_1635.csh

You'll see lots of messages displayed while the mod29.pl script runs various IDL and C programs. In this example, the programs are:

  1. extract_chan - an IDL procedure for extracting channel data and optionally latlon data from a MOD29 file. This program calls another IDL procedure, modis_ice_read. In this example, extract_chan is called twelve times: six times for each of the two MOD29 files; on each call, channel 1, 2, 3, 4, 5, or 6 is extracted. One binary byte file is created per call containing the channel data. In addition, on the first call for each of the MOD29 files, the latitude and longitude data are extracted and two binary floating-point files are created per call containing latitude and longitude data, respectively. The mod29.pl script concatenates the two latitude files and the two longitude files to create a single latitude file and a single longitude file, and the pre-concatenated files are deleted. The mod29.pl script concatenates each pair of channel files, creates six concatenated channel files, and then deletes the pre-concatenated channel files.
  2. ll2cr - a C program for converting latitude, longitude pairs to column, row pairs for a particular grid. The grid specified in this example is WRoss1km.gpd. The concatenated latitude and longitude files are read and two binary floating-point files are created containing column and row numbers, respectively. The mod29.pl script then deletes the concatenated latitude and longitude files.
  3. interp_colrow - an IDL procedure for interpolating column, row pairs from a lower resolution swath format to a higher resolution swath format, in this case from 5 km to 1 km. The interpolation must be performed on a scan's worth of data at a time because the column and row numbers have discontinuities at scan boundaries. The interp_colrow procedure calls a function called congridx for each scan's worth of column and row arrays. The congridx function is called once for the column array and once for the row array. The congridx function first performs an extrapolation of the given array to a slightly expanded array, which it then interpolates (bilinear interpolation is used here) to a fully expanded array. The final array is extracted from the fully expanded array. The mod29.pl script then deletes the pre-interpolated column and row files.
  4. fornav - a C program for performing forward navigation from a swath to a grid. In this example, fornav is called six times, once for each of the six concatenated channel files. On each call, the column and row files are read as well. An elliptical weighted maximum algorithm is applied during forward navigation to minimize holes and aliasing in the gridded data. One binary byte file (or, in the case of channel 3 Ice Surface Temperature, one binary 2-byte unsigned integer file) is created per call containing the gridded data. The mod29.pl script then deletes the concatenated channel files as well as the column and row files.

The final message should contain the string:

MOD29: MESSAGE: done

Examining the Results

Enter the command:

ls -l *.img

You should see something like this:

-rw-r--r--    1 haran    nsidc      973126 May  1 13:15 wross_2001024_1635_rawm_icer_00979_00994.img
-rw-r--r--    1 haran    nsidc      973126 May  1 13:16 wross_2001024_1635_rawm_icet_00979_00994.img
-rw-r--r--    1 haran    nsidc      973126 May  1 13:16 wross_2001024_1635_rawm_icrt_00979_00994.img
-rw-r--r--    1 haran    nsidc      973126 May  1 13:16 wross_2001024_1635_rawm_irqa_00979_00994.img
-rw-r--r--    1 haran    nsidc      973126 May  1 13:16 wross_2001024_1635_rawm_itqa_00979_00994.img
-rw-r--r--    1 haran    nsidc     1946252 May  1 13:16 wross_2001024_1635_rawm_temp_00979_00994.img

Each of the first five files listed contains a gridded array of 979 columns and 994 rows of binary byte values (979 * 994 * 1 = 973126 bytes). The sixth file listed (the "temp" or Ice Surface Temperature file) contains a gridded array of 979 columns and 994 rows of binary 2-byte unsigned values (979 * 994 * 2 =  1946252 bytes).

The file naming convention for gridded MOD29 files is as follows:

<tag>_<conversion><weight_type>_<chan>_<columns>_<rows>.img


Last updated: January 2, 2002 by
Terry Haran
NSIDC-CIRES
449 UCB
University of Colorado
Boulder, CO 80309-0449
303-492-1847
tharan@nsidc.org