CST_AccumulationExceedingThreshold {CSIndicators} | R Documentation |
The accumulation (sum) of a variable in the days (or time steps) that the
variable is exceeding (or not exceeding) a threshold during a period. The
threshold provided must be in the same units than the variable units, i.e. to
use a percentile as a scalar, the function Threshold
or
QThreshold
may be needed. Providing mean daily temperature data, the
following agriculture indices for heat stress can be obtained by using this
function:
GDD
Summation of daily differences between daily average
temperatures and 10°C between April 1st and October 31st
CST_AccumulationExceedingThreshold(
data,
threshold,
op = ">",
diff = FALSE,
start = NULL,
end = NULL,
time_dim = "ftime",
na.rm = FALSE,
ncores = NULL
)
data |
An 's2dv_cube' object as provided by function |
threshold |
If only one threshold is used, it can be an 's2dv_cube' object or a multidimensional array with named dimensions. It must be in the same units and with the common dimensions of the same length as parameter 'data'. It can also be a vector with the same length of 'time_dim' from 'data' or a scalar. If we want to use two thresholds: it can be a vector of two scalars, a list of two vectors with the same length of 'time_dim' from 'data' or a list of two multidimensional arrays with the common dimensions of the same length as parameter 'data'. If two thresholds are used, parameter 'op' must be also a vector of two elements. |
op |
An operator '>' (by default), '<', '>=' or '<='. If two thresholds are used it has to be a vector of a pair of two logical operators: c('<', '>'), c('<', '>='), c('<=', '>'), c('<=', '>='), c('>', '<'), c('>', '<='), c('>=', '<'),c('>=', '<=')). |
diff |
A logical value indicating whether to accumulate the difference between data and threshold (TRUE) or not (FALSE by default). It can only be TRUE if a unique threshold is used. |
start |
An optional parameter to define the initial date of the period
to select from the data by providing a list of two elements: the initial
date of the period and the initial month of the period. By default it is
set to NULL and the indicator is computed using all the data provided in
|
end |
An optional parameter to define the final date of the period to
select from the data by providing a list of two elements: the final day of
the period and the final month of the period. By default it is set to NULL
and the indicator is computed using all the data provided in |
time_dim |
A character string indicating the name of the dimension to compute the indicator. By default, it is set to 'ftime'. It can only indicate one time dimension. |
na.rm |
A logical value indicating whether to ignore NA values (TRUE) or not (FALSE). |
ncores |
An integer indicating the number of cores to use in parallel computation. |
An 's2dv_cube' object containing the aggregated values in the element
data
with dimensions of the input parameter 'data' except the dimension
where the indicator has been computed.
exp <- NULL
exp$data <- array(rnorm(216)*200, dim = c(dataset = 1, member = 2, sdate = 3,
ftime = 9, lat = 2, lon = 2))
class(exp) <- 's2dv_cube'
DOT <- CST_AccumulationExceedingThreshold(exp, threshold = 280)