pyart.graph.RadarDisplay.plot_rhi

RadarDisplay.plot_rhi(field, tilt, mask_tuple=None, vmin=None, vmax=None, cmap='jet', mask_outside=True, title=None, title_flag=True, axislabels=(None, None), axislabels_flag=True, colorbar_flag=True, colorbar_label=None, ax=None, fig=None)[source]

Plot a RHI.

Parameters :

field : str

Field to plot.

tilt : int,

Tilt number to plot.

Other Parameters:
 

mask_tuple : (str, float)

2-Tuple containing the field name and value below which to mask field prior to plotting, for example to mask all data where NCP < 0.5 set mask to [‘NCP’, 0.5]. None performs no masking.

vmin : float

Luminance minimum value, None for default value.

vmax : float

Luminance maximum value, None for default value.

cmap : str

Matplotlib colormap name.

title : str

Title to label plot with, None to use default title generated from the field and tilt parameters. Parameter is ignored if title_flag is False.

title_flag : bool

True to add a title to the plot, False does not add a title.

axislabels : (str, str)

2-tuple of x-axis, y-axis labels. None for either label will use the default axis label. Parameter is ignored if axislabels_flag is False.

axislabel_flag : bool

True to add label the axes, False does not label the axes.

colorbar_flag : bool

True to add a colorbar with label to the axis. False leaves off the colorbar.

colorbar_label : str

Colorbar label, None will use a default label generated from the field information.

ax : Axis

Axis to plot on. None will use the current axis.

fig : Figure

Figure to add the colorbar to. None will use the current figure.

Previous topic

pyart.graph.RadarDisplay.plot_ray

Next topic

pyart.graph.RadarDisplay.set_limits

This Page