make a plot using geom_sf and a dataset of linestrings in r

library(ggplot2)
library(sf)

# Assuming your dataset of linestrings is named 'lines'
# 'lines' should be an sf object with linestrings

ggplot() + 
  geom_sf(data = lines)
173 chars
9 lines

related categories

gistlibby LogSnag