Plots a scan in polar coordinates. For plots in Cartesian coordinates,
see project_to_ppi
An object of class scan
.
The scan parameter to plot, see details below.
Range of x (range, distance from radar) values to plot.
Range of y (azimuth) values to plot.
The range of parameter values to plot.
ggplot argument setting the plot color of NA values
Arguments passed to low level ggplot function.
Available scan parameters for plotting can by printed to screen
by summary(x)
. Commonly available parameters are:
DBZH
", "DBZ
"(Logged) reflectivity factor (dBZ)
TH
", "T
"(Logged) uncorrected reflectivity factor (dBZ)
VRADH
", "VRAD
"Radial velocity (m/s). Radial velocities towards the radar are negative, while radial velocities away from the radar are positive
RHOHV
"Correlation coefficient (unitless). Correlation between vertically polarized and horizontally polarized reflectivity factor
PHIDP
"Differential phase (degrees)
ZDR
"(Logged) differential reflectivity (dB)
The scan parameters are named according to the OPERA data information model (ODIM), see Table 16 in the ODIM specification.
# load an example scan:
data(example_scan)
# print to screen the available scan parameters
summary(example_scan)
#> Polar scan (class scan)
#>
#> parameters: DBZH VRADH RHOHV ZDR PHIDP
#> elevation angle: 0.5 deg
#> dims: 480 bins x 360 rays
# make ppi for the scan
# plot the reflectivity param:
plot(example_scan, param = "DBZH")
# \dontrun{
# change the range of reflectivities to plot, from -10 to 10 dBZ:
plot(example_scan, param = "DBZH", zlim = c(-10, 10))
# change the scale name and colour scheme, using viridis colors:
plot(example_scan, param = "DBZH", zlim = c(-10, 10)) + viridis::scale_fill_viridis(name = "dBZ")
#> Scale for 'fill' is already present. Adding another scale for 'fill', which
#> will replace the existing scale.
# }