TRANLIST

Transform lists of positions

Description:

This routine transforms positions stored in position lists. Transformations are defined either by a set of 6 coefficients for the linear transform, by an algebraic expression given by you, by using a forward or inverse mapping from a TRANSFORM structure, or by a mapping between two frames stored in a WCS component.

Usage:

tranlist inlist outlist trtype

Parameters:

EPOCHIN = _DOUBLE (Read)
If a "Sky Co-ordinate System" specification is supplied (using parameter FRAMEIN) for a celestial co-ordinate system, then an epoch value is needed to qualify it. This is the epoch at which the supplied sky positions were determined. It should be given as a decimal years value, with or without decimal places ("1996.8" for example). Such values are interpreted as a Besselian epoch if less than 1984.0 and as a Julian epoch otherwise. [Dynamic]
EPOCHOUT = _DOUBLE (Read)
If a "Sky Co-ordinate System" specification is supplied (using parameter FRAMEOUT) for a celestial co-ordinate system, then an epoch value is needed to qualify it. This is the epoch at which the supplied sky positions were determined. It should be given as a decimal years value, with or without decimal places ("1996.8" for example). Such values are interpreted as a Besselian epoch if less than 1984.0 and as a Julian epoch otherwise. [Dynamic]
FA-FZ = LITERAL (Read)
These parameters supply the values of "sub-expressions" used in the expressions XFOR and YFOR. These parameters should be used when repeated expressions are present in complex transformations. Sub-expressions may contain references to other sub-expressions and constants (PA-PZ). An example of using sub-expressions is:

XFOR > PAASIND(FA/PA)X/FA
YFOR > PAASIND(FA/PA)Y/FA
FA > SQRT(XX+YY)
PA > 100D0

FORWARD = _LOGICAL (Read)

If TRTYPE="STRUCT" is chosen then this parameter’s value controls whether the forward or inverse mapping in the transform structure is used. [TRUE]
FRAMEIN = LITERAL (Read)
If TRTYPE="WCS" then the transformation is a mapping from the frame specified by this parameter to that specified by the FRAMEOUT parameter. The value of this parameter can be one of the following:
  • A domain name such as SKY, AXIS, PIXEL, etc.
  • An integer value giving the index of the required Frame within the WCS component.
  • A "Sky Co-ordinate System" (SCS) value such as EQUAT(J2000) (see section "Sky Co-ordinate Systems" in SUN/95).
A domain name is usually the most suitable choice. [PIXEL]
FRAMEOUT = LITERAL (Read)
If TRTYPE="WCS" then the transformation is a mapping from the frame specified by the FRAMEIN parameter to that specified by this parameter. The value of this parameter can be one of the following:
  • A domain name such as SKY, AXIS, PIXEL, etc.
  • An integer value giving the index of the required Frame within the WCS component.
  • A "Sky Co-ordinate System" (SCS) value such as EQUAT(J2000) (see section "Sky Co-ordinate Systems" in SUN/95).
  • Null (!), indicating the Current frame.
[!]
INEXT = _LOGICAL (Read)
If NDFNAMES is TRUE and the transformation is to be specified using a WCS component (TRTYPE="WCS"), then this parameter controls whether or not the WCS component should be located in each of the NDFs. If set FALSE, the WCSFILE parameter will be used.

If NDFNAMES is TRUE and the transformation is to be specified using a TRANSFORM structure (TRTYPE="STRUCT") then this parameter controls whether or not the structure should be located in the CCDPACK extension of each of the images. If set FALSE, the TRANSFORM parameter will be used.

If this option is chosen then the WCS component or transform structure in EACH image will be applied to the associated position list. So for instance if you have a set of registered images and positions these may be transformed all at once to and from the reference coordinate system. [TRUE]

INLIST = LITERAL (Read)
This parameter is used to access the names of the lists which contain the positions and, if NDFNAMES is TRUE, the names of the associated images. If NDFNAMES is TRUE the names of the position lists are assumed to be stored in the extension of the images (in the CCDPACK extension item CURRENT_LIST) and the names of the images themselves should be given in response (and may include wildcards).

If NDFNAMES is FALSE then the actual names of the position lists should be given. These may not use wildcards but may be specified using indirection (other CCDPACK position list processing routines will write the names of their results files into a file suitable for use in this manner) the indirection character is "^".

LOGFILE = FILENAME (Read)
Name of the CCDPACK logfile. If a null (!) value is given for this parameter then no logfile will be written, regardless of the value of the LOGTO parameter.

If the logging system has been initialised using CCDSETUP then the value specified there will be used. Otherwise, the default is "CCDPACK.LOG". [CCDPACK.LOG]

LOGTO = LITERAL (Read)
Every CCDPACK application has the ability to log its output for future reference as well as for display on the terminal. This parameter controls this process, and may be set to any unique abbreviation of the following:
  • TERMINAL – Send output to the terminal only

  • LOGFILE – Send output to the logfile only (see the LOGFILE parameter)

  • BOTH – Send output to both the terminal and the logfile

  • NEITHER – Produce no output at all

If the logging system has been initialised using CCDSETUP then the value specified there will be used. Otherwise, the default is "BOTH". [BOTH]

NAMELIST = _FILENAME
Only used if NDFNAMES is FALSE. This specifies the name of a file to contain a listing of the names of the output lists. This file may then be used to pass the names onto another CCDPACK application using indirection. [TRANLIST.LIS]
NDFNAMES = _LOGICAL (Read)
If TRUE then the routine will assume that the names of the position lists are stored in the NDF CCDPACK extensions under the item "CURRENT_LIST". The names will be present in the extension if the positions were located using a CCDPACK application (such as FINDOBJ). Using this facility allows the transparent propagation of position lists through processing chains.

If a global value for this parameter has been set using CCDSETUP then that value will be used. [TRUE]

OUTLIST = FILENAME (Write)
A list of names specifying the result files. The names of the lists may use modifications of the input names (image names if available otherwise the names of the position lists). So if you want to call the output lists the same name as the input images except to add a type use:

OUTLIST > .FIND

If no image names are given (NDFNAMES is FALSE) then if you want to change the extension of the files (from ".CENT" to ".TRAN" in this case) use:

OUTLIST > |CENT|TRAN|

Or alternatively you can use an explicit list of names. These may use indirection elements as well as names separated by commas.

PA-PZ = _DOUBLE (Read)
These parameters supply the values of constants used in the expressions XFOR and YFOR. Using parameters allows the substitution of repeated constants (with extended precisions?) using one reference. It allows easy modification of parameterised expressions (expressions say with an adjustable centre) provided the application has not been used to apply a new transform using expressions. The parameter PI has a default value of 3.14159265359D0. An example of using parameters is:

XFOR > SQRT(FXFX+FYFY)
YFOR > ATAN2D(-FY,FX)
FX > X-PA
FY > Y-PB
PA > X-centre-value
PB > Y-centre-value

This maps (X,Y) to (R,THETA) about a specified centre.

TRTYPE = LITERAL (Read)
The form of the transformation which is to be applied to the positions in the input lists. This can take the values
  • COEFF

  • EXPRES

  • WCS

  • STRUCT

or unique abbreviations of.

COEFF means that a linear transformation of the form:

X’ = A + BX + CY
Y’ = D + EX + FY

is to be applied to the data. In this case a prompt for the values of the coefficients A-F is made.

EXPRES indicates that you want to supply algebraic-like expressions to transform the data. In this case the parameters XFOR and YFOR are used to obtain the expressions. Things like:

XFOR > 2.5COS(X)+LOG10(Y)
YFOR > 2.5SIN(X)+EXP(Y)

are allowed. The expression functions must be in terms of X and Y. For a full set of possible functions see SUN/61 (TRANSFORM).

WCS means that the transformation will be taken from the WCS component of an image. In this case the name of the image containing the WCS component should be supplied (this will be picked up automatically through the association of an image and a position list if NDFNAMES and INEXT are both TRUE). The transformation will be that between the frames defined by the FRAMEIN and FRAMEOUT parameters.

STRUCT signifies that a transform structure (probably created by REGISTER or CCDEDIT) is to be applied to the data. In this case the name of the object containing the structure should be supplied (this will be picked up automatically through the association of an image and a position list if NDFNAMES and INEXT are both TRUE) and whether to use the forward or inverse mappings (the FORWARD parameter). [COEFF]

TR( 6 ) = _DOUBLE (Read)
If TRTYPE="COEFF" is chosen then the values of this parameter are the 6 coefficients of a linear transformation of the type:

X’ = PA + PBX + PCY
Y’ = PD + PEX + PFY

The default is the identity transformation. [0,1,0,0,0,1] [PA,PB,PC,PD,PE,PF]

TRANSFORM = TRN (Read)
If TYPE="STRUCT" and INEXT=FALSE then this parameter is used to access the HDS object which contains the transform structure. The standard place to store a transform structure (in CCDPACK) is
  • NDF_NAME.MORE.CCDPACK.TRANSFORM

Only one structure can be used at a time.

WCSFILE = NDF (Read)
If TRTYPE="WCS" and INEXT is false, then this parameter gives the name of the image containing the WCS component which is to be used for the transformation.
XFOR = LITERAL (Read)
If TRTYPE="EXPRES" is chosen then this parameter specifies the transformation that maps to the new X coordinate. The expression can contain constants, arithmetic operators (+,-,/,,) and the functions described in SUN/61 (SIN,COS,TAN, etc.).

As an inverse mapping is not required in this application there is no need to use the X’=func(X,Y) form only func(X,Y) is required, however, the variables must be given as "X" and "Y".

YFOR = LITERAL (Read)
If TRTYPE="EXPRES" is chosen then this parameter specifies the transformation that maps to the new Y coordinate. The expression can contain constants, arithmetic operators (+,-,/,,) and the functions described in SUN/61 (SIN,COS,TAN, etc.).

As an inverse mapping is not required in this application there is no need to use the Y’=func(X,Y) form only func(X,Y) is required, however, the variables must be given as "X" and "Y".

Examples:

tranlist inlist= outlist=.reg trtype=wcs framein=pixel
In this example all the images in the current directory are accessed and their associated position lists are opened. The WCS component of each image is used to transform the coordinates in the position lists from pixel coordinates to coordinates in the Current coordinate frame. The output lists are called image-name.reg and are associated with the images.
tranlist inlist="" outlist=".tran" trtype=struct forward=false
In this example transform structures in each of the images in the current directory are used to transform their associated position lists. The inverse mappings are used.
tranlist inlist=_reduced outlist=.off trtype=coeff tr=[10,1,0,20,0,1]
In this example the position lists associated with the images _reduced are transformed using the linear fit coefficients [10,1,0,20,0,1] resulting in a shift of all the positions in these lists of +10 in X and +20 in Y. The output lists are called image_name.off and are now associated with the images.
tranlist inlist=_resam outlist=.rot trtype=coeff tr=[0,0.707,-0.707,0,0.707,0.707]
In this example a linear transformation is used to rotate the positions by 45 degrees about [0,0]. The linear coefficients for a rotation are specified as [0, cos, -sin, 0, sin, cos].
tranlist inlist=here outlist=reflected.dat trtype=express
xfor=-x yfor=-y
In this example a transformation expression is used to reflect the positions stored in the list associated with image here about the X and Y axes. A similar effect could be achieved with trtype=coeff and tr=[0,-1,0,0,0,-1].
tranlist inlist=image_with_list outlist=.tran trtype=express xfor=(fx(1d0+pa(fxfx+fyfy)))ps+px
yfor=(fy(1d0+pa(fxfx+fyfy)))ps+py fx=(x-px)/ps fy=(y-py)/ps pa=pincushion_distortion_factor px=X-centre-value py=Y-centre-value ps=scale_factor
In this example a general transformation (which is of the type used when applying pin cushion distortions) is applied to the position list associated with the image image_with_list. The transformation is parameterised with an offset and scale (converts pixel coordinates to one projection radius units) applied to the input coordinates and a pincushion distortion parameter pa.
tranlist ndfnames=false inlist="list1,list2,list3" outlist="outlist1,outlist2,outlist3" namelist=newfiles
In this example the input position lists are not associated with images (ndfnames=false) And have to be specified by name (no wildcards allowed). The output lists are also specified in this fashion, but, the same effect could have been achieved with outlist=out as the input list names are now used as as modifiers for the output list names (the image names are always used when they are available – see previous examples). The names of the output lists are written to the file newfiles, this could be used to specify the names of these files to another application using indirection (e.g inlist=^newfiles, with ndfnames=false again). The transformation type is not specified in this example and will be obtained by prompting.

Notes:

CCDPACK supports data in two formats.

CCDPACK format - the first three columns are interpreted as the following.

The column one value must be an integer and is used to identify positions which are the same but which have different locations on different images. Values in any other (trailing) columns are usually ignored.

EXTERNAL format - positions are specified using just an X and a Y entry and no other entries.

This format is used by KAPPA applications such as CURSOR.

Comments may be included in a file using the characters "#" and "!". Columns may be separated by the use of commas or spaces.

If NDFNAMES is TRUE then the item "CURRENT_LIST" of the .MORE.CCDPACK structure of the input NDFs will be located and assumed to contain the names of the lists whose positions are to be transformed. On exit this item will be updated to reference the name of the transformed list of positions.

This application may also access the item "TRANSFORM" from the NDF extensions if NDFNAMES and INEXT are TRUE and TRTYPE="STRUCT".

Behaviour of parameters

All parameters retain their current value as default. The "current" value is the value assigned on the last run of the application. If the application has not been run then the "intrinsic" defaults, as shown in the parameter help, apply.

Retaining parameter values has the advantage of allowing you to define the default behaviour of the application but does mean that additional care needs to be taken when using the application on new datasets or after a break of sometime. The intrinsic default behaviour of the application may be restored by using the RESET keyword on the command line.

Certain parameters (LOGTO, LOGFILE and NDFNAMES) have global values. These global values will always take precedence, except when an assignment is made on the command line. Global values may be set and reset using the CCDSETUP and CCDCLEAR commands.