View source: R/MazamaSpatialUtils.R
simplify | R Documentation |
Simplify a simple features dataframe. This is a convenience
wrapper for ms_simplify
simplify(SFDF, keep = 0.05, ...)
SFDF |
Object of class simple features data frame. |
keep |
Proportion of points to retain (0-1; default 0.05) |
... |
Arguments passed to |
A simplified simple features dataframe.
## Not run:
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)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.