Learn R Programming

terra (version 1.4-22)

erase: Erase parts of a SpatVector object

Description

Erase parts of a SpatVector with another SpatVector or with a SpatExtent. You can also erase (parts of) polygons with the other polygons of the same SpatVector.

Usage

# S4 method for SpatVector,SpatVector
erase(x, y)

# S4 method for SpatVector,missing erase(x)

# S4 method for SpatVector,SpatExtent erase(x, y)

Arguments

x

SpatVector

y

SpatVector or SpatExtent

Value

SpatVector or SpatExtent

See Also

intersect, crop. The equivalent for SpatRaster is mask

Examples

Run this code
# NOT RUN {
f <- system.file("ex/lux.shp", package="terra")
v <- vect(f)
e <- ext(5.6, 6, 49.55, 49.7)
x <- erase(v, e)

p <- vect("POLYGON ((5.8 49.8, 6 49.9, 6.15 49.8, 6 49.6, 5.8 49.8))")
y <- erase(v, p)

# self-erase
h <- convHull(v[-12], "NAME_1")
he <- erase(h)
plot(h, lwd=2, border="red", lty=2)
lines(he, col="gray", lwd=3)
# }

Run the code above in your browser using DataLab