Learn R Programming

terra (version 1.2-10)

topology: sharedPaths

Description

Get the shared paths of lines or polygons

Usage

# S4 method for SpatVector
sharedPaths(x)

Arguments

x

SpatVector of lines or polygons

Value

SpatVector

Examples

Run this code
# NOT RUN {
f <- system.file("ex/lux.shp", package="terra")
v <- vect(f)
plot(v, col="light gray")
text(v, halo=TRUE)

x <- sharedPaths(v)
lines(x, col="red", lwd=2)
text(x, col="blue", halo=TRUE, cex=0.8)
head(x)
# }

Run the code above in your browser using DataLab