CompositeTransform¶
- class astropy.coordinates.CompositeTransform(transforms, fromsys, tosys, priority=1, register_graph=None, collapse_static_mats=True)[source]¶
Bases:
CoordinateTransformA transformation constructed by combining together a series of single-step transformations.
Note that the intermediate frame objects are constructed using any frame attributes in
toframeorfromframethat overlap with the intermediate frame (toframefavored overfromframeif there’s a conflict). Any frame attributes that are not present use the defaults.- Parameters:
- transformssequence of
CoordinateTransformobject The sequence of transformations to apply.
- fromsysclass
The coordinate frame class to start from.
- tosysclass
The coordinate frame class to transform into.
- priority
floatorint The priority if this transform when finding the shortest coordinate transform path - large numbers are lower priorities.
- register_graph
TransformGraphorNone A graph to register this transformation with on creation, or
Noneto leave it unregistered.- collapse_static_matsbool
If
True, consecutiveStaticMatrixTransformwill be collapsed into a single transformation to speed up the calculation.
- transformssequence of
Methods Summary
__call__(fromcoord, toframe)Does the actual coordinate transformation from the
fromsysclass to thetosysclass.Methods Documentation
- __call__(fromcoord, toframe)[source]¶
Does the actual coordinate transformation from the
fromsysclass to thetosysclass.- Parameters:
- fromcoord
BaseCoordinateFramesubclass instance An object of class matching
fromsysthat is to be transformed.- toframe
object An object that has the attributes necessary to fully specify the frame. That is, it must have attributes with names that match the keys of the dictionary
tosys.frame_attributes. Typically this is of classtosys, but it might be some other class as long as it has the appropriate attributes.
- fromcoord
- Returns:
- tocoord
BaseCoordinateFramesubclass instance The new coordinate after the transform has been applied.
- tocoord