Example of a scan object with name example_scan.

example_scan

Format

An object of class scan of dimension 5 x 480 x 360.

See also

Examples

# Reload example_scan from package (e.g. in case it was altered)
data(example_scan)

# Get summary info
example_scan
#>                   Polar scan (class scan)
#> 
#>      parameters:  DBZH VRADH RHOHV ZDR PHIDP 
#> elevation angle:  0.5 deg
#>            dims:  480 bins x 360 rays

# example_scan was created with
# \dontrun{
pvolfile <- system.file("extdata", "volume.h5", package = "bioRad")
pvol <- read_pvolfile(pvolfile)
example_scan <- pvol$scans[[1]]
save(example_scan, file = "data/example_scan.rda")
#> Warning: cannot open compressed file 'data/example_scan.rda', probable reason 'No such file or directory'
#> Error in gzfile(file, "wb"): cannot open the connection
# }