get_scan | R Documentation |
scan
) from a polar volume (pvol
)Returns the scan (scan
) from a polar volume (pvol
) with elevation angle
closest to elev
.
get_scan(x, elev, all = FALSE)
x |
A |
elev |
Numeric. Elevation angle in degrees. |
all |
Logical. Return the first scan in the |
In cases where elev
is exactly in between two
scan elevation angles, the lower elevation angle scan is returned.
A scan
object when all
equals FALSE
(default), or a list of scan
objects if all
equals TRUE
summary.scan()
get_elevation_angles()
# 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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.