hdobs.plot_swath

hdobs.plot_swath(varname='wspd', domain='dynamic', ax=None, cartopy_proj=None, **kwargs)[source]

Creates a map plot of a swath of interpolated recon data.

Parameters
  • varname (str) –

    Variable to plot. Can be one of the following keys in dataframe:

    • ”sfmr” = SFMR surface wind

    • ”wspd” = 30-second flight level wind (default)

    • ”pkwnd” = 10-second flight level wind

    • ”p_sfc” = extrapolated surface pressure

  • domain (str) – Domain for the plot. Default is “dynamic”. Please refer to Map Domain Options for available domain options.

  • ax (axes) – Instance of axes to plot on. If none, one will be generated. Default is none.

  • cartopy_proj (ccrs) – Instance of a cartopy projection to use. If none, one will be generated. Default is none.

Other Parameters
  • prop (dict) – Customization properties of recon plot. Please refer to plot_swath and plot_map for available options.

  • map_prop (dict) – Customization properties of Cartopy map. Please refer to Map prop for available options.

  • track_dict (dict, optional) – Storm track dictionary. If None (default), internal storm center track is used.

  • swathfunc (function) – Function to operate on interpolated recon data (e.g., np.max, np.min, or percentile function). Default is np.min for pressure, otherwise np.max.