Gives the current threshold in VVP-retrieved radial velocity standard deviation in m/s.

sd_vvp_threshold(x)

# S3 method for vp
sd_vvp_threshold(x)

# S3 method for list
sd_vvp_threshold(x)

# S3 method for vpts
sd_vvp_threshold(x)

Arguments

x

A vp, list of vp or vpts object.

Value

threshold for sd_vvp in m/s.

Details

See also sd_vvp_threshold<- for setting an objects radial velocity standard deviation.

Methods (by class)

  • vp: threshold in VVP-retrieved radial velocity standard deviation of a vertical profile

  • list: threshold in VVP-retrieved radial velocity standard deviation of a list of vertical profiles

  • vpts: threshold in VVP-retrieved radial velocity standard deviation of a time series of vertical profiles

Examples

# load example data: data(example_vp) data(example_vpts) # retrieve threshold for a single vertical profile: sd_vvp_threshold(example_vp)
#> [1] 2
# retrieve threshold for a vertical profile time series: sd_vvp_threshold(example_vpts)
#> [1] 2
# change or set the threshold for a single vertical profile: sd_vvp_threshold(example_vp) <- 2 # change or set the threshold for a vertical profile time series: sd_vvp_threshold(example_vp) <- 2