Learn R Programming

terra (version 1.5-21)

simplifyGeom: simplifyGeom geometries

Description

Reduce the number of nodes used to represent geometries.

Usage

# S4 method for SpatVector
simplifyGeom(x, tolerance=0.1)

Arguments

x

SpatVector of lines or polygons

tolerance

numeric. The minimum distance between nodes in units of the crs (i.e. degrees for long/lat

Value

SpatVector

See Also

sharedPaths, gaps

Examples

Run this code
# NOT RUN {
f <- system.file("ex/lux.shp", package="terra")
v <- vect(f)
w <- simplifyGeom(v, .02)
e <- erase(w)
g <- gaps(e)
plot(e, lwd=5, border="light gray")
polys(g, col="red", border="red")
# }

Run the code above in your browser using DataLab