CartopyAxes

class CartopyAxes(*args, autoextent=None, circular=None, map_projection=None, **kwargs)[source]

Bases: proplot.axes.geo.GeoAxes, cartopy.mpl.geoaxes.GeoAxes

Axes subclass for plotting cartopy projections. Makes transform=cartopy.crs.PlateCarree() the default for all plotting methods, enforces global extent for most projections by default, and draws circular boundaries around polar azimuthal, stereographic, and Gnomonic projections bounded at the equator by default.

Parameters
  • autoextent (bool, optional) – Whether to automatically adjust map bounds based on plotted content or enforce global map extent. Default is rc[‘cartopy.autoextent’] = False.

  • circular (bool, optional) – Whether to bound polar projections with circles rather than squares. Default is rc[‘cartopy.circular’] = True.

  • map_projection (Projection) – The Projection instance.

Other Parameters

*args, **kwargs – Passed to GeoAxes.

Attributes Summary

name

The registered projection name.

projection

The Projection instance associated with this axes.