sd_vvp_threshold<-: Set threshold of the radial velocity standard deviation
Description
Sets the threshold of radial velocity standard deviation (sd_vvp) of an
object in m/s. Altitude layers with sd_vvp below this threshold are assumed
to have an aerial density of zero individuals. This function also updates the
migration densities in x$data$dens to eta/rcs when above
sd_vvp_threshold and 0 if below.
Usage
sd_vvp_threshold(x) <- value
# S3 method for vp
sd_vvp_threshold(x) <- value
# S3 method for list
sd_vvp_threshold(x) <- value
# S3 method for vpts
sd_vvp_threshold(x) <- value
Arguments
x
A vp, list of vp or vpts object.
value
Numeric. The sd_vvp threshold value to assign in m/s.
# NOT RUN {# Set the sd_vvp threshold for a vpvp <- example_vp
sd_vvp_threshold(vp) <- 2# Set the sd_vvp threshold for a vptsvpts <- example_vpts
sd_vvp_threshold(vpts) <- 2# }