Download MNHN vector layer from IGN WFS (RGB or IRC)
get_mnhn.RdDownloads a vector layer from the IGN WFS service for the
area covering x expanded with a buffer.
Available layer are from MNHN (Nationale Museum of Natural History)
Examples
if (FALSE) { # \dontrun{
library(sf)
x <- st_sfc(st_point(c(-4.372746579180652, 47.79820761331345)), crs = 4326)
ospar <- get_mnhn(x, key = "ospar", buffer = 5000)
x <- st_transform(x, st_crs(ospar))
plot(st_geometry(ospar), col = "lightgrey")
plot(st_geometry(st_buffer(x, 5000)), col = "#FFB3B3", add = TRUE)
plot(st_geometry(x), col = "red", lwd =2, add = TRUE, pch = 19, cex = 2)
} # }