sharedPaths {terra}R Documentation

Shared paths

Description

Get shared paths of line or polygon geometries

Usage

## S4 method for signature 'SpatVector'
sharedPaths(x)

Arguments

x

SpatVector of lines or polygons

Value

SpatVector

See Also

gaps, topology

Examples

Run examples

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)

[Package terra version 1.5-34 Index]