| get_scan {bioRad} | R Documentation | 
Get a scan (scan) from a polar volume (pvol)
Description
Returns the scan (scan) from a polar volume (pvol) with elevation angle
closest to elev.
Usage
get_scan(x, elev, all = FALSE)
Arguments
x | 
 A   | 
elev | 
 Numeric. Elevation angle in degrees.  | 
all | 
 Logical. Return the first scan in the   | 
Details
In cases where elev is exactly in between two
scan elevation angles, the lower elevation angle scan is returned.
Value
A scan object when all equals FALSE (default), or a list of scan objects if all equals TRUE
See Also
Examples
# Locate and read the polar volume example file
pvolfile <- system.file("extdata", "volume.h5", package = "bioRad")
pvol <- read_pvolfile(pvolfile)
# Get elevation angles
get_elevation_angles(pvol)
# Extract the scan closest to 3 degrees elevation (2.5 degree scan)
scan <- get_scan(pvol, 3)
# Get summary info
scan
# Extract all scans closest to 3 degrees elevation (2.5 degree scan)
# Always returns a list with scan object(s), containing multiple scans
# if the pvol contains multiple scans at the same closest elevation.
scan_list <- get_scan(pvol, 3)
scan_list
[Package bioRad version 0.8.1 Index]