Source code for wradlib.vis

#!/usr/bin/env python
# Copyright (c) 2011-2021, wradlib developers.
# Distributed under the MIT License. See LICENSE.txt for more info.

"""
Visualisation
^^^^^^^^^^^^^

Standard plotting and mapping procedures.



.. autosummary::
   :nosignatures:
   :toctree: generated/

   {}
"""
__all__ = [
    "plot_ppi",
    "plot_ppi_crosshair",
    "plot_rhi",
    "WradlibAccessor",
    "create_cg",
    "plot_scan_strategy",
    "plot_plan_and_vert",
    "plot_max_plan_and_vert",
    "add_lines",
    "add_patches",
]
__doc__ = __doc__.format("\n   ".join(__all__))

import collections
import os.path
import re
import warnings

import numpy as np
import xarray as xr

from wradlib import georef, io, ipol, util

pl = util.import_optional("matplotlib.pyplot")
axes = util.import_optional("matplotlib.axes")
lines = util.import_optional("matplotlib.lines")
patches = util.import_optional("matplotlib.patches")
coll = util.import_optional("matplotlib.collections")
proj = util.import_optional("matplotlib.projections")
tick = util.import_optional("matplotlib.ticker")
trans = util.import_optional("matplotlib.transforms")
axisartist = util.import_optional("mpl_toolkits.axisartist")
angle_helper = util.import_optional("mpl_toolkits.axisartist.angle_helper")
osr = util.import_optional("osgeo.osr")
cartopy = util.import_optional("cartopy")


[docs]@xr.register_dataarray_accessor("wradlib") class WradlibAccessor: """Dataarray Accessor for plotting radar moments"""
[docs] def __init__(self, xarray_obj): self._obj = xarray_obj self._site = None self._proj = None
def __getattr__(self, attr): return getattr(self._obj, attr) def __repr__(self): return re.sub(r"<.+>", f"<{self.__class__.__name__}>", str(self._obj)) @property def site(self): if self._site is None: self._site = ( self._obj.longitude.item(), self._obj.latitude.item(), self._obj.altitude.item(), ) return self._site @property def proj(self): return self._proj @proj.setter def proj(self, proj): self._proj = proj def contour(self, **kwargs): kwargs.setdefault("func", "contour") return self.plot(**kwargs) def contourf(self, **kwargs): kwargs.setdefault("func", "contourf") return self.plot(**kwargs) def pcolormesh(self, **kwargs): kwargs.setdefault("func", "pcolormesh") return self.plot(**kwargs) def plot_rhi(self, **kwargs): return self.plot(**kwargs) def plot_ppi(self, **kwargs): return self.plot(**kwargs) def plot( self, ax=111, fig=None, proj=None, func="pcolormesh", cmap="viridis", center=False, add_colorbar=False, add_labels=False, **kwargs, ): """Plot Plan Position Indicator (PPI) or Range Height Indicator (RHI). The implementation of this plot routine is in cartesian axes and does all coordinate transforms using xarray machinery. This allows zooming into the data as well as making it easier to plot additional data (like gauge locations) without having to convert them to the radar's polar coordinate system. Using ``proj='cg'`` the plotting is done in a curvelinear grid axes. Additional data can be plotted in polar coordinates or cartesian coordinates depending which axes object is used. ``**kwargs`` may be used to try to influence the :func:`matplotlib.pyplot.pcolormesh`, :func:`matplotlib.pyplot.contour`, :func:`matplotlib.pyplot.contourf` and :func:`wradlib.georef.polar.spherical_to_proj` routines under the hood. Parameters ---------- proj : :py:class:`cartopy.crs.CRS`, dict or None cartopy CRS Coordinate Reference System describing projection If this parameter is not None, ``site`` must be set properly. Then the function will attempt to georeference the radar bins and display the PPI in the coordinate system defined by the projection string. fig : :class:`matplotlib.figure.Figure` If given, the PPI/RHI will be plotted into this figure object. Axes are created as needed. If None, a new figure object will be created or current figure will be used, depending on ``ax``. ax : :class:`matplotlib.axes.Axes` or :class:`matplotlib.gridspec.SubplotSpec` If matplotlib Axes object is given, the PPI will be plotted into this axes object. If matplotlib grid definition is given (nrows/ncols/plotnumber), axis are created in the specified place. Defaults to '111', only one subplot/axis. func : str Name of plotting function to be used under the hood. Defaults to 'pcolormesh'. 'contour' and 'contourf' can be selected too. cmap : str matplotlib colormap string Returns ------- pm : :class:`matplotlib:matplotlib.collections.QuadMesh` or \ :class:`matplotlib:matplotlib.contour.QuadContourSet` The result of the plotting function. Necessary, if you want to add a colorbar to the plot. Note ---- If ``proj`` contains a curvelinear grid dict, the ``cgax`` - curvelinear Axes (r-theta-grid) is returned. ``caax`` - Cartesian Axes (x-y-grid) and ``paax`` - parasite axes object for plotting polar data can be derived like this:: caax = cgax.parasites[0] paax = cgax.parasites[1] The function :func:`~wradlib.vis.create_cg` uses the Matplotlib `AXISARTIST <https://matplotlib.org/stable/api/toolkits/axisartist.html>`_ namespace. Here are some limitations to normal Matplotlib Axes (see `AXES_GRID1 <https://matplotlib.org/stable/api/toolkits/axes_grid1.html>`_). Examples -------- See :ref:`/notebooks/visualisation/wradlib_plot_ppi_example.ipynb`, and :ref:`/notebooks/visualisation/wradlib_plot_curvelinear_grids.ipynb`. """ cg = False caax = None paax = None # fix for correct zorder of data and grid kwargs["zorder"] = kwargs.pop("zorder", 0) self.proj = proj # handle curvelinear grid properties if proj == "cg" or isinstance(proj, collections.abc.Mapping): self.proj = None if self.sweep_mode == "azimuth_surveillance": cg = {"rot": -450, "scale": -1} else: cg = {"rot": 0, "scale": 1} if isinstance(proj, collections.abc.Mapping): cg.update(proj) if util.has_import(osr): if isinstance(proj, osr.SpatialReference): raise TypeError("WRADLIB: Currently GDAL OSR SRS are not supported") if isinstance(ax, axes.Axes): if cg: try: caax = ax.parasites[0] paax = ax.parasites[1] except AttributeError: raise TypeError( "WRADLIB: If `proj='cg'` `ax` need to be of type" " `mpl_toolkits.axisartist.SubplotHost`" ) else: # axes object is given if fig is None: if ax == 111: # create new figure if there is only one subplot fig = pl.figure() else: # assume current figure fig = pl.gcf() if cg: # create curvelinear axes ax, caax, paax = create_cg(fig=fig, subplot=ax, **cg) # this is in fact the outermost thick "ring" rdiff = self._obj.range[1] - self._obj.range[0] ax.axis["lon"] = ax.new_floating_axis( 1, (np.max(self._obj.bins.values) + rdiff.values / 2.0) ) ax.axis["lon"].major_ticklabels.set_visible(False) # and also set tickmarklength to zero for better presentation ax.axis["lon"].major_ticks.set_ticksize(0) else: ax = fig.add_subplot(ax, projection=self.proj) if cg: plax = paax infer_intervals = kwargs.pop("infer_intervals", False) if func == "pcolormesh": kwargs.update(dict(shading="auto")) xp, yp = "rays", "bins" else: plax = ax infer_intervals = kwargs.pop("infer_intervals", True) if self.sweep_mode == "azimuth_surveillance": xp, yp = "x", "y" else: xp, yp = "gr", "z" # use cartopy, if available if hasattr(plax, "projection") and util.has_import(cartopy): map_trans = cartopy.crs.AzimuthalEquidistant( central_longitude=self.site[0], central_latitude=self.site[1] ) kwargs.update({"transform": map_trans}) # claim xarray plot function and create plot plotfunc = getattr(self._obj.plot, func) pm = plotfunc( x=xp, y=yp, ax=plax, cmap=cmap, center=center, add_colorbar=add_colorbar, add_labels=add_labels, infer_intervals=infer_intervals, **kwargs, ) # set cg grids and limits if cg: if self.sweep_mode == "azimuth_surveillance": xlims = np.min(self._obj.x), np.max(self._obj.x) ylims = np.min(self._obj.y), np.max(self._obj.y) else: xlims = np.min(self._obj.gr), np.max(self._obj.gr) ylims = np.min(self._obj.z), np.max(self._obj.z) ax.set_ylim(ylims) ax.set_xlim(xlims) ax.grid(True) caax.grid(True) if self.sweep_mode == "azimuth_surveillance": ax.set_aspect("equal", adjustable="box") # set ax as current pl.sca(ax) return pm
[docs]def plot_ppi( data, r=None, az=None, elev=0.0, site=None, proj=None, fig=None, ax=111, func="pcolormesh", rf=1.0, **kwargs, ): """Plots a Plan Position Indicator (PPI). This is a small wrapper around xarray dataarray. The radar data, coordinates and metadata is transformed into an xarray dataarray. Using the wradlib dataarray accessor the dataarray is enabled to plot polar data. Using ``proj=cg`` the plotting is done in a curvelinear grid axes. Additional data can be plotted in polar coordinates or cartesian coordinates depending which axes object is used. ``**kwargs`` may be used to try to influence the :func:`matplotlib.pyplot.pcolormesh`, :func:`matplotlib.pyplot.contour`, :func:`matplotlib.pyplot.contourf` and :func:`wradlib.georef.polar.spherical_to_proj` routines under the hood. Concerning the values of ``r``, ``az``, ``elev``, ``r`` should give the location of the center of each range bin, ``az`` and ``elev`` should give the angle at the center of the beam. Parameters ---------- data : :class:`numpy:numpy.ndarray` The data to be plotted. It is assumed that the first dimension is over the azimuth angles, while the second dimension is over the range bins r : :class:`numpy:numpy.ndarray` The ranges. Units may be chosen arbitrarily, unless proj is set. In that case the units must be meters. If None, a default is calculated from the dimensions of ``data``. rf: float If present, factor for scaling range axes, defaults to 1. az : :class:`numpy:numpy.ndarray` The azimuth angles in degrees in increasing order. If None, a default is calculated from the dimensions of ``data``. elev : float or :class:`numpy:numpy.ndarray` float or array of same shape as ``az`` Elevation angle of the scan or individual azimuths. May improve georeferencing coordinates for larger elevation angles. site : tuple or None Tuple of coordinates of the radar site. If ``proj`` is not used, this simply becomes the offset for the origin of the coordinate system. If ``proj`` is used, values must be given as (longitude, latitude, altitude) tuple of geographical coordinates. Defaults to None. proj : :py:class:`gdal:osgeo.osr.SpatialReference`, :py:class:`cartopy.crs.CRS`, dict or None GDAL OSR Spatial Reference Object describing projection If this parameter is not None, ``site`` must be set. Then the function will attempt to georeference the radar bins and display the PPI in the coordinate system defined by the projection string. fig : :class:`matplotlib.figure.Figure` If given, the PPI will be plotted into this figure object. Axes are created as needed. If None, a new figure object will be created or current figure will be used, depending on ``ax``. ax : :class:`matplotlib:matplotlib.axes.Axes` or :class:`matplotlib.gridspec.SubplotSpec` If matplotlib Axes object is given, the PPI will be plotted into this axes object. If matplotlib grid definition is given (nrows/ncols/plotnumber), axis are created in the specified place. Defaults to '111', only one subplot/axis. func : str Name of plotting function to be used under the hood. Defaults to 'pcolormesh'. 'contour' and 'contourf' can be selected too. See also -------- :func:`wradlib.georef.projection.reproject` :func:`wradlib.georef.projection.create_osr` Returns ------- ax : :class:`matplotlib:matplotlib.axes.Axes` The axes object into which the PPI was plotted pm : :class:`matplotlib:matplotlib.collections.QuadMesh` or \ :class:`matplotlib:matplotlib.contour.QuadContourSet` The result of the plotting function. Necessary, if you want to add a colorbar to the plot. Note ---- If proj=``cg``, the ``cgax`` - curvelinear Axes (r-theta-grid) is returned. ``caax`` - Cartesian Axes (x-y-grid) and ``paax`` - parasite axes object for plotting polar data can be derived like this:: caax = cgax.parasites[0] paax = cgax.parasites[1] The function :func:`~wradlib.vis.create_cg` uses the Matplotlib `AXISARTIST <https://matplotlib.org/stable/api/toolkits/axisartist.html>`_ namespace. Here are some limitations to normal Matplotlib Axes (see `AXES_GRID1 <https://matplotlib.org/stable/api/toolkits/axes_grid1.html>`_). Examples -------- See :ref:`/notebooks/visualisation/wradlib_plot_ppi_example.ipynb`, and :ref:`/notebooks/visualisation/wradlib_plot_curvelinear_grids.ipynb`. """ # check coordinate tuple if site and len(site) < 3: raise ValueError( "WRADLIB: `site` need to be a tuple of coordinates " "(longitude, latitude, altitude)." ) # site must be given, if proj is OSR if util.has_import(osr) and isinstance(proj, osr.SpatialReference) and site is None: raise TypeError( "WRADLIB: If `proj` is Spatial Reference System " "(GDAL OSR SRS) site need to be given " "as tuple of (longitude, latitude, altitude)" ) # site given without proj if site and not proj: warnings.warn( "WRADLIB: site is given without `proj`, it will be used " "as simple xy-offset" ) # re/ke kwargs handling kw_spherical = {"re": kwargs.pop("re", None), "ke": kwargs.pop("ke", 4.0 / 3.0)} if az is None: az = np.arange(data.shape[0], dtype=np.float_) az += (az[1] - az[0]) / 2.0 if r is None: if proj and proj != "cg": warnings.warn( "Parameter `r` is None, falling back to `proj=None`." "If using projection, r must be given as " "array with units m." ) proj = None r = np.arange(data.shape[1], dtype=np.float_) r += (r[1] - r[0]) / 2.0 if np.isscalar(elev): elev = np.ones_like(az) * elev da = georef.create_xarray_dataarray( data, r=r, phi=az, theta=elev, site=site, proj=proj, sweep_mode="azimuth_surveillance", rf=rf, **kw_spherical, ) da = georef.georeference_dataset(da, proj=proj) if util.has_import(osr): # fallback to proj=None for GDAL OSR if isinstance(proj, osr.SpatialReference): proj = None pm = da.wradlib.plot_ppi(ax=ax, fig=fig, func=func, proj=proj, **kwargs) return pl.gca(), pm
[docs]def plot_ppi_crosshair( site, ranges, angles=None, proj=None, elev=0.0, ax=None, **kwargs ): """Plots a Crosshair for a Plan Position Indicator (PPI). Parameters ---------- site : tuple Tuple of coordinates of the radar site. If `proj` is not used, this simply becomes the offset for the origin of the coordinate system. If `proj` is used, values must be given as (longitude, latitude, altitude) tuple of geographical coordinates. ranges : list List of ranges, for which range circles should be drawn. If ``proj`` is None arbitrary units may be used (such that they fit with the underlying PPI plot. Otherwise the ranges must be given in meters. angles : list List of angles (in degrees) for which straight lines should be drawn. These lines will be drawn starting from the center and until the largest range. proj : :py:class:`gdal:osgeo.osr.SpatialReference` GDAL OSR Spatial Reference Object describing projection The function will calculate lines and circles according to georeferenced coordinates taking beam propagation, earth's curvature and scale effects due to projection into account. Depending on the projection, crosshair lines might not be straight and range circles might appear elliptical (also check if the aspect of the axes might not also be responsible for this). elev : float or :class:`numpy:numpy.ndarray` float or array of same shape as az Elevation angle of the scan or individual azimuths. May improve georeferencing coordinates for larger elevation angles. ax : :class:`matplotlib:matplotlib.axes.Axes` If given, the crosshair will be plotted into this axes object. If None matplotlib's current axes (function gca()) concept will be used to determine the axes. Keyword Arguments ----------------- line : dict dictionary, which will be passed to the crosshair line objects using the standard keyword inheritance mechanism. If not given defaults will be used. circle : dict dictionary, which will be passed to the range circle line objects using the standard keyword inheritance mechanism. If not given defaults will be used. See also -------- :func:`~wradlib.vis.plot_ppi` - plotting a PPI in cartesian coordinates Returns ------- ax : :class:`matplotlib:matplotlib.axes.Axes` The axes object into which the PPI was plotted Examples -------- See :ref:`/notebooks/visualisation/wradlib_plot_ppi_example.ipynb`. """ # check coordinate tuple if site and len(site) < 3: raise ValueError( "WRADLIB: `site` need to be a tuple of coordinates " "(longitude, latitude, altitude)." ) # if we didn't get an axes object, find the current one if ax is None: ax = pl.gca() if angles is None: angles = [0, 90, 180, 270] # set default line keywords linekw = dict(color="gray", linestyle="dashed") # update with user settings linekw.update(kwargs.get("line", {})) # set default circle keywords circkw = dict(edgecolor="gray", linestyle="dashed", facecolor="none") # update with user settings circkw.update(kwargs.get("circle", {})) # determine coordinates for 'straight' lines if proj: # projected # reproject the site coordinates psite = georef.reproject(*site, projection_target=proj) # these lines might not be straigt so we approximate them with 10 # segments. Produce polar coordinates rr, az = np.meshgrid(np.linspace(0, ranges[-1], 10), angles) # convert from spherical to projection coords = georef.spherical_to_proj(rr, az, elev, site, proj=proj) nsewx = coords[..., 0] nsewy = coords[..., 1] else: # no projection psite = site rr, az = np.meshgrid(np.linspace(0, ranges[-1], 2), angles) # use simple trigonometry to calculate coordinates nsewx, nsewy = ( psite[0] + rr * np.cos(np.radians(90 - az)), psite[1] + rr * np.sin(np.radians(90 - az)), ) # mark the site, just in case nothing else would be drawn ax.plot(*psite[:2], marker="+", **linekw) # draw the lines for i in range(len(angles)): ax.add_line(lines.Line2D(nsewx[i, :], nsewy[i, :], **linekw)) # draw the range circles if proj: # produce an approximation of the circle x, y = np.meshgrid(ranges, np.arange(360)) poly = georef.spherical_to_proj(ranges, np.arange(360), elev, site, proj=proj)[ ..., :2 ] poly = np.swapaxes(poly, 0, 1) for p in poly: ax.add_patch(patches.Polygon(p, **circkw)) else: # in the unprojected case, we may use 'true' circles. for r in ranges: ax.add_patch(patches.Circle(psite, r, **circkw)) # there should be not much wrong, setting the axes aspect to equal # by default ax.set_aspect("equal") # return the axes object for later use return ax
[docs]def plot_rhi( data, r=None, th=None, th_res=None, az=0, site=None, proj=None, rf=1.0, fig=None, ax=111, **kwargs, ): """Plots a Range Height Indicator (RHI). This is a small wrapper around xarray dataarray. The radar data, coordinates and metadata is transformed into an xarray dataarray. Using the wradlib dataarray accessor the dataarray is enabled to plot polar data. Using ``cg=True`` the plotting is done in a curvelinear grid axes. Additional data can be plotted in polar coordinates or cartesian coordinates depending which axes object is used. ``**kwargs`` may be used to try to influence the :func:`matplotlib.pyplot.pcolormesh`, :func:`matplotlib.pyplot.contour` and :func:`matplotlib.pyplot.contourf` routines under the hood. Parameters ---------- data : :class:`numpy:numpy.ndarray` The data to be plotted. It is assumed that the first dimension is over the elevation angles, while the second dimension is over the range bins r : :class:`numpy:numpy.ndarray` The ranges. Units may be chosen arbitrarily. If None, a default is calculated from the dimensions of ``data``. rf: float If present, factor for scaling range axis, defaults to 1. th : :class:`numpy:numpy.ndarray` The elevation angles in degrees in increasing order. If None, a default is calculated from the dimensions of ``data``. th_res : float or :class:`numpy:numpy.ndarray` float or array of same shape as ``th``. In RHI's it happens that the elevation angles are spaced wider than the beam width. If this beam width (in degrees) is given in ``th_res``, plot_rhi will plot the beams accordingly. Otherwise the behavior of :func:`matplotlib:matplotlib.pyplot.pcolormesh` assumes all beams to be adjacent to each other, which might lead to unexpected results. az : float or :class:`numpy:numpy.ndarray` float or array of same shape as ``th``. site : tuple Tuple of coordinates of the radar site. If ``proj`` is not used, this simply becomes the offset for the origin of the coordinate system. If ``proj`` is used, values must be given as (longitude, latitude, altitude) tuple of geographical coordinates. proj : :py:class:`gdal:osgeo.osr.SpatialReference` GDAL OSR Spatial Reference Object describing projection If this parameter is not None, ``site`` must be set. Then the function will attempt to georeference the radar bins in the coordinate system defined by the projection string. fig : :class:`matplotlib:matplotlib.figure.Figure` If given, the RHI will be plotted into this figure object. Axes are created as needed. If None, a new figure object will be created or current figure will be used, depending on ``ax``. ax : :class:`matplotlib:matplotlib.axes.Axes` or :class:`matplotlib:matplotlib.gridspec.SubplotSpec` If matplotlib Axes object is given, the RHI will be plotted into this axes object. If matplotlib grid definition is given (nrows/ncols/plotnumber), axis are created in the specified place. Defaults to '111', only one subplot/axis. func : str Name of plotting function to be used under the hood. Defaults to 'pcolormesh'. 'contour' and 'contourf' can be selected too. See also -------- :func:`wradlib.vis.create_cg` : creation of curvelinear grid axes objects Returns ------- ax : :class:`matplotlib:matplotlib.axes.Axes` The axes object into which the RHI was plotted. pm : :class:`matplotlib:matplotlib.collections.QuadMesh` or \ :class:`matplotlib:matplotlib.contour.QuadContourSet` The result of the plotting function. Necessary, if you want to add a colorbar to the plot. Note ---- If proj=``cg``, the ``cgax`` - curvelinear Axes (r-theta-grid) is returned. ``caax`` - Cartesian Axes (x-y-grid) and ``paax`` - parasite axes object for plotting polar data can be derived like this:: caax = cgax.parasites[0] paax = cgax.parasites[1] The function :func:`~wradlib.vis.create_cg` uses the Matplotlib `AXISARTIST <https://matplotlib.org/stable/api/toolkits/axisartist.html>`_ namespace. Here are some limitations to normal Matplotlib Axes (see `AXES_GRID1 <https://matplotlib.org/stable/api/toolkits/axes_grid1.html>`_). Examples -------- See :ref:`/notebooks/visualisation/wradlib_plot_curvelinear_grids.ipynb`. """ # kwargs handling kwargs["zorder"] = kwargs.pop("zorder", 0) func = kwargs.pop("func", "pcolormesh") # re/ke kwargs handling kw_spherical = {"re": kwargs.pop("re", None), "ke": kwargs.pop("ke", 4.0 / 3.0)} if th is None: th = np.linspace(0.0, 90.0, num=data.shape[0], endpoint=True) th += (th[1] - th[0]) / 2.0 if th_res is not None: # we are given a beam resolution and thus may not just glue each # beam to its neighbor # solving this still with the efficient pcolormesh but interlacing # the data with masked values, simulating the gap between beams # make a temporary data array with one dimension twice the size of # the original img = np.ma.empty((data.shape[0], data.shape[1] * 2)) # mask everything img.mask = np.ma.masked # set the data in the first half of the temporary array # this automatically unsets the mask img[:, : data.shape[1]] = data # reshape so that data and masked lines interlace each other img = img.reshape((-1, data.shape[1])) # produce lower and upper y coordinates for the actual data yl = th - th_res * 0.5 yu = th + th_res * 0.5 # glue them together to achieve the proper dimensions for the # interlaced array th = np.concatenate([yl[None, :], yu[None, :]], axis=0).T.ravel() else: img = data if r is None: if proj and proj != "cg": warnings.warn( "Parameter `r` is None, falling back to `proj=None`." "If using projection, r must be given as " "array with units m." ) proj = None r = np.arange(data.shape[1], dtype=np.float_) r += (r[1] - r[0]) / 2.0 if np.isscalar(az): az = np.ones_like(th) * az da = georef.create_xarray_dataarray( img, r=r, phi=az, theta=th, site=site, proj=proj, sweep_mode="rhi", rf=rf, **kw_spherical, ) da = georef.georeference_dataset(da, proj=proj) if util.has_import(osr): # fallback to proj=None for GDAL OSR if isinstance(proj, osr.SpatialReference): proj = None pm = da.wradlib.plot_rhi(ax=ax, fig=fig, func=func, proj=proj, **kwargs) return pl.gca(), pm
[docs]def create_cg( fig=None, subplot=111, rot=-450, scale=-1, angular_spacing=10, radial_spacing=10, latmin=0, lon_cycle=360, ): """ Helper function to create curvelinear grid The function makes use of the Matplotlib `AXISARTIST <https://matplotlib.org/stable/api/toolkits/axisartist.html>`_ toolkit. Here are some limitations to normal Matplotlib Axes. While using the Matplotlib `AxesGrid1 Toolkit \ <https://matplotlib.org/stable/api/toolkits/axes_grid1.html>`_ most of the limitations can be overcome. See `Overview of axes_grid1 toolkit \ <https://matplotlib.org/stable/tutorials/toolkits/axes_grid.html>`_. Parameters ---------- fig : :py:class:`matplotlib:matplotlib.figure.Figure` If given, the PPI/RHI will be plotted into this figure object. Axes are created as needed. If None a new figure object will be created or current figure will be used, depending on "subplot". subplot : :class:`matplotlib:matplotlib.gridspec.SubplotSpec` nrows/ncols/plotnumber, see examples section defaults to '111', only one subplot rot : float Rotation of the source data in degrees, defaults to -450 for PPI, use 0 for RHI scale : float Scale of source data, defaults to -1. for PPI, use 1 for RHI angular_spacing : float Spacing of the angular grid, defaults to 10. radial_spacing : float Spacing of the radial grid, defaults to 10. latmin : float Startvalue for radial grid, defaults to 0. lon_cycle : float Angular cycle, defaults to 360. Returns ------- cgax : :py:class:`matplotlib:mpl_toolkits.axisartist.axis_artist.AxisArtist` curvelinear Axes (r-theta-grid) caax : :py:class:`matplotlib:matplotlib.axes.Axes` matplotlib Axes object (twin to cgax) Cartesian Axes (x-y-grid) for plotting cartesian data paax : :py:class:`matplotlib:matplotlib.axes.Axes` matplotlib Axes object (parasite to cgax) The parasite axes object for plotting polar data """ # create transformation # rotate tr_rotate = trans.Affine2D().translate(rot, 0) # scale tr_scale = trans.Affine2D().scale(scale * np.pi / 180, 1) # polar tr_polar = proj.PolarAxes.PolarTransform() tr = tr_rotate + tr_scale + tr_polar # build up curvelinear grid extreme_finder = angle_helper.ExtremeFinderCycle( 360, 360, lon_cycle=lon_cycle, lat_cycle=None, lon_minmax=None, lat_minmax=(latmin, np.inf), ) # locator and formatter for angular annotation grid_locator1 = angle_helper.LocatorDMS(lon_cycle // angular_spacing) tick_formatter1 = angle_helper.FormatterDMS() # grid_helper for curvelinear grid grid_helper = axisartist.GridHelperCurveLinear( tr, extreme_finder=extreme_finder, grid_locator1=grid_locator1, grid_locator2=None, tick_formatter1=tick_formatter1, tick_formatter2=None, ) # try to set nice locations for radial gridlines grid_locator2 = grid_helper.grid_finder.grid_locator2 grid_locator2._nbins = (radial_spacing * 2 + 1) // np.sqrt(2) # if there is no figure object given if fig is None: # create new figure if there is only one subplot if subplot == 111: fig = pl.figure() # otherwise get current figure or create new figure else: fig = pl.gcf() # generate Axis cgax = fig.add_subplot( subplot, axes_class=axisartist.HostAxes, grid_helper=grid_helper ) # get twin axis for cartesian grid caax = cgax.twin() # move axis annotation from right to left and top to bottom for # cartesian axis caax.toggle_axisline() # make right and top axis visible and show ticklabels (curvelinear axis) cgax.axis["top", "right"].set_visible(True) cgax.axis["top", "right"].major_ticklabels.set_visible(True) # make ticklabels of left and bottom axis invisible (curvelinear axis) cgax.axis["left", "bottom"].major_ticklabels.set_visible(False) # and also set tickmarklength to zero for better presentation # (curvelinear axis) cgax.axis["top", "right", "left", "bottom"].major_ticks.set_ticksize(0) # show theta (angles) on top and right axis cgax.axis["top"].get_helper().nth_coord_ticks = 0 cgax.axis["right"].get_helper().nth_coord_ticks = 0 # generate and add parasite axes with given transform paax = cgax.get_aux_axes(tr, "equal") # note that paax.transData == tr + cgax.transData # Anything you draw in paax will match the ticks and grids of cgax. cgax.parasites.append(paax) return cgax, caax, paax
def _height_formatter(x, pos, cg=False, scale=1.0, er=6370000.0): if not cg: er = 0 x = (x - er) / scale fmt_str = f"{x:g}" return fmt_str def _range_formatter(x, pos, scale=1.0): x = x / scale fmt_str = f"{x:g}" return fmt_str def _plot_beam(r, alt, beamradius, ax=None, label=None): """Plot single beam on ax""" if label is None: label = "" if ax is None: raise TypeError("wradlib: keyword argument `ax` not specified.") center = ax.plot(r, alt, "-k", linewidth=0.5, alpha=1.0, label="_Center", zorder=1) edge = ax.plot( r, (alt + beamradius), ":k", linewidth=0.5, alpha=1.0, label="_Edge", zorder=1 ) ax.plot(r, (alt - beamradius), ":k", linewidth=0.2, alpha=1.0, zorder=1) fill = ax.fill_between( r, (alt - beamradius), (alt + beamradius), label=label, alpha=0.45, zorder=1 ) return fill, center, edge
[docs]def plot_scan_strategy( ranges, elevs, sitecoords, beamwidth=1.0, vert_res=500.0, maxalt=10000.0, range_res=None, maxrange=None, units="m", terrain=None, az=0.0, cg=False, ax=111, cmap="tab10", ): """Plot the vertical scanning strategy. Parameters ---------- ranges : sequence of float or :class:`numpy:numpy.ndarray` sequence or array of float ranges elevs : sequence of float or :class:`numpy:numpy.ndarray` elevation angles sitecoords : sequence of tuple or :class:`numpy:numpy.ndarray` radar site coordinates (longitude, latitude, altitude) beamwidth : float 3dB width of the radar beam, defaults to 1.0 deg. vert_res : float Vertical resolution in [m]. maxalt : float Maximum altitude in [m]. range_res : float Horizontal resolution in [m]. maxrange : float Maximum range in [m]. units : str Units to plot in, can be 'm' or 'km'. Defaults to 'm'. terrain : bool or :class:`numpy:numpy.ndarray` If True, downloads srtm data and add orography for given `az`. az : float Used to specify azimuth for terrain plots. cg : bool If True, plot in curvelinear grid, defaults to False (cartesian grid). ax : :class:`matplotlib:matplotlib.axes.Axes` or :class:`matplotlib:matplotlib.gridspec.SubplotSpec` If matplotlib Axes object is given, the scan strategy will be plotted into this axes object. If matplotlib grid definition is given (nrows/ncols/plotnumber), axis are created in the specified place. Defaults to '111', only one subplot/axis. cmap : str matplotlib colormap string. Returns ------- ax : :class:`matplotlib:matplotlib.axes.Axes` matplotlib Axes or curvelinear Axes (matplotlib toolkit axisartist Axes object, r-theta-grid) depending on keyword argument `cg`. """ if units == "m": scale = 1.0 elif units == "km": scale = 1000.0 else: raise ValueError(f"wradlib: unknown value for keyword argument units={units}") az = np.array([az]) if maxrange is None: maxrange = ranges.max() xyz, rad = georef.spherical_to_xyz(ranges, az, elevs, sitecoords, squeeze=True) add_title = "" if terrain is True: add_title += f" - Azimuth {az[0]}°" ll = georef.reproject(xyz, projection_source=rad) # (down-)load srtm data ds = io.get_srtm( [ll[..., 0].min(), ll[..., 0].max(), ll[..., 1].min(), ll[..., 1].max()], ) rastervalues, rastercoords, proj = georef.extract_raster_dataset( ds, nodata=-32768.0 ) # map rastervalues to polar grid points terrain = ipol.cart_to_irregular_spline( rastercoords, rastervalues, ll[-1, ..., :2], order=3, prefilter=False ) if ax == 111: fig = pl.figure(figsize=(16, 8)) else: fig = pl.gcf() legend2 = {} if cg is True: ax, caax, paax = create_cg(fig=fig, subplot=ax, rot=0, scale=1) # for nice plotting we assume earth_radius = 6370000 m er = 6370000 # calculate beam_height and arc_distance for ke=1 # means line of sight ade = georef.bin_distance(ranges, 0, sitecoords[2], re=er, ke=1.0) nn0 = np.zeros_like(ranges) ecp = nn0 + er # theta (arc_distance sector angle) thetap = -np.degrees(ade / er) + 90.0 # zero degree elevation with standard refraction (bes,) = paax.plot(thetap, ecp, "-k", linewidth=3, label="_MSL", zorder=3) legend2["MSL"] = bes if terrain is not None: paax.fill_between( thetap, ecp.min() - 2500, ecp + terrain, color="0.75", zorder=2 ) # axes layout ax.set_xlim(0, np.max(ade)) ax.set_ylim([ecp.min() - maxalt / 5, ecp.max() + maxalt]) caax.grid(True, axis="x") ax.grid(True, axis="y") ax.axis["top"].toggle(all=False) gh = ax.get_grid_helper() yrange = maxalt + maxalt / 5 nbins = ((yrange // vert_res) * 2 + 1) // np.sqrt(2) gh.grid_finder.grid_locator2._nbins = nbins else: ax = fig.add_subplot(ax) paax = ax caax = ax if terrain is not None: paax.fill_between(ranges, 0, terrain, color="0.75", zorder=2) ax.set_xlim(0.0, maxrange) ax.set_ylim(0.0, maxalt) ax.grid() # axes ticks and formatting if range_res is not None: xloc = range_res caax.xaxis.set_major_locator(tick.MultipleLocator(xloc)) else: caax.xaxis.set_major_locator(tick.MaxNLocator()) yloc = vert_res caax.yaxis.set_major_locator(tick.MultipleLocator(yloc)) import functools hform = functools.partial(_height_formatter, cg=cg, scale=scale) rform = functools.partial(_range_formatter, scale=scale) caax.yaxis.set_major_formatter(tick.FuncFormatter(hform)) caax.xaxis.set_major_formatter(tick.FuncFormatter(rform)) # color management from cycler import cycler NUM_COLORS = len(elevs) cmap = pl.get_cmap(cmap) if cmap.N >= 256: colors = [cmap(1.0 * i / NUM_COLORS) for i in range(NUM_COLORS)] else: colors = cmap.colors cycle = cycler(color=colors) paax.set_prop_cycle(cycle) # correctly handle single/multiple elevations if xyz.ndim == 2: xyz = xyz[np.newaxis, ...] # plot beams for i, el in enumerate(elevs): alt = xyz[i, ..., 2] groundrange = np.sqrt(xyz[i, ..., 0] ** 2 + xyz[i, ..., 1] ** 2) if cg: plrange = thetap plalt = ecp + alt beamradius = util.half_power_radius(ranges, beamwidth) else: plrange = np.insert(groundrange, 0, 0) plalt = np.insert(alt, 0, sitecoords[2]) beamradius = util.half_power_radius(plrange, beamwidth) _, center, edge = _plot_beam( plrange, plalt, beamradius, label=f"{el:4.1f}°", ax=paax ) # legend 1 handles, labels = paax.get_legend_handles_labels() leg1 = ax.legend( handles, labels, prop={"family": "monospace"}, loc="upper left", bbox_to_anchor=(1.04, 1), borderaxespad=0, ) # legend 2 legend2["Center"] = center[0] legend2["3 dB"] = edge[0] ax.legend( legend2.values(), legend2.keys(), prop={"family": "monospace"}, loc="lower left", bbox_to_anchor=(1.04, 0), borderaxespad=0, ) # add legend 1 ax.add_artist(leg1) # set axes labels ax.set_title(f"Radar Scan Strategy - {sitecoords}" + add_title) caax.set_xlabel(f"Range ({units})") caax.set_ylabel(f"Altitude ({units})") return ax
[docs]def plot_plan_and_vert( x, y, z, dataxy, datazx, datazy, unit="", title="", saveto="", **kwargs ): """Plot 2-D plan view of ``dataxy`` together with vertical sections \ ``dataxz`` and ``datazy`` Parameters ---------- x : :class:`numpy:numpy.ndarray` array of x-axis coordinates y : :class:`numpy:numpy.ndarray` array of y-axis coordinates z : :class:`numpy:numpy.ndarray` array of z-axis coordinates dataxy : :class:`numpy:numpy.ndarray` 2d array of shape (len(x), len(y)) datazx : :class:`numpy:numpy.ndarray` 2d array of shape (len(z), len(x)) datazy : :class:`numpy:numpy.ndarray` 2d array of shape (len(z), len(y)) unit : str unit of data arrays title: str figure title saveto : str file path if figure should be saved Keyword Arguments ----------------- **kwargs : dict other kwargs which can be passed to :func:`matplotlib:matplotlib.pyplot.contourf` """ pl.figure(figsize=(10, 10)) # define axes left, bottom, width, height = 0.1, 0.1, 0.6, 0.2 ax_xy = pl.axes((left, bottom, width, width)) ax_x = pl.axes((left, bottom + width, width, height)) ax_y = pl.axes((left + width, bottom, height, width)) ax_cb = pl.axes((left + width + height + 0.02, bottom, 0.02, width)) # set axis label formatters ax_x.xaxis.set_major_formatter(tick.NullFormatter()) ax_y.yaxis.set_major_formatter(tick.NullFormatter()) # draw CAPPI pl.sca(ax_xy) xy = pl.contourf(x, y, dataxy, **kwargs) pl.grid(color="grey", lw=1.5) # draw colorbar cb = pl.colorbar(xy, cax=ax_cb) cb.set_label(f"({unit})") # draw upper vertical profil ax_x.contourf(x, z, datazx, **kwargs) # draw right vertical profil ax_y.contourf(z, y, datazy.T, **kwargs) # label axes ax_xy.set_xlabel("x (km)") ax_xy.set_ylabel("y (km)") ax_x.set_xlabel("") ax_x.set_ylabel("z (km)") ax_y.set_ylabel("") ax_y.set_xlabel("z (km)") def xycoords(x, pos): """The two args are the value and tick position""" return f"{x / 1000:.0f}" xyformatter = tick.FuncFormatter(xycoords) def zcoords(x, pos): """The two args are the value and tick position""" return f"{x // 1000:.0f}" zformatter = tick.FuncFormatter(zcoords) ax_xy.xaxis.set_major_formatter(xyformatter) ax_xy.yaxis.set_major_formatter(xyformatter) ax_x.yaxis.set_major_formatter(zformatter) ax_y.xaxis.set_major_formatter(zformatter) if not title == "": # add a title - here, we have to create a new axes object which will # be invisible then the invisible axes will get a title tax = pl.axes( (left, bottom + width + height + 0.01, width + height, 0.01), frameon=False, facecolor="none", ) tax.get_xaxis().set_visible(False) tax.get_yaxis().set_visible(False) pl.title(title) if saveto == "": # show plot pl.show() if not pl.isinteractive(): # close figure explicitely if pyplot is not in interactive mode pl.close() else: # save plot to file if (os.path.exists(os.path.dirname(saveto))) or (os.path.dirname(saveto) == ""): pl.savefig(saveto) pl.close()
[docs]def plot_max_plan_and_vert(x, y, z, data, unit="", title="", saveto="", **kwargs): """Plot according to <plot_plan_and_vert> with the maximum values along the three axes of ``data`` Examples -------- See :ref:`/notebooks/workflow/recipe2.ipynb`. """ plot_plan_and_vert( x, y, z, np.max(data, axis=-3), np.max(data, axis=-2), np.max(data, axis=-1), unit, title, saveto, **kwargs, )
[docs]def add_lines(ax, lines, **kwargs): """Add lines (points in the form Nx2) to axes Add lines (points in the form Nx2) to existing axes ax using :class:`matplotlib:matplotlib.collections.LineCollection`. Parameters ---------- ax : :class:`matplotlib:matplotlib.axes.Axes` lines : :class:`numpy:numpy.ndarray` nested Nx2 array(s) kwargs : :class:`matplotlib:matplotlib.collections.LineCollection` Examples -------- See :ref:`/notebooks/visualisation/wradlib_overlay.ipynb`. """ try: ax.add_collection(coll.LineCollection([lines], **kwargs)) except AssertionError: ax.add_collection(coll.LineCollection([lines[None, ...]], **kwargs)) except ValueError: for line in lines: add_lines(ax, line, **kwargs)
[docs]def add_patches(ax, patch_array, **kwargs): """Add patches (points in the form Nx2) to axes Add patches (points in the form Nx2) to existing axes ax using :class:`matplotlib:matplotlib.collections.PolyCollection`. Parameters ---------- ax : :class:`matplotlib:matplotlib.axes.Axes` the axes object to plot on patch_array : :class:`numpy:numpy.ndarray` nested Nx2 array(s) kwargs : :class:`matplotlib:matplotlib.collections.PolyCollection` Examples -------- See :ref:`/notebooks/visualisation/wradlib_overlay.ipynb`. """ try: ax.add_collection(coll.PolyCollection([patch_array], **kwargs)) except AssertionError: ax.add_collection(coll.PolyCollection([patch_array[None, ...]], **kwargs)) except ValueError: for patch in patch_array: add_patches(ax, patch, **kwargs)
if __name__ == "__main__": print("wradlib: Calling module <vis> as main...")