Example of a vpts object (a time series of vertical profiles) with name example_vpts.

example_vpts

Format

An object of class vpts of dimension 25 x 1934 x 15.

Examples

# get summary of example vpts: summary(example_vpts)
#> Irregular time series of vertical profiles (class vpts) #> #> radar: KBGM #> # profiles: 1934 #> time range (UTC): 2016-09-01 00:02:00 - 2016-09-10 11:56:00 #> time step (s): min: 180 max: 16320
# example_vpts was created with: if (FALSE) { vptsfile <- system.file("extdata", "vpts.txt.zip", package = "bioRad") unzip(vptsfile, exdir = (dirname(vptsfile)), junkpaths = T) vptsfile <- substr(vptsfile, 1, nchar(vptsfile) - 4) example_vpts <- read_vpts(vptsfile, radar = "KBGM", wavelength = "S") rcs(example_vpts) <- 11 sd_vvp_threshold(example_vpts) <- 2 example_vpts$attributes$where$lat <- 42.2 example_vpts$attributes$where$lon <- -75.98 # save(example_vpts, file = "data/example_vpts.rda", compress = "xz") }