read_vpts | R Documentation |
vpts
) from file(s)Reads vpts
data from one or more files.
The following file formats are supported (but cannot be mixed):
vol2bird standard output (see example below).
read_vpts(files, data_frame = FALSE, ...)
files |
Path(s) to one or more files containing vpts data. |
data_frame |
When |
... |
Additional arguments for backward compatibility, passed to |
vpts
object.
## read a vertical profile time series in VPTS CSV format:
vptsfile <- system.file("extdata", "example_vpts.csv", package = "bioRad")
read_vpts(vptsfile)
# read a single vertical profile file in ODIM h5 format:
vpfile <- system.file("extdata", "profile.h5", package = "bioRad")
read_vpts(vpfile)
# read a vertical profile time series in `vol2bird` stdout format:
stdout_file <- system.file("extdata", "example_vpts.txt", package = "bioRad")
read_vpts(stdout_file, radar = "KBGM", wavelength = "S")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.