GeoAxes.format¶
- GeoAxes.format()[source]¶
Modify map limits, longitude and latitude gridlines, geographic features, and more.
- Parameters
lonlim, latlim (
2-tupleoffloat, optional) – For cartopy axes only. The approximate longitude and latitude boundaries of the map, applied withset_extent. Basemap axes extents must be declared by passing keyword arguments toProj.boundinglat (
float, optional) – For cartopy axes only. The edge latitude for the circle bounding North Pole and South Pole-centered projections. Basemap bounding latitudes must be declared by passing keyword arguments toProj.longrid, latgrid (
bool, optional) – Whether to draw longitude and latitude gridlines. Default isrc.grid=True. Usegridto toggle both.longridminor, latgridminor (
bool, optional) – Whether to draw “minor” longitude and latitude lines. Default isrc.gridminor=False. Usegridminorto toggle both.lonlines, latlines (optional) – Aliases for
lonlocator,latlocator.lonlocator, latlocator (
locator-spec, optional) – Used to determine the longitude and latitude gridline locations. Passed to theLocatorconstructor. Can be string, float, list of float, ormatplotlib.ticker.Locatorinstance.For basemap or cartopy < 0.18, the defaults are
'deglon'and'deglat', which correspond to theLongitudeLocatorandLatitudeLocatorlocators (adapted from cartopy). For cartopy >= 0.18, the defaults are'dmslon'and'dmslat', which uses the same locators withdms=True. This selects gridlines at nice degree-minute-second intervals when the map extent is very small.lonlines_kw, latlines_kw (optional) – Aliases for
lonlocator_kw,latlocator_kw.lonlocator_kw, latlocator_kw (dict-like, optional) – Keyword arguments passed to the
matplotlib.ticker.Locatorclass.lonminorlocator, latminorlocator, lonminorlines, latminorlines (optional) – As with
lonlocatorandlatlocatorbut for the “minor” gridlines. The defaults arerc['grid.lonminorstep']andrc['grid.latminorstep'].lonminorlines_kw, latminorlines_kw (optional) – Aliases for
lonminorlocator_kw,latminorlocator_kw.lonminorlocator_kw, latminorlocator_kw (optional) – As with
lonlocator_kwandlatlocator_kwbut for the “minor” gridlines.latmax (
float, optional) – The maximum absolute latitude for longitude and latitude gridlines. Longitude gridlines are cut off poleward of this latitude for all basemap projections and cartopy projections predating cartopy 0.18. Default is80.labels (
bool, optional) – SetslonlabelsandlatlabelstoTrue. Default isrc['grid.labels']=False. To draw labels by default use e.g.pplt.rc['grid.labels'] = True.lonlabels, latlabels (optional) – Whether to label longitudes and latitudes, and on which sides of the map. There are four different options:
Boolean
True. Indicates the left side for latitudes, bottom side for longitudes.A string or tuple of strings indicating the side names, e.g.
'left'for latitudes or'bottom'for longitudes.A string indicating the side names with single characters, e.g.
'lr'for latitudes or'bt'for longitudes.A boolean 2-tuple indicating whether to draw labels on the
(left, right)sides for latitudes, or(bottom, top)sides for longitudes.A boolean 4-tuple indicating whether to draw labels on the
(left, right, bottom, top)sides, as with the basemapdrawmeridiansanddrawparallelslabelskeyword.
lonformatter, latformatter (
formatter-spec, optional) – Formatter used to style longitude and latitude gridline labels. Passed to theFormatterconstructor. Can be string, list of string, ormatplotlib.ticker.Formatterinstance.For basemap or cartopy < 0.18, the defaults are
'deglon'and'deglat', which correspond toSimpleFormatterpresets with degree symbols and cardinal direction suffixes. For cartopy >= 0.18, the defaults are'dmslon'and'dmslat', which uses cartopy’sLongitudeFormatterandLatitudeFormatterformatters withdms=True. This formats gridlines that do not fall on whole degrees as “minutes” and “seconds” rather than decimal degrees.lonformatter_kw, latformatter_kw (dict-like, optional) – Keyword arguments passed to the
matplotlib.ticker.Formatterclass.loninline, latinline, inlinelabels (
bool, optional) – For cartopy axes only. Whether to draw inline longitude and latitude gridline labels. Default isrc['grid.inlinelabels']=False. Setting these toTruealso sets the default values forlonlabels,latlabels, andlabelstoTrue(respectively).rotatelabels (
bool, optional) – For cartopy axes only. Whether to rotate longitude and latitude gridline labels. Default isrc['grid.rotatelabels']=False.labelpad (
unit-spec, optional) – For cartopy axes only. The padding between the map boundary and longitude and latitude gridline labels. Default isrc['grid.labelpad']=4.0. If float, units are points. If string, interpreted byunits.dms (
bool, optional) – For cartopy axes only. Specifies whether the default locators and formatters should use “minutes” and “seconds” for gridline labels on small scales rather than decimal degrees. Setting this toFalseis equivalent to specifyingax.format(lonlocator='deglon', latlocator='deglon')andax.format(lonformatter='deglon', latformatter='deglat'). Default isrc['grid.dmslabels']=True.nsteps (
int, optional) – For cartopy axes only. The number of interpolation steps used to draw gridlines. Default isrc['grid.nsteps']=250.land, ocean, coast, rivers, lakes, borders, innerborders (
bool, optional) – Toggles various geographic features. These are actually therc.land,rc.ocean,rc.coast,rc.rivers,rc.lakes,rc.borders, andrc.innerborderssettings passed tocontext. The style can be modified using additionalrcsettings.For example, to change
rc['land.color'], useax.format(landcolor='green'), and to changerc['land.zorder'], useax.format(landzorder=4).reso (
{'lo', 'med', 'hi', 'x-hi', 'xx-hi'}, optional) – For cartopy axes only. The resolution of geographic features. For basemap axes, this must be passed toProj.color (
color-spec, optional) – Color for the axes edge. Propagates tolabelcolorunless specified otherwise (similar toproplot.axes.CartesianAxes.format).labelcolor, gridlabelcolor (
color-spec, optional) – Color for the grid labels. Default iscolororrc['grid.labelcolor']='black'ifcolorwas not passed.labelsize, gridlabelsize (
unit-specorstr, optional) – Font size for the gridline labels. Default isrc['grid.labelsize']='medium'. If float, units are points. If string, interpreted byunits.labelweight, gridlabelweight (
str, optional) – Font weight for the gridline labels. Default isrc['grid.labelweight']='normal'.
- Other Parameters
title (
str, optional) – The axes title.abc (
boolorstr, optional) – The “a-b-c” subplot label style. Must contain the characteraorA, for example'a.', or'A'. IfTruethen the default style of'a'is used. TheaorAis replaced with the alphabetic character matching thenumber. Ifnumberis greater than 26, the characters loop around to a, …, z, aa, …, zz, aaa, …, zzz, etc.abcloc, titleloc (
str, optional) – Strings indicating the location for the a-b-c label and main title. The following locations are valid (defaults arerc['abc.loc']='left'andrc['title.loc']='center'):Location
Valid keys
center above axes
'center','c'left above axes
'left','l'right above axes
'right','r'lower center inside axes
'lower center','lc'upper center inside axes
'upper center','uc'upper right inside axes
'upper right','ur'upper left inside axes
'upper left','ul'lower left inside axes
'lower left','ll'lower right inside axes
'lower right','lr'abcborder, titleborder (
bool, optional) – Whether to draw a white border around titles and a-b-c labels positioned inside the axes. This can help them stand out on top of artists plotted inside the axes. Defaults arerc['abc.border']=Trueandrc['title.border']=True.abcbbox, titlebbox (
bool, optional) – Whether to draw a white bbox around titles and a-b-c labels positioned inside the axes. This can help them stand out on top of artists plotted inside the axes. Defaults arerc['abc.bbox']=Falseandrc['title.bbox']=False.abc_kw, title_kw (dict-like, optional) – Additional settings used to update the a-b-c label and title with
text.update().titlepad (
float, optional) – The padding for the inner and outer titles and a-b-c labels in arbitrary units (default is points). Default isrc['title.pad']=5.0.titleabove (
bool, optional) – Whether to try to put outer titles and a-b-c labels above panels, colorbars, or legends that are above the axes. Default isrc['title.above']=True.abctitlepad (
float, optional) – The horizontal padding between the a-b-c label and title when they are in the same location. Default isrc['abc.titlepad']=4.0.ltitle, ctitle, rtitle, ultitle, uctitle, urtitle, lltitle, lctitle, lrtitle (
str, optional) – Shorthands for the below keywords.lefttitle, centertitle, righttitle, upperlefttitle, uppercentertitle, upperrighttitle, lowerlefttitle, lowercentertitle, lowerrighttitle (
str,optoinal) – Additional titles in specific positions. This works as an alternative to theax.format(title='Title', titleloc=loc)workflow and permits adding more than one title-like label for a single axes.a, alpha, fc, facecolor, ec, edgecolor, lw, linewidth, ls, linestyle (optional) – Additional settings applied to the background patch, and their shorthands. Defaults are
rc['axes.alpha'],rc['axes.facecolor'],rc['axes.edgecolor'],rc['axes.linewidth'], and'-', respectively.rowlabels, collabels, llabels, tlabels, rlabels, blabels – Aliases for
leftlabelsandtoplabels, and forleftlabels,toplabels,rightlabels, andbottomlabels, respectively.leftlabels, toplabels, rightlabels, bottomlabels (sequence of
str, optional) – Labels for the subplots lying along the left, top, right, and bottom edges of the figure. The length of each list must match the number of subplots along the corresponding edge.leftlabelpad, toplabelpad, rightlabelpad, bottomlabelpad (
float, optional) – The padding between the labels and the axes content in arbitrary units (default is points). Defaults arerc['leftlabel.pad'],rc['toplabel.pad'],rc['rightlabel.pad'], andrc['bottomlabel.pad']leftlabels_kw, toplabels_kw, rightlabels_kw, bottomlabels_kw (dict-like, optional) – Additional settings used to update the labels with
text.update().figtitle – Alias for
suptitle.suptitle (
str, optional) – The figure “super” title, centered between the left edge of the lefmost column of subplots and the right edge of the rightmost column of subplots, and automatically offset above figure titles. This is an improvement on matplotlib’s “super” title, which just centers the text between figure edges.suptitlepad (
float, optional) – The padding between the super title and the axes content in arbitrary units (default is points). Default isrc['suptitle.pad'].suptitle_kw (optional) – Additional settings used to update the super title with
text.update().includepanels (
bool, optional) – Whether to include panels when aligning figure “super titles” along the top of the subplot grid and when aligning thespanxx axis labels andspanyy axis labels along the sides of the subplot grid. Default isFalse.mathtext_fallback (
boolorstr, optional) – Apply thisrc['mathtext.fallback']value when drawing the figure. IfTrueor string, unavailable glyphs are replaced with a glyph from a fallback font (Computer Modern by default). Otherwise, they are replaced with the “¤” dummy character. For details see this mathtext tutorial.rc_mode (
int, optional) – The context mode passed tocontext.rc_kw (dict-like, optional) – An alternative to passing extra keyword arguments. See below.
**kwargs – Keyword arguments that match the name of an
rcsetting are passed toproplot.config.Configurator.contextand used to update the axes. If the setting name has “dots” you can simply omit the dots. For example,abc='A.'modifies therc.abcsetting,titleloc='left'modifies therc['title.loc']setting,gridminor=Truemodifies therc.gridminorsetting, andgridbelow=Truemodifies therc['grid.below']setting. Many of the keyword arguments documented above are internally applied by retrieving settings passed tocontext.