UnitSphericalRepresentation¶
-
class
astropy.coordinates.UnitSphericalRepresentation(lon, lat, copy=True)[source] [edit on github]¶ Bases:
astropy.coordinates.BaseRepresentationRepresentation of points on a unit sphere.
Parameters: lon, lat :
Quantityor strcopy : bool, optional
If True arrays will be copied rather than referenced.
Attributes Summary
attr_classeslatThe latitude of the point(s). lonThe longitude of the point(s). recommended_unitsMethods Summary
from_cartesian(cart)Converts 3D rectangular cartesian coordinates to spherical polar coordinates. represent_as(other_class)to_cartesian()Converts spherical polar coordinates to 3D rectangular cartesian coordinates. Attributes Documentation
-
attr_classes= OrderedDict([(u'lon', <class 'astropy.coordinates.angles.Longitude'>), (u'lat', <class 'astropy.coordinates.angles.Latitude'>)])¶
-
lat¶ The latitude of the point(s).
-
lon¶ The longitude of the point(s).
-
recommended_units= {u'lat': Unit("deg"), u'lon': Unit("deg")}¶
Methods Documentation
-
classmethod
from_cartesian(cart)[source] [edit on github]¶ Converts 3D rectangular cartesian coordinates to spherical polar coordinates.
-
represent_as(other_class)[source] [edit on github]¶
-
to_cartesian()[source] [edit on github]¶ Converts spherical polar coordinates to 3D rectangular cartesian coordinates.
-