Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion proplot/axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2980,7 +2980,14 @@ def format(
lonlines=None, lonlocator=None,
latlines=None, latlocator=None, latmax=None,
labels=None, latlabels=None, lonlabels=None,
patch_kw=None, **kwargs,
etopo=None, shadedrelief=None, bluemarble=None,
mapscale=None, mapscale_kw=None,
tissot=None, tissot_kw=None,
counties=None, counties_kw=None,
lsmask=None, lsmask_kw=None,
nightshade=None, nightshade_kw=None,
wmsimage=None, arcgisimage=None,
patch_kw=None, **kwargs
):
"""
Modify the meridian and parallel labels, longitude and latitude map
Expand Down Expand Up @@ -3036,6 +3043,22 @@ def format(
Keyword arguments used to update the background patch object. You
can use this, for example, to set background hatching with
``patch_kw={'hatch':'xxx'}``.
counties, counties_kw : optional
For basemap axes only. Draws county borders for United States.
lsmask, lsmask_kw : optional
For basemap axes only. Draws land-sea mask.
nightshade, nightshade_kw : optional
For basemap axes only. Shades parts of map on night side of Earth.
mapscale, mapscale_kw : optional
For basemap axes only. Draws a map scale.
tissot, tissot_kw : optional
For basemap axes only. Draws Tissot indicatrixes.
bluemarble, shadedrelief, etopo : optional
For basemap axes only. Draws the blue marble image or topography
data.
wmsimage, wmsimage_kw, arcgisimage, arcgisimage_kw : optional
For basemap axes only. Adds user input images to the background
of the map projection.
rc_kw : dict, optional
Dictionary containing `~proplot.rctools.rc` settings applied to
this axes using `~proplot.rctools.rc_configurator.context`.
Expand Down