Help for MARSINTERP

PURPOSE:

MARSINTERP interpolates and extrapolates holes in the Digital Elevation Models(DEM)
Based on John Wright's flood fill code.

EXECUTION:

marsuvw inp=data.dem out=data.interp
where:
data.xyz is an input 3-band image of type REAL with the X, Y and Z values
at that pixel in meters (the unit is actually irrelevant).
data.uvw is an output 3-band image of type REAL the U, V, and W components
of the unit vector for each pixel.


METHOD:


HISTORY:
  2013-10-20 O. Pariser - Initial version based on John Wright's flood fill code.
  2014-05-12 Lala P. - Implemented Natgrid into the program
  2019-10-17 W. Bunch - IDS-7926 - initialized some variables; cleaned up -Wall warnings.

COGNIZANT PROGRAMMER: Lala P.


PARAMETERS:


INP

Input images. Must be 1 3-band file or (x,y,z) triplet.

OUT

Output files. Mast be 1 or 3 filenames (with 3 or 1 bands each).

NAVTABLE

Corrected navigation filename.

SEPARATION

Max distance for points to use in plane fit.

ERROR

Max plane fit error.

MIN_POINTS

Min # of points in the plane fit.

RADIUS

Number of pixels to consider around the pixel of interest.

REJECT

Sets ratio for rejecting points.

X_CENTER

Center of bounding box.

Y_CENTER

Center of bounding box.

BOX_RADIUS

Half-width of bounding box.

FLIP_THRESH

Threshold for flipping the normal.

FLIP_DIST

Minimum distance for sign flipping.

CONFIG_PATH

Path used to find configuration/calibration files.

POINT_METHOD

Specifies a mission- specific pointing method to use

NOSITE

Disables coordinate system sites.

RSF

Rover State File(s) to use.

DEBUG_RSF

Turns on debugging of RSF parameter.

COORD

Coordinate system to use.

COORD_INDEX

Coordinate system index for some COORD/mission combos.

FIXED_SITE

Which site is FIXED for rover missions.

SOLUTION_ID

Solution ID to use for COORD_INDEX

DATA_SET_NAME

Specifies the full name given to a data set or a data product.

DATA_SET_ID

Specifies a unique alphanumeric identifier for a data set or data product.

RELEASE_ID

Specifies the unique identifier associated with the release to the public of all or part of a data set. The release number is associated with the data set, not the mission.

PRODUCT_ID

Specifies a permanent, unique identifier assigned to a data product by its producer.

PRODUCER_ID

Specifies the unique identifier of an entity associated with the production a data set.

PRODUCER_INST

Specifies the full name of the identity of an entity associated with the production of a data set.

TARGET_NAME

Specifies a target.

TARGET_TYPE

Specifies the type of a named target.

METHOD

Method used to interpolate the image.

EXTRAPOLATE

Specifies if extrapolation needs to be done.

See Examples:


Cognizant Programmer: