EarthLocation¶
-
class
astropy.coordinates.EarthLocation[source] [edit on github]¶ Bases:
astropy.units.quantity.QuantityLocation on the Earth.
Initialization is first attempted assuming geocentric (x, y, z) coordinates are given; if that fails, another attempt is made assuming geodetic coordinates (longitude, latitude, height above a reference ellipsoid). When using the geodetic forms, Longitudes are measured increasing to the east, so west longitudes are negative. Internally, the coordinates are stored as geocentric.
To ensure a specific type of coordinates is used, use the corresponding class methods (
from_geocentricandfrom_geodetic) or initialize the arguments with names (x,y,zfor geocentric;lon,lat,heightfor geodetic). See the class methods for details.Notes
This class fits into the coordinates transformation framework in that it encodes a position on the
ITRSframe. To get a properITRSobject from this object, use theitrsproperty.Attributes Summary
ellipsoidThe default ellipsoid used to convert to geodetic coordinates. geocentricConvert to a tuple with X, Y, and Z as quantities geodeticConvert to geodetic coordinates for the default ellipsoid. heightHeight of the location, for the default ellipsoid. itrsAn ITRSobject with for the location of this object at the defaultobstime.latitudeLatitude of the location, for the default ellipsoid. longitudeLongitude of the location, for the default ellipsoid. xThe X component of the geocentric coordinates. yThe Y component of the geocentric coordinates. zThe Z component of the geocentric coordinates. Methods Summary
from_geocentric(x, y, z[, unit])Location on Earth, initialized from geocentric coordinates. from_geodetic(lon, lat[, height, ellipsoid])Location on Earth, initialized from geodetic coordinates. get_itrs([obstime])Generates an ITRSobject with the location of this object at the requestedobstime.get_site_names()Get list of names of observatories for use with of_site.of_site(site_name)Return an object of this class for a known observatory/site by name. to(unit[, equivalencies])Returns a new Quantityobject with the specified units.to_geocentric()Convert to a tuple with X, Y, and Z as quantities to_geodetic([ellipsoid])Convert to geodetic coordinates. Attributes Documentation
-
ellipsoid¶ The default ellipsoid used to convert to geodetic coordinates.
-
geocentric¶ Convert to a tuple with X, Y, and Z as quantities
-
geodetic¶ Convert to geodetic coordinates for the default ellipsoid.
-
height¶ Height of the location, for the default ellipsoid.
-
latitude¶ Latitude of the location, for the default ellipsoid.
-
longitude¶ Longitude of the location, for the default ellipsoid.
-
x¶ The X component of the geocentric coordinates.
-
y¶ The Y component of the geocentric coordinates.
-
z¶ The Z component of the geocentric coordinates.
Methods Documentation
-
classmethod
from_geocentric(x, y, z, unit=None)[source] [edit on github]¶ Location on Earth, initialized from geocentric coordinates.
Parameters: x, y, z :
Quantityor array-likeCartesian coordinates. If not quantities,
unitshould be given.unit :
UnitBaseobject or NonePhysical unit of the coordinate values. If
x,y, and/orzare quantities, they will be converted to this unit.Raises: astropy.units.UnitsError
If the units on
x,y, andzdo not match or an invalid unit is given.ValueError
If the shapes of
x,y, andzdo not match.TypeError
If
xis not aQuantityand no unit is given.
-
classmethod
from_geodetic(lon, lat, height=0.0, ellipsoid=None)[source] [edit on github]¶ Location on Earth, initialized from geodetic coordinates.
Parameters: lon :
Longitudeor floatEarth East longitude. Can be anything that initialises an
Angleobject (if float, in degrees).lat :
Latitudeor floatEarth latitude. Can be anything that initialises an
Latitudeobject (if float, in degrees).height :
Quantityor float, optionalHeight above reference ellipsoid (if float, in meters; default: 0).
ellipsoid : str, optional
Name of the reference ellipsoid to use (default: ‘WGS84’). Available ellipsoids are: ‘WGS84’, ‘GRS80’, ‘WGS72’.
Raises: astropy.units.UnitsError
If the units on
lonandlatare inconsistent with angular ones, or that onheightwith a length.ValueError
If
lon,lat, andheightdo not have the same shape, or ifellipsoidis not recognized as among the ones implemented.Notes
For the conversion to geocentric coordinates, the ERFA routine
gd2gcis used. See https://github.com/liberfa/erfa
-
get_itrs(obstime=None)[source] [edit on github]¶ Generates an
ITRSobject with the location of this object at the requestedobstime.Parameters: obstime :
Timeor NoneThe
obstimeto apply to the newITRS, or if None, the defaultobstimewill be used.Returns: itrs :
ITRSThe new object in the ITRS frame
-
classmethod
get_site_names()[source] [edit on github]¶ Get list of names of observatories for use with
of_site.Note
When this function is called, it will first attempt to download site information from the astropy data server. If it cannot (i.e., an internet connection is not available), it will fall back on the list included with astropy (which is a limited and dated set of sites). If you think a site should be added, issue a pull request to the astropy-data repository .
Returns: names : list of str
List of valid observatory names
See also
of_site- Gets the actual location object for one of the sites names this returns.
-
classmethod
of_site(site_name)[source] [edit on github]¶ Return an object of this class for a known observatory/site by name.
This is intended as a quick convenience function to get basic site information, not a fully-featured exhaustive registry of observatories and all their properties.
Note
When this function is called, it will attempt to download site information from the astropy data server. If you would like a site to be added, issue a pull request to the astropy-data repository . If a site cannot be found in the registry (i.e., an internet connection is not available), it will fall back on a built-in list, In the future, this bundled list might include a version-controlled list of canonical observatories extracted from the online version, but it currently only contains the Greenwich Royal Observatory as an example case.
Parameters: site_name : str
Name of the observatory (case-insensitive).
Returns: site : This class (a
EarthLocationor subclass)The location of the observatory.
See also
get_site_names- the list of sites that this function can access
-
to(unit, equivalencies=[])[source] [edit on github]¶ Returns a new
Quantityobject with the specified units.Parameters: unit :
UnitBaseinstance, strequivalencies : list of equivalence pairs, optional
A list of equivalence pairs to try if the units are not directly convertible. See Equivalencies. If not provided or
[], class default equivalencies will be used (none forQuantity, but may be set for subclasses) IfNone, no equivalencies will be applied at all, not even any set globally or within a context.
-
to_geocentric()[source] [edit on github]¶ Convert to a tuple with X, Y, and Z as quantities
-
to_geodetic(ellipsoid=None)[source] [edit on github]¶ Convert to geodetic coordinates.
Parameters: ellipsoid : str, optional
Reference ellipsoid to use. Default is the one the coordinates were initialized with. Available are: ‘WGS84’, ‘GRS80’, ‘WGS72’
Returns: (lon, lat, height) : tuple
Raises: ValueError
if
ellipsoidis not recognized as among the ones implemented.Notes
For the conversion to geodetic coordinates, the ERFA routine
gc2gdis used. See https://github.com/liberfa/erfa
-