| seine | 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.
https://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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.