TimeAttribute#
- class astropy.coordinates.TimeAttribute(default=None, secondary_attribute='', *, doc='A frame attribute')[source]#
 Bases:
AttributeFrame attribute descriptor for quantities that are Time objects. See the
AttributeAPI doc for further information.- Parameters:
 - 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
- default
 
Methods Summary
convert_input(value)Convert input value to a Time object and validate by running through the Time constructor.
Methods Documentation
- convert_input(value)[source]#
 Convert input value to a Time object and validate by running through the Time constructor. Also check that the input was a scalar.
- 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.