summary.pvol | R Documentation |
pvol
)R base functions for inspecting a polar volume (pvol
) object.
## S3 method for class 'pvol'
summary(object, ...)
is.pvol(x)
## S3 method for class 'pvol'
dim(x)
object |
A |
... |
Additional arguments affecting the summary produced. |
x |
A |
A polar volume consists of a number of scans (or sweeps) made by the radar at
different elevation angles. A polar volume (pvol
) object is a list
containing:
radar
: Radar identifier.
datetime
: Nominal time of the volume in UTC.
scans
: List of scans (scan
) at different elevation angles.
attributes
: List of the volume's what
, where
and how
attributes.
geo
: List of the volume's geographic properties:
lat
: Latitude of the radar in decimal degrees.
lon
: Longitude of the radar in decimal degrees.
height
: Height of the radar antenna in meters above sea level.
For is.pvol()
: TRUE
for an object of class pvol
, otherwise
FALSE
.
For dim.pvol()
: number of scans (scan
) in a polar volume
(pvol
).
read_pvolfile()
get_elevation_angles()
get_scan()
# Locate and read the polar volume example file
pvolfile <- system.file("extdata", "volume.h5", package = "bioRad")
pvol <- read_pvolfile(pvolfile)
# Check if it is an object of class pvol
is.pvol(pvol)
# Get summary info
pvol # Same as summary(pvol) or print(pvol)
# Get dimensions
dim(pvol)
# Get summary info for the scans in the polar volume
pvol$scans
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.