seine {spData} | R Documentation |
Lines representing the Seine, Marne and Yonne rivers.
seine
FORMAT:
name name
geometry sfc_MULTILINESTRING
The object is in the RGF93 / Lambert-93 CRS.
http://www.naturalearthdata.com/
See the rnaturalearth package: https://cran.r-project.org/package=rnaturalearth
if (requireNamespace("sf", quietly = TRUE)) { library(sf) seine plot(seine) } ## Not run: library(sf) library(rnaturalearth) library(tidyverse) seine = ne_download(scale = 10, type = "rivers_lake_centerlines", category = "physical", returnclass = "sf") %>% filter(name %in% c("Yonne", "Seine", "Marne")) %>% select(name = name_en) %>% st_transform(2154) ## End(Not run)