Learn R Programming

bioRad (version 0.5.2)

summary.param: Inspect a parameter (param)

Description

R base functions for inspecting a parameter (param) object.

Usage

# S3 method for param
summary(object, ...)

is.param(x)

Arguments

object

A param object.

...

Additional arguments affecting the summary produced.

x

A param object.

Value

For is.param(): TRUE for an object of class param, otherwise FALSE.

Details

A parameter is a quantity/variable measured by the radar during a scan (or sweep). These are organized along radar range (bins) and azimuth (rays). Scan parameters are named according to the OPERA data information model (ODIM), see Table 16 in the ODIM specification.

Commonly available parameters are:

  • DBZH, DBZ: (Logged) reflectivity factor in dBZ.

  • TH, T: (Logged) uncorrected reflectivity factor in dBZ.

  • VRADH, VRAD: Radial velocity in m/s. Radial velocities towards the radar are negative, while radial velocities away from the radar are positive.

  • RHOHV: Correlation coefficient (unitless). Correlation between the vertically and horizontally polarized reflectivity factor.

  • PHIDP: Differential phase in degrees.

  • ZDR: (Logged) differential reflectivity in dB.

See Also

get_param()

Examples

Run this code
# NOT RUN {
# Extract the DBZH scan parameter from the example scan
param <- get_param(example_scan, "DBZH")

# Verify that it is an object of class param
is.param(param)

# Get summary info for this parameter
param # Same as summary(param) or print(param)
# }

Run the code above in your browser using DataLab