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))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.