Raw File
seine.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/seine.R
\docType{data}
\name{seine}
\alias{seine}
\alias{rivers}
\title{Small river network in France}
\format{FORMAT:
\itemize{
    \item{name} {name}
    \item{geometry} {sfc_MULTILINESTRING}
}
The object is in the RGF93 / Lambert-93 CRS.}
\source{
\url{http://www.naturalearthdata.com/}
}
\usage{
seine
}
\description{
Lines representing the Seine, Marne and Yonne rivers.
}
\examples{
if (requireNamespace("sf", quietly = TRUE)) {
  library(sf)
  seine
  plot(seine)
}
\dontrun{
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)
}
}
\seealso{
See the rnaturalearth package: https://cran.r-project.org/package=rnaturalearth
}
\keyword{datasets}
\keyword{sf}
back to top