Simplify a simple features dataframe. This is a convenience
wrapper for ms_simplify
simplify(SFDF, keep = 0.05, ...)
Object of class simple features data frame.
Proportion of points to retain (0-1; default 0.05)
Arguments passed to rmapshaper::ms_simplify()
A simplified simple features dataframe.
if (FALSE) {
library(MazamaSpatialUtils)
FR <-
SimpleCountries %>%
dplyr::filter(countryCode == "FR")
par(mfrow = c(3, 3), mar = c(1, 1, 3, 1))
for (i in 9:1) {
keep <- 0.1 * i
geom <-
FR %>%
simplify(keep) %>%
sf::st_geometry()
plot(geom, main=paste0("keep = ", keep))
}
layout(1)
par(mar = c(5,4,4,2)+.1)
}