Skip to contents

Retrieve polar volumes

Usage

get_pvol(radar = NULL, time = NULL, ...)

Arguments

radar

The name of the radar (odim string) as a character string (e.g. "nlhrw" or "fikor").

time

The time as a POSIXct for the polar volume to download

...

Additional arguments passed on to the individual reading functions, for example param="all" to the bioRad::read_pvolfile() function.

Value

Either a polar volume or a list of polar volumes

Details

For more details on specific countries please see the vignettes.

Examples

if (FALSE) { # \dontrun{
get_pvol("deess", as.POSIXct(Sys.Date()))
get_pvol("czska", as.POSIXct(Sys.Date()))
get_pvol(
  c("deess", "dehnr", "fianj", "czska"),
  as.POSIXct(Sys.Date())
)
} # }