Computes drought stress combining a climate component (SPEI-3 index) and a topographic modulation (aspect, slope, TWI). Falls back to topographic-only assessment when SPEI is unavailable.
Arguments
- units
An sf object with forest parcels.
- layers
A nemeton_layers object. Used to extract DEM.
- dem
A SpatRaster with digital elevation model (meters).
- climate_data
Optional list with
precip(monthly precipitation vector in mm) andtemp(list withtminandtmaxmonthly vectors in degrees C). If NULL, uses simulated data.
Details
**Climate component** (weight 0.6): Uses SPEI-3 (Standardised Precipitation-Evapotranspiration Index at 3-month scale) via SPEI. PET is computed with the Hargreaves method. R3_climat = (-SPEI_recent + 2) / 4, clamped to 0-1. Falls back to 0.5 without SPEI.
**Topographic component** (weight 0.4):
aspect_risk: south-facing = max risk
slope_risk: steep slopes = runoff = dry
twi_risk: low TWI = dry
topo_risk = 0.4*aspect_risk + 0.3*slope_risk + 0.3*twi_risk
R3 = (0.6 * climate + 0.4 * topo) * 100
See also
Other risk-indicators:
indicator_risk_browsing(),
indicator_risk_fire(),
indicator_risk_storm()