Figure.add_axes¶
- Figure.add_axes(**kwargs)[source]¶
Add a non-subplot axes to the figure.
- Parameters
rect (
4-tupleoffloat) – The (left, bottom, width, height) dimensions of the axes in figure-relative coordinates.proj, projection (
str,cartopy.crs.Projection, orBasemap, optional) – The map projection specification(s). If'cart'or'cartesian'(the default), aCartesianAxesis created. If'polar', aPolarAxesis created. Otherwise, the argument is interpreted byProj, and the result is used to make aGeoAxes(in this case the argument can be acartopy.crs.Projectioninstance, aBasemapinstance, or a projection name listed in this table).proj_kw, projection_kw (dict-like, optional) – Keyword arguments passed to
Basemapor cartopyProjectionclasses on instantiation.backend (
{'cartopy', 'basemap'}, default:rc['geo.backend']='cartopy') – Whether to useBasemaporProjectionfor map projections.
- Other Parameters
**kwargs – Passed to the proplot class
proplot.axes.CartesianAxes,proplot.axes.PolarAxes,proplot.axes.GeoAxes, orproplot.axes.ThreeAxes. This can include keyword arguments for projection-specificformatcommands.