| 0 |
- |
The value assigned to the
left-hand edge of the grid
|
| 1 |
- |
The value assigned to the
right-hand edge of the grid
|
| 2 |
- |
The value assigned to the bottom
edge of the grid.
|
| 3 |
- |
The value assigned to the top
edge of the grid.
|
| 4 |
- |
The number of cells in the grid
in the X direction (left to right)
|
| 5 |
- |
The number of cells in the grid
in the Y direction (bottom to top). This is 1 a 1D grid.
|
| 6 |
- |
Storage method associated with
the X coordinate of the data. This is either BAND or POINT.
POINT storage localizes data within the single grid column
containing the average of X1 and X2. BAND spreads the data
over all columns between X1 and X2.
|
| 7 |
- |
Storage method associated with
the Y coordinate of the data. This is either BAND or POINT.
POINT storage localizes data within the single grid column
containing the average of Y1 and Y2. BAND spreads the data
over all columns between Y1 and Y2.
|
| 8 |
- |
Grid storage order. This is
either ROW or COLUMN. ROW causes the 2D grid to be stored
row by row in the 1D Grid array and COLUMN causes
the grid matrix to be stored column by column in the 1D
Grid array.
|
| 9 |
- |
Zero handling. This is either
IGNORE or KEEP. IGNORE causes zero data to be excluded from
the grid. KEEP causes zero data to be included in the grid.
|
| 10 |
- |
The to do flag. This is one or
more of the Key Words NEW, ADD, END. When multiple key
words are used they must be separated by a :. NEW
causes the Grid to be initialized. ADD causes the data
passed into the routine to be added to the grid, and END
causes the grid to be normalized. The commands can be
performed in separate calls to the procedure and when linked
together in a single call are performed in the order given.
The ADD command may be invoked multiple times between a NEW
and END command.
|
| 11 |
- |
The value to initialize the
grid to.
|
| 12 |
- |
The value to set bad grid cells
to. These cells are ignored by all procedures which perform
grid cell manipulations.
|
| 13 |
- |
Data lower limit. Input data
below this value is ignored.
|
| 14 |
- |
Data upper limit. Input data
above this value is ignored.
|
| 15 |
- |
X direction cyclic flag. This is
YES if the grid is cyclic in X and NO otherwise.
|
| 16 |
- |
Y direction cyclic flag. This is
YES if the grid is cyclic in Y and NO otherwise.
|