vp
) or a list of vertical profiles (vp
) from filesR/read_vpfiles.R
read_vpfiles.Rd
Read a vertical profile (vp
) or a list of vertical profiles
(vp
) from files
read_vpfiles(files)
A character vector containing the file names of vertical profiles in ODIM HDF5 format generated by calculate_vp.
A single vp
object or a list of vp
objects.
# locate example profile file:
vpfile <- system.file("extdata", "profile.h5", package = "bioRad")
# print the local path of the profile file:
vpfile
#> [1] "/home/runner/work/_temp/Library/bioRad/extdata/profile.h5"
# load the file:
read_vpfiles(vpfile)
#> Vertical profile (class vp)
#>
#> radar: seang
#> source: WMO:02606,RAD:SE50,PLC:Ängelholm,NOD:seang,ORG:82,CTY:643,CMT:Swedish radar
#> nominal time: 2015-10-18 18:00:00
#> generated by: vol2bird 0.3.17
# to load multiple files at once:
read_vpfiles(c(vpfile, vpfile))
#> [[1]]
#> Vertical profile (class vp)
#>
#> radar: seang
#> source: WMO:02606,RAD:SE50,PLC:Ängelholm,NOD:seang,ORG:82,CTY:643,CMT:Swedish radar
#> nominal time: 2015-10-18 18:00:00
#> generated by: vol2bird 0.3.17
#>
#> [[2]]
#> Vertical profile (class vp)
#>
#> radar: seang
#> source: WMO:02606,RAD:SE50,PLC:Ängelholm,NOD:seang,ORG:82,CTY:643,CMT:Swedish radar
#> nominal time: 2015-10-18 18:00:00
#> generated by: vol2bird 0.3.17
#>