if (grassStarted()) {
# Setup
library(terra)
# Elevation and points
madElev <- fastData("madElev")
madDypsis <- fastData("madDypsis")
# Convert to fasterRaster formats:
elev <- fast(madElev)
dypsis <- fast(madDypsis)
# Aggregate cells of the raster so they are bigger (otherwise, in this
# example, we'd have no cells with > 1 point):
elevAgg <- aggregate(elev, 32)
# Remove all but one or two points per cell
thin1 <- thinPoints(dypsis, elevAgg, n = 1)
thin2 <- thinPoints(dypsis, elevAgg, n = 2)
# Plot
plot(elevAgg)
plot(dypsis, add = TRUE)
plot(thin2, col = "yellow", add = TRUE)
plot(thin1, col = "red", add = TRUE)
legend(
"bottomright",
legend = c("In original & thin 1 & 2",
"In just thin 1 & 2", "In just thin 1"),
pch = 16,
col = c("black", "yellow", "red"),
bg = "white",
xpd = NA
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.