Checks which data object is contained in ODIM HDF5 file
get_odim_object_type(file)
file | A string containing a file name. |
---|
character string PVOL
for polar volume, VP
for
vertical profile.
See ODIM specification Table 2 for a full list of existing ODIM file object types.
# locate a polar volume file: pvolfile <- system.file("extdata", "volume.h5", package = "bioRad") # check the data type: get_odim_object_type(pvolfile) # > "PVOL"#> [1] "PVOL"