- LINEAR
- Linear axes.
- DIRECTION
- A direction. Usually RA/DEC.
- SPECTRAL
- A spectral axis.
- STOKES
- A Stokes axis.
- TABULAR
- A one-dimensional Cooordinate system, usually created from a table although it can also be purely linear.
- COORDSYS
- A CoordinateSystem (a collection of Coordinates).
- DEFAULT
- Default; formatter decides
- SCIENTIFIC
- Scientific format (e.g. -1.2397E+03)
- FIXED
- Fixed floating format (e.g. 12.134)
- MIXED
- Either scientific or floating point, auto-selected by the C++ STL formatting routines. May not be available for all Coordinate types.
- TIME
- HHH:MM:SS.SSS style formatting
The fundamental model is that a pixel is first converted into a relative physical coordinate by:
Both absolute and relative coordinates are supported. The main interface supports conversion between absolute pixel and absolute world coordinate. There are then functions to convert absolute coordinates to relative and vice versa. A relative pixel coordinate is defined according to
relative = absolute - reference
A relative world coordinate is similar, although there may be deviations from this formula (e.g. for DirectionCoordinate a cos(latitude) term is incorporated and for StokesCoordinate relative world coordinates are defined to be the same as absolute world coordinates.
All absolute pixels coordinates are zero relative.
List the type of this Coordinate object.
How many world/pixel axes are there in this Coordinate? While the number of world and pixel axes will generally be the same, it is not a requirement. For example, in CoordinateSystem you could remove a pixel axis and leave the corresponding world axis. Also, if we ever implement a "SlicedCoordinate" class then there would be more world than pixel coordinates (the pixel coordinate would be a pixel number along the slice, whereas the world axes would continue to be RA/DEC).
Convert an absolute pixel position to an absolute world position or vice versa. Returns True if the conversion succeeds, otherwise it returns False and method errorMessage contains an error message. The input vector must be of length nPixelAxes or nWorldAxes. The output vector is resized appropriately.
Mixed absolute pixel/world coordinate conversion. worldIn and worldAxes are vectors of length nWorldAxes. pixelIn and pixelAxes are of length nPixelAxes. worldAxes(i) = True specifies you have given a world value in worldIn(i) to convert to pixel. pixelAxes(i)=True specifies you have given a pixel value in pixelIn(i) to convert to world. You cannot specify the same axis via worldAxes and pixelAxes. Values in pixelIn are converted to world and put into worldOut in the appropriate world axis location. Values in worldIn are copied to worldOut. Values in worldIn are converted to pixel and put into pixelOut in the appropriate pixel axis location. Values in pixelIn are copied to pixelOut. worldMin and worldMax specify the range of the world coordinate (in the world axis units of that world axis in the CoordinateSystem) being solved for in a mixed calculation for each world axis. They are only actually needed for DirectionCoordinates and for all other Coordinates the relevant elements can be undefined. If you don't know, use -180 to 180 degrees for longitude, and -90 to 90 for latitude. Removed axes are handled (for example, a removed pixel axis with remaining corresponding world axis will correctly be converted to world using the replacement value). Returns True if the conversion succeeds, otherwise it returns False and errorMessage() contains an error message. The output vectors are resized.
Set the world min and max ranges, for use in function toMix, for a lattice of the given shape for this coordinate. The default implementation here sets the range for pixels dangling 25% off the image. Returns False if fails with a reason in errorMessage(). setDefaultWorldMixRanges sets the range for each axis to +/-1e99 The ranges remain zero length vectors until you explicitly initialize them.
Batch up a lot of transformations. The first (most rapidly varying) axis of the matrices contain the coordinates. Returns False if any conversion failed and errorMessage() will hold a message. The failures array (True for fail, False for success) is the length of the number of conversions and holds an error status for each conversion. The default implementation is provided that works with the "single" version of toWorld and toPixel, but for maximum efficiency these should be overridden.
Make absolute coordinates relative and vice-versa (with respect to the reference value). Vectors must be length nPixelAxes() or nWorldAxes() or memory access errors will occur
Make absolute coordinates relative and vice versa with respect to the given reference value. Add the other functions in this grouping as needed. Vectors must be length nPixelAxes() or nWorldAxes() or memory access errors will occur
Batch up a lot of absolute/relative transformations. Parameters as above for toWorldMany and toPixelMany
Return the requested attributed.
Set the requested attribute. Note that these just change the internal values, they do not cause any recomputation.
Change the units. Adjust the increment and reference value by the ratio of the old and new units. This implies that the units must be known Unit strings, and that they must be compatible, e.g. they can't change from time to length.
A default implementation is available which does everything except set the units vector, which must be done in the derived class.
Find the Coordinate for when we Fourier Transform ourselves. This pointer must be deleted by the caller. Axes specifies which axes of the Coordinate you wish to transform. Shape specifies the shape of the image associated with all the axes of the Coordinate. Currently the output reference pixel is always shape/2.
If the last conversion to world or pixel coordinates resulted in an error, report that error. If the last conversion succeeded, it is undefined what this will return (it might well contain the last error message).
Comparison to fractional tolerance (for floating point values). Don't compare on specified axes in Coordinate. If the comparison returns False, errorMessage() contains a message.
Provide a common interface to getting formatted representations of coordinate values. Different derived Coordinate types are formatted in different ways. For example, an RA/DEC DirectionCoordinate uses an HMS.SS/DMS.SS representation. A Galactic Lat/Long DirectionCoordinate uses floating format in degrees. Other derived Coordinates are formatted with scientific format or floating format. The derived class format functions provide this functionality.
You may specify the format with the format argument and a value from the enum Coordinate::formatType. If you give it the value Coordinate::DEFAULT then a sensible default is used.
A mechanism for specifying the precision number of significant digits after decimal point is provided. You can specify the precision directly when calling format if it is unambiguous how the derived Coordinate is going to be formatted. For example, a LinearCoordinate is always formatted with scientific format. However, if you are using these classes polymorphically, you don't want to have to know this and some derived Coordinates may be formatted in multiple ways (such as the DirectionCoordinate examples above). Therefore, the function getPrecision enables you to set default precisions for the different styles of formatting used variously in the base and derived classes. This function chooses the precision from these default values, according to the type of derived Coordinate that your object is and what value for format that you give (refer to the derived classes for details on this).
Some derived classes will format differently depending upon whether you want to format an absolute or offset world value input via absolute (e.g. DirectionCoordinates).
The provided worldValue must be in the native units of the Coordinate. It may be an absolute (isAbsolute=True) or relative (isAbsolute=False) value. You may choose to format the world value as absolute (showAsAbsolute=True) or relative (showAsAbsolute=False). axis specifies which axis of the Coordinate this value belongs to.
units specifies the units in which the input world value will be formatted. If units is empty, the native unit for the given axis is used.
Some derived classes will format in units different from the native unit of the Coordinate. The units of the formatted number are returned in units. If the units string is provided, the unit must be consistent with the native unit of the coordinate. The input world value will be converted to this unit.
You can also use the Quantum interface. The units of the Quantum can then be anything consistent with the Coordinate.
The default implementation here is to format only with scientific or fixed formats. If precision is negative, a the default precision is used.
Used for persistence. Derived classes will have similar static restore methods. It will typically only return False if fieldName has already been defined.
Make a copy of ourself. This pointer has been allocated with new and must be deleted by the caller.
Comparison only made for specified axes in this and other Coordinate The default implementation should be ok for all Coordinate types except Stokes...
Copy constructor (copy semantics)
Assignment (copy semantics)
Set error message
Tries to find a canonical unit for input unit (e.g. GHz -> Hz), and tells you the output name and unit for the Fourier coordinate pairing with the canonical unit
Functions to interconvert pixel<->world via wcs. These functions are called explicitly by the to{world,Pixel} functions in the appropriate wcs-based derived classes.
Functions for handling conversion between the current units and the wcs units. These are called explicitly by the appropriate derived class. convertFrom
Functions to interconvert pixel<->world via wcs. These functions are called explicitly by the to{world,Pixel} functions in the appropriate wcs-based derived classes.
Functions for handling conversion between the current reference frame and the native one. The default implementations do nothing. They should be over-ridden in the derived classes.
Functions to interconvert pixel<->world via wcs. These functions are called explicitly by the to{world,Pixel} functions in the appropriate wcs-based derived classes.
Functions for handling conversion between the current reference frame and the native one for many conversions. These functions just call the virtual functions for single conversions.
Functions to interconvert pixel<->world via wcs. These functions are called explicitly by the to{world,Pixel} functions in the appropriate wcs-based derived classes.
Call wcsset on the wcs structure
Check format type