Help for CAMPARAM

CAMPARAM is a utility program that reads information from the label of a
Voyager image and returns it to a TAE procedure.  The id values returned for
Camera, Scan rate, Spacecraft, and Filter are designed to be compatible with
the naming convention of the Voyager calibration files (FICOR files).  In 
this way, the complete file name of the appropriate calibration file may be
constructed from the values output from CAMPARAM.
 
Its use is completely defined by the following examples:
 
	PROCEDURE		!getting camera,scan,sc,filter,fds
	BODY
	LOCAL	CAMERA	TYPE=STRING
	LOCAL	SCAN	TYPE=INTEGER
	LOCAL	SC	TYPE=INTEGER
	LOCAL	FILTER	TYPE=STRING
	LOCAL   FDS     TYPE=INTEGER
	LOCAL   EXPRNG  TYPE=STRING
	CAMPARAM inp SC SCAN CAMERA FILTER FDS EXPRNG
 
	 <rest of procedure>
 
	END-PROC


	PROCEDURE		!getting camera,scan,sc,filter
	BODY
	LOCAL	CAMERA	TYPE=STRING
	LOCAL	SCAN	TYPE=INTEGER
	LOCAL	SC	TYPE=INTEGER
	LOCAL	FILTER	TYPE=STRING
	CAMPARAM inp SC SCAN CAMERA FILTER
 
	 <rest of procedure>
 
	END-PROC
 
Note that all the parameters are output parameters.

PROGRAM HISTORY:

Written by: Charles Avis
Cognizant programmer: Charles Avis
Revisions:
    Made portable for UNIX ... J. Turner (CRI) 02-Jan-95
    22 May 2000 AXC     Modified and updated tstcamparam.pdf so test data
                        can be handled by both VMS and UNIX system (AR-104183).


PARAMETERS:


INP

Input image filename.

SC

Spacecraft number.

SCAN

Scan rate.

CAMERA

Camera (WA or NA).

FILTER

Filter name.

FDS

FDS count of image

EXPRNG

Exposure range of image

See Examples:


Cognizant Programmer: