GCRS¶
-
class
astropy.coordinates.
GCRS
(*args, **kwargs)[source] [edit on github]¶ Bases:
astropy.coordinates.BaseCoordinateFrame
A coordinate or frame in the Geocentric Celestial Reference System (GCRS).
GCRS is distinct form ICRS mainly in that it is relative to the Earth’s center-of-mass rather than the solar system Barycenter. That means this frame includes the effects of aberration (unlike ICRS). For more background on the GCRS, see the references provided in the See Also section of the documentation. (Of particular note is Section 1.2 of USNO Circular 179)
This frame also includes frames that are defined relative to the Earth, but that are offset (in both position and velocity) from the Earth.
This frame has these frame attributes:
obstime
- The time at which the observation is taken. Used for determining the position of the Earth.
obsgeoloc
- The position of the observer relative to the center-of-mass of the
Earth, oriented the same as BCRS/ICRS. Either [0, 0, 0],
CartesianRepresentation
, or proper input for one, i.e., aQuantity
with shape (3, ...) and length units. Defaults to [0, 0, 0], meaning “true” GCRS.
obsgeovel
- The velocity of the observer relative to the center-of-mass of the
Earth, oriented the same as BCRS/ICRS. Either [0, 0, 0],
CartesianRepresentation
, or proper input for one, i.e., aQuantity
with shape (3, ...) and velocity units. Defaults to [0, 0, 0], meaning “true” GCRS.
Parameters: representation :
BaseRepresentation
or NoneA representation object or None to have no data (or use the other keywords)
ra :
Angle
, optional, must be keywordThe RA for this object (
dec
must also be given andrepresentation
must be None).dec :
Angle
, optional, must be keywordThe Declination for this object (
ra
must also be given andrepresentation
must be None).distance :
Quantity
, optional, must be keywordThe Distance for this object along the line-of-sight. (
representation
must be None).copy : bool, optional
If
True
(default), make copies of the input coordinate arrays. Can only be passed in as a keyword argument.Attributes Summary
default_representation
frame_attributes
frame_specific_representation_info
name
obsgeoloc
obsgeovel
obstime
Attributes Documentation
-
default_representation
¶
-
frame_attributes
= OrderedDict([('obstime', <astropy.coordinates.baseframe.TimeFrameAttribute object>), ('obsgeoloc', <astropy.coordinates.baseframe.CartesianRepresentationFrameAttribute object>), ('obsgeovel', <astropy.coordinates.baseframe.CartesianRepresentationFrameAttribute object>)])¶
-
frame_specific_representation_info
¶
-
name
= 'gcrs'¶
-
obsgeoloc
= <CartesianRepresentation (x, y, z) in m ( 0., 0., 0.)>¶
-
obsgeovel
= <CartesianRepresentation (x, y, z) in m / s ( 0., 0., 0.)>¶
-
obstime
= <Time object: scale='utc' format='jyear_str' value=J2000.000>¶