Parent Topic: STG

PARAMETERS

STG is controlled by the following global parameters:

Name     Prompt                                  Count     Type
FILI     Database Input File Name                1-64      Char
FILO     Database Output File Name               0-64      Char
DBIC     Database Input Channel List             1         Int
DBOC     Database Output Channel List            1         Int
DBEC     Database Elevation Channel List         0-1       Int
INPXSZ   Input Spacing (range, azimuth)          2         Real
RESAMPLE Resample mode: NEAR/BILIN/CUBIC         4         Char
ESCALE   Elevation Scale and Offset              0-2       Real
DELAY    Time Delay to First Input Pixel         1         Real
OALTI    Altitude Above Sea Level (m)            1         Real
OHEAD    Heading Angle in Degrees                1         Real
OPOINT   Point on Flight Path (E, N)             2         Real
OCOEFF   Coefficients for Line Function          2-9       Real
RANGETYP Range Data Type: SLANT/GROUND           1-6       Char
HEIGHT   Height Above Ground (m)                 0-1       Real

FILI

Specifies the filename of the PCIDSK image database containing the input slant or ground range image to be registered.

 EASI>FILI="filespec"

FILO

Specifies the filename of the output PCIDSK image database to which the corrected ground range image should be written. This file must also contain the elevation data channel, if DBEC is specified. FILO must exist before running STG. If FILO is not specified, FILO defaults to FILI.

 EASI>FILO=                    | FILI and FILO are the same 
 EASI>FILO="filespec"          | FILI and FILO are different

DBIC

Specifies the image channel on the input file (FILI) which contains the input slant or ground range radar imagery.

 EASI>DBIC=i
If FILO=FILI, then DBIC cannot be the same as DBOC or DBEC.

DBOC

Specifies the image channel on the output file (FILO) to which the output ground range imagery will be written. DBOC cannot be the same as DBEC.

 EASI>DBOC=j
If FILO=FILI, then DBOC cannot be the same as DBIC.

DBEC

Specifies the image channel on the output file (FILO) containing the elevation data to which to register the input slant or ground range radar image. If there is no elevation data corresponding to the output area, then DBEC is not specified and the elevation is assumed to be zero for the entire output window.

 EASI>DBEC=k
 EASI>DBEC=                    | no elevation data
                               | elevation assumed to be 0
DBEC cannot be the same as DBOC. If FILO=FILI, then DBEC cannot be the same as DBIC.

INPXSZ

Specifies the pixel spacing of the input slant or ground range radar image in metres, for both horizontal (range) and vertical (azimuth) directions.

 EASI>INPXSZ=Xsize,Ysize       | two positive real values

RESAMPLE

Specifies the type of resampling or image data desired.

 EASI>RESAMPLE="NEAR"            | Nearest Neighbour
 EASI>RESAMPLE="BILIN"           | Bilinear Interpolation
 EASI>RESAMPLE="CUBIC"           | Cubic Convolution

ESCALE

Optionally specifies the scale and offset to apply to the elevation values in the elevation channel (DBEC) to convert values to metres. If not specified, scale defaults to 1, and offset defaults to 0.

 EASI>ESCALE=                   | no scaling
 EASI>ESCALE=scale              | scale (no offset)
 EASI>ESCALE=scale,offset       | scale and offset
The equation for the conversion is:

 elevation in metres = scale * (value + offset)
For example, to convert elevation values from feet to metres, where a value of 0 represents 1000 feet:

 EASI>ESCALE=0.3048,1000        | metres = 0.3048 * (value + 1000)

DELAY

Specifies the radar time delay (in microseconds) to the first input pixel.

 EASI>DELAY=microseconds         | positive real number
DELAY is used to determine the slant range distance in metres to the first input pixel in the radar image. This is calculated using the following formula:

   slant range distance = DELAY * speed of light / 2
The speed of light is 299.793 metres per microsecond. DELAY * speed of light is the distance to the ground and back. It is divided by 2 to give the distance one-way.

OALTI

Specifies the aircraft platform altitude (in metres) above sea level.

 EASI>OALTI=x                    | positive real value
This parameter is output by FLIGHT and should remain unchanged.

OHEAD

Specifies the aircraft heading (in degrees) clockwise from due north.

 EASI>OHEAD=angle                | real value between 0 and 360
This parameter is output by FLIGHT and should remain unchanged

OPOINT

Specifies the UTM coordinates of any point on the flight path.

 EASI>OPOINT=easting,northing    | positive real values
This parameter is output by FLIGHT and should remain unchanged.

OCOEFF

Specifies the coefficients of the polynomial function which determines the line number in the input radar image, given the distance along the flight path in metres from OPOINT. This parameter must be calculated by the FLIGHT program.

Coefficients a,b,c,d,e,f,g,h,i are assigned in ascending order:

     L = a + (b * D   ) + (c * D**2) + (d * D**3) + (e * D**4)
           + (f * D**5) + (g * D**6) + (h * D**7) + (i * D**8)
D is the distance in metres from OPOINT, and L is the input radar image line number. D can be positive or negative, depending on whether the input line number is ahead of or behind the coordinates specified by OPOINT.

RANGETYP

Specifies the type of input radar image which is to be corrected. Two types of radar data are supported: slant range and ground range.

    EASI>RANGETYP="SLANT"        | slant range data
    EASI>RANGETYP="GROUND"       | ground range data

HEIGHT

Specifies the assumed aircraft height in metres above the ground, when the input radar data is ground range (instead of slant range). HEIGHT must be set to the aircraft height that was assumed when the input ground range image was created.

 EASI>HEIGHT=x                   | positive real value
If RANGETYP="GROUND", HEIGHT must be specified. If RANGETYP="SLANT", HEIGHT is ignored. The OALTI parameter must still always be specified.


Parent Topic: STG
About PCI Help Gateway