Astropy Glossary¶
- (
n,)¶ A parenthesized number followed by a comma denotes a tuple with one element. The trailing comma distinguishes a one-element tuple from a parenthesized
n. This is from NumPy; see https://numpy.org/doc/stable/glossary.html#term-n.- -like¶
<Class>-likeis an instance of theClassor a valid initializer argument forClassasClass(value). E.g.Quantity-like includes"2 * u.km"becauseastropy.units.Quantity("2 * u.km")works.- [‘physical type’]¶
The physical type of a quantity can be annotated in square brackets following a
Quantity(or similar quantity-like).For example,
distance : quantity-like ['length']- angle-like¶
quantity-like and a valid initializer for
Angle. Theunitmust be an angular. A string input is interpreted as an angle as described in theAngledocumentation.- buffer-like¶
Object that implements Python’s buffer protocol.
- coordinate-like¶
BaseCoordinateFramesubclass instance, or aSkyCoord(or subclass) instance, or a valid initializer as described in COORD.- file-like (readable)¶
python:file-like object object that supports reading with a method
read.For a formal definition see
ReadableFileLike.- file-like (writeable)¶
python:file-like object object that supports writing with a method
write.For a formal definition see
WriteableFileLike.- frame-like¶
BaseCoordinateFramesubclass or subclass instance or a valid Frame name (string).- length-like¶
quantity-like and a valid initializer for
Distance. Theunitmust be a convertible to a unit of length.- number¶
Any scalar numeric type. e.g.
floatorintornumpy.number.- quantity-like¶
Quantity(or subclass) instance, a number or array-like object, or a string which is a valid initializer forQuantity.For a formal definition see
QuantityLike.- table-like¶
Table(or subclass) instance or valid initializer forTableas described in Constructing a Table. Common types includedict[list],list[dict],list[list], andndarray(structured array).- time-like¶
Time(or subclass) instance or a valid initializer forTime, e.g.str, array-like[str],datetime, ordatetime64.- unit-like¶
UnitBasesubclass instance or a string or other valid initializer forUnit.
Optional Packages’ Glossary¶
- color¶
Any valid Matplotlib color.