1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
.. _api.crs:
.. currentmodule:: cartopy
Coordinate reference systems (CRS)
----------------------------------
The :class:`cartopy.crs.CRS` class is the very core of cartopy, all coordinate reference systems
in cartopy have :class:`~cartopy.crs.CRS` as a parent class.
Base CRS's
~~~~~~~~~~
.. autosummary::
:toctree: generated/
crs.CRS
crs.Globe
crs.Projection
crs.Geodetic
crs.Geocentric
crs.RotatedGeodetic
crs.epsg
.. _api.geodesic:
Geodesic calculations
~~~~~~~~~~~~~~~~~~~~~
The :mod:`cartopy.geodesic` module defines the :class:`cartopy.geodesic.Geodesic` class which can interface with the Proj
geodesic functions. See the `Proj geodesic page`_ for more background
information.
.. _Proj geodesic page: https://proj.org/geodesic.html
.. autosummary::
:toctree: generated/
geodesic.Geodesic
List of projections
~~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 2
projections
|