raster (version 2.6-7)

symdif: Symetrical difference

Description

Symetrical difference of SpatialPolygons* objects

Usage

# S4 method for SpatialPolygons,SpatialPolygons
symdif(x, y, ...)

Arguments

x

SpatialPolygons* object

y

SpatialPolygons* object

...

Additional SpatialPolygons* object(s)

Value

SpatialPolygons*

See Also

erase

Examples

Run this code
# NOT RUN {
#SpatialPolygons
if (require(rgdal) & require(rgeos)) {
	p <- shapefile(system.file("external/lux.shp", package="raster"))
	b <- as(extent(6, 6.4, 49.75, 50), 'SpatialPolygons')
	projection(b) <- projection(p)
	sd <- symdif(p, b)
	plot(sd, col='red')
}
# }

Run the code above in your browser using DataCamp Workspace