This function creates a raster map with values equal to the topographic wetness index (TWI), which is a measure of how much overland water flow tends to accumulate in or flow away from a location.
See also
terrain()
, ruggedness()
, geomorphons()
, GRASS manual for module r.topidx
(see grassHelp("r.topidx")
)
Examples
if (grassStarted()) {
# Setup
library(terra)
# Elevation raster
madElev <- fastData("madElev")
# Convert to GRaster:
elev <- fast(madElev)
# Terrain ruggedness index:
tri <- ruggedness(elev)
plot(c(elev, tri))
# Topographic wetness index:
twi <- wetness(elev)
plot(c(elev, twi))
}