CoordinateFrame#
- class gwcs.coordinate_frames.CoordinateFrame(naxes, axes_type, axes_order, reference_frame=None, unit=None, axes_names=None, name=None, axis_physical_types=None)[source]#
Bases:
BaseCoordinateFrame
Base class for Coordinate Frames.
- Parameters:
- naxesint
Number of axes.
- axes_typestr
One of [“SPATIAL”, “SPECTRAL”, “TIME”]
- axes_ordertuple of int
A dimension in the input data that corresponds to this axis.
- reference_frameastropy.coordinates.builtin_frames
Reference frame (usually used with output_frame to convert to world coordinate objects).
- unitlist of astropy.units.Unit
Unit for each axis.
- axes_nameslist
Names of the axes in this frame.
- namestr
Name of this frame.
Attributes Summary
Names of axes in the frame.
A tuple of indices which map inputs to axes.
Type of this frame : 'SPATIAL', 'SPECTRAL', 'TIME'.
The axis physical types for this frame.
A custom name of this frame.
The number of axes in this frame.
Reference frame, used to convert to world coordinate objects.
This property is used by the low level WCS API in Astropy.
The unit of this frame.
The APE 14 object classes for this frame.
The APE 14 object components for this frame.
Methods Summary
from_high_level_coordinates
(*high_level_coords)Convert high level coordinate objects to "values" as described by this frame.
to_high_level_coordinates
(*values)Convert "values" to high level coordinate objects described by this frame.
Attributes Documentation
- axes_names#
Names of axes in the frame.
- axes_order#
A tuple of indices which map inputs to axes.
- axes_type#
Type of this frame : ‘SPATIAL’, ‘SPECTRAL’, ‘TIME’.
- axis_physical_types#
The axis physical types for this frame.
These physical types are the types in frame order, not transform order.
- name#
A custom name of this frame.
- naxes#
The number of axes in this frame.
- reference_frame#
Reference frame, used to convert to world coordinate objects.
- serialized_classes#
This property is used by the low level WCS API in Astropy.
By providing it we can duck type as a low level WCS object.
- unit#
The unit of this frame.
- world_axis_object_classes#
- world_axis_object_components#
The APE 14 object components for this frame.
Methods Documentation
- from_high_level_coordinates(*high_level_coords)[source]#
Convert high level coordinate objects to “values” as described by this frame.
“values” are the coordinates in array or scalar form, and high level objects are things such as
SkyCoord
orQuantity
. See Shared Python Interface for World Coordinate Systems for details.- Parameters:
- high_level_coordinates
One (or more) high level object describing the coordinate.
- Returns:
- values
numbers.Number
ornumpy.ndarray
naxis
number of coordinates as scalars or arrays.
- values
- to_high_level_coordinates(*values)[source]#
Convert “values” to high level coordinate objects described by this frame.
“values” are the coordinates in array or scalar form, and high level objects are things such as
SkyCoord
orQuantity
. See Shared Python Interface for World Coordinate Systems for details.- Parameters:
- values
numbers.Number
,numpy.ndarray
, orQuantity
naxis
number of coordinates as scalars or arrays.
- values
- Returns:
- high_level_coordinates
One (or more) high level object describing the coordinate.