Proj¶
- Proj(name, basemap=None, **kwargs)[source]¶
Return a
cartopy.crs.ProjectionorBasemapinstance.- Parameters
name (
str,cartopy.crs.Projection, orBasemap) – The projection name or projection class instance. If the latter, it is simply returned. If the former, it must correspond to one of the PROJ projection name shorthands, like in basemap.The following table lists the valid projection name shorthands, their full names (with links to the relevant PROJ documentation), and whether they are available in the cartopy and basemap packages. (added) indicates a projection class that proplot has “added” to cartopy using the cartopy API.
Key
Name
Cartopy
Basemap
'aea'✓
✓
'aeqd'✓
✓
'aitoff'✓ (added)
✗
'cass'✗
✓
'cea'✗
✓
'cyl'✓
✓
'eck1'✓
✗
'eck2'✓
✗
'eck3'✓
✗
'eck4'✓
✓
'eck5'✓
✗
'eck6'✓
✗
'eqdc'✓
✓
'eqc'✓
✓
'eqearth'✓
✗
'europp'Euro PP (Europe)
✓
✗
'gall'✗
✓
'geos'✓
✓
'gnom'✓
✓
'hammer'✓ (added)
✓
'igh'✓
✗
'kav7'✓ (added)
✓
'laea'✓
✓
'lcc'✓
✓
'lcyl'Lambert Cylindrical
✓
✗
'mbtfpq'✗
✓
'merc'✓
✓
'mill'✓
✓
'moll'✓
✓
'npaeqd'North-Polar Azimuthal Equidistant
✓ (added)
✓
'npgnom'North-Polar Gnomonic
✓ (added)
✗
'nplaea'North-Polar Lambert Azimuthal
✓ (added)
✓
'npstere'North-Polar Stereographic
✓
✓
'nsper'✓
✓
'osni'OSNI (Ireland)
✓
✗
'osgb'OSGB (UK)
✓
✗
'omerc'✗
✓
'ortho'✓
✓
'pcarree'✓
✓
'poly'✗
✓
'rotpole'Rotated Pole
✓
✓
'sinu'✓
✓
'spaeqd'South-Polar Azimuthal Equidistant
✓ (added)
✓
'spgnom'South-Polar Gnomonic
✓ (added)
✗
'splaea'South-Polar Lambert Azimuthal
✓ (added)
✓
'spstere'South-Polar Stereographic
✓
✓
'stere'✓
✓
'tmerc'✓
✓
'utm'✓
✗
'vandg'✗
✓
'wintri'✓ (added)
✗
basemap (
bool, optional) – Whether to use the basemap package as opposed to the cartopy package. Default isrc.basemap=False.lonlim (
2-tupleoffloat, optional) – Alternative way to specifyllcrnrlonandurcrnrlonfor basemap projections.latlim (
2-tupleoffloat, optional) – Alternative way to specifyllcrnrlatandurcrnrlatfor basemap projections.
- Other Parameters
**kwargs – Passed to the
mpl_toolkits.basemap.Basemaporcartopy.crs.Projectionclass. For cartopy axes, proplot translateslon_0andlat_0tocentral_longitudeandcentral_latitude.- Returns
proj (
mpl_toolkits.basemap.Basemaporcartopy.crs.Projection) – ABasemaporProjectioninstance.
See also
mpl_toolkits.basemap.Basemap,cartopy.crs.Projection,proplot.ui.subplots,proplot.axes.GeoAxesReferences
For more information on map projections, see the wikipedia page and the PROJ documentation.