CoordinateAttribute#
- class astropy.coordinates.CoordinateAttribute(frame, default=None, secondary_attribute='', **kwargs)[source]#
 Bases:
AttributeA frame attribute which is a coordinate object. It can be given as a
SkyCoordor a low-level frame instance. If a low-level frame instance is provided, it will always be upgraded to be aSkyCoordto ensure consistent transformation behavior. The coordinate object will always be returned as a low-level frame instance when accessed.- Parameters:
 - frame
BaseCoordinateFrameclass The type of frame this attribute can be
- default
object Default value for the attribute if not provided
- secondary_attribute
python:str Name of a secondary instance attribute which supplies the value if
default is Noneand no value was supplied during initialization.- doc
python:str Description of the frame attribute for help and documentation
- frame
 
Methods Summary
convert_input(value)Checks that the input is a SkyCoord with the necessary units (or the special value
None).Methods Documentation
- convert_input(value)[source]#
 Checks that the input is a SkyCoord with the necessary units (or the special value
None).- Parameters:
 - value
object Input value to be converted.
- value
 - Returns:
 - out, convertedcorrectly-typed 
object, bool Tuple consisting of the correctly-typed object and a boolean which indicates if conversion was actually performed.
- out, convertedcorrectly-typed 
 - Raises:
 ValueErrorIf the input is not valid for this attribute.