GetDH {CompoundEvents} | R Documentation |
Extract compound dry-hot occurrences based on thresholds of precipitation and temperature. The binary variable of the dry-hot (or dry-warm) event can be obtained.
GetDH(mp,mt,threp,thret)
mp |
Precipitation |
mt |
Temperature |
threp |
Threshold of precipitation (e.g., 20th percentile) |
thret |
Threshold of temperature (e.g., 80th percentile) |
The occurrence of compound dry-hot event (0-1 binary variable)
Hao, Z. et al. (2018). A multivariate approach for statistical assessments of compound extremes. J. Hydrol., 565: 87-94.
Hao, Z. et al. (2019). A monitoring and prediction system for compound dry and hot events. Environ. Res. Lett., 14 114034.
mp=matrix(rnorm(120,0,1),ncol=1) mt=matrix(rnorm(120,0,1),ncol=1) threp=20 thret=80 DH<-GetDH(mp,mt,threp,thret)