Parent Topic: STG
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
EASI>FILI="filespec"
EASI>FILO= | FILI and FILO are the same EASI>FILO="filespec" | FILI and FILO are different
EASI>DBIC=iIf FILO=FILI, then DBIC cannot be the same as DBOC or DBEC.
EASI>DBOC=jIf FILO=FILI, then DBOC cannot be the same as DBIC.
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.
EASI>INPXSZ=Xsize,Ysize | two positive real values
EASI>RESAMPLE="NEAR" | Nearest Neighbour EASI>RESAMPLE="BILIN" | Bilinear Interpolation EASI>RESAMPLE="CUBIC" | Cubic Convolution
EASI>ESCALE= | no scaling EASI>ESCALE=scale | scale (no offset) EASI>ESCALE=scale,offset | scale and offsetThe 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)
EASI>DELAY=microseconds | positive real numberDELAY 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 / 2The 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.
EASI>OALTI=x | positive real valueThis parameter is output by FLIGHT and should remain unchanged.
EASI>OHEAD=angle | real value between 0 and 360This parameter is output by FLIGHT and should remain unchanged
EASI>OPOINT=easting,northing | positive real valuesThis parameter is output by FLIGHT and should remain unchanged.
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.
EASI>RANGETYP="SLANT" | slant range data
EASI>RANGETYP="GROUND" | ground range data
EASI>HEIGHT=x | positive real valueIf RANGETYP="GROUND", HEIGHT must be specified. If RANGETYP="SLANT", HEIGHT is ignored. The OALTI parameter must still always be specified.