gistlib
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 chars9 lines
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)
gistlibby LogSnag