get_pvol | R Documentation |
Gets polar volume data from supported sources and returns it as a (list of)
polar volume objects. The source is automatically
detected based on the provided radar
.
get_pvol(radar = NULL, datetime = NULL, ...)
radar |
Name of the radar (odim code) as a character string (e.g.
|
datetime |
Either:
|
... |
Additional arguments passed on to reading functions, for example
|
For more details on supported sources, see vignette("supported_sources")
. Within
supported countries there might also be temporal restrictions on the radars that
are operational. For example, radars with the status
0
in get_weather_radars("opera")
are currently not operational.
Not all radars in the nexrad archive can be read successfully. Radars associated
with the Terminal Doppler Weather Radar (TDWR) program can not be read. These can
be identified using the stntype
column in get_weather_radars("nexrad")
.
Either a polar volume or a list of polar volumes. See
bioRad::summary.pvol()
for details.
# Get PVOL data for a single radar and datetime
get_pvol("deess", as.POSIXct(Sys.Date()))
# Get PVOL data for multiple radars and a single datetime
get_pvol(
c("deess", "dehnr", "fianj", "czska", "KABR"),
as.POSIXct(Sys.Date())
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.