read_vpts {bioRad} | R Documentation |
Read time series of vertical profiles (vpts
) from file(s)
Description
Reads vpts
data from one or more files.
The following file formats are supported (but cannot be mixed):
vol2bird standard output (see example below).
Usage
read_vpts(files, data_frame = FALSE, ...)
Arguments
files |
Path(s) to one or more files containing vpts data. |
data_frame |
When |
... |
Additional arguments for backward compatibility, passed to |
Value
vpts
object.
Examples
## 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")
[Package bioRad version 0.8.1 Index]