sharedPaths | R Documentation |
Get shared paths of line or polygon geometries. This can for geometries in a single SpatVector, or between two SpatVectors
## S4 method for signature 'SpatVector'
sharedPaths(x, y=NULL)
x |
SpatVector of lines or polygons |
y |
missing or SpatVector of lines or polygons |
SpatVector
gaps
, topology
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)
z <- sharedPaths(v[3,], v[12,])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.