File: crs.rst

package info (click to toggle)
python-cartopy 0.21.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,668 kB
  • sloc: python: 15,101; makefile: 166; javascript: 66; sh: 6
file content (47 lines) | stat: -rw-r--r-- 924 bytes parent folder | download
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