spData (version 0.3.5)

seine: Small river network in France

Description

Lines representing the Seine, Marne and Yonne rivers.

Usage

seine

Arguments

Format

FORMAT:

  • name name

  • geometry sfc_MULTILINESTRING

The object is in the RGF93 / Lambert-93 CRS.

See Also

See the rnaturalearth package: https://cran.r-project.org/package=rnaturalearth

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataLab