easyclimate.plot.axisticker¶
Quick processing of special axes
Functions¶
|
Setting the axes in longitude format. |
|
Setting the axes in latitude format. |
|
Setting the axes in logarithmic vertical barometric pressure format. |
Module Contents¶
- easyclimate.plot.axisticker.set_lon_format_axis(ax: matplotlib.axes.Axes = None, axis: str = 'x', **kwargs)¶
Setting the axes in longitude format.
Parameters¶
- ax
matplotlib.axes.Axes The axes to which the boundary will be applied.
- axis: {‘x’, ‘y’}, default: ‘x’
The axis to which the parameters are applied.
- **kwargs
Additional keyword arguments to wrapped
matplotlib.axis.Axis.set_major_formatter.
- ax
- easyclimate.plot.axisticker.set_lat_format_axis(ax: matplotlib.axes.Axes = None, axis: str = 'y', **kwargs)¶
Setting the axes in latitude format.
Parameters¶
- ax
matplotlib.axes.Axes The axes to which the boundary will be applied.
- axis: {‘x’, ‘y’}, default: ‘y’
The axis to which the parameters are applied.
- **kwargs
Additional keyword arguments to wrapped
matplotlib.axis.Axis.set_major_formatter.
Example(s) related to the function¶
- ax
- easyclimate.plot.axisticker.set_p_format_axis(ax: matplotlib.axes.Axes = None, axis: str = 'y', axis_limits: tuple = (1000, 100), ticker_step: float = 100)¶
Setting the axes in logarithmic vertical barometric pressure format.
Parameters¶
- ax
matplotlib.axes.Axes The axes to which the boundary will be applied.
- axis: {‘x’, ‘y’}, default: ‘y’
The axis to which the parameters are applied.
- axis_limits:
tuple, default (1000, 100). Assuming that the distribution of coordinates exhibits an isotropic series distribution, this item sets the maximum value (near surface air pressure) and the minimum value (near overhead air pressure).
- ticker_step:
float, default 100. Assuming an isotropic series of coordinate distributions, the term sets the tolerance.
Example(s) related to the function¶
- ax