gCoverageUnion | R Documentation |
GEOSCoverageUnion is an optimized union algorithm for polygonal inputs that are correctly noded and do not overlap. It will not generate an error (return NULL) for inputs that do not satisfy this constraint.
gCoverageUnion(spgeom, byid=FALSE, id = NULL)
spgeom |
sp object as defined in package sp |
byid |
Logical determining if the function should be applied across subgeometries (TRUE) or the entire object (FALSE) |
id |
Character vector defining id labels for the resulting geometries, if unspecified returned geometries will be labeled based on their parent geometries' labels. |
Roger Bivand
gUnaryUnion
run <- FALSE
if (require(maptools)) run <- TRUE
if (run) {
nc1 <- readShapePoly(system.file("shapes/sids.shp", package="maptools")[1],
proj4string=CRS("+proj=longlat +datum=NAD27"))
}
if (run) {
print(system.time(oU <- gUnionCascaded(nc1)))
if (version_GEOS0() >= "3.8.0") {
print(system.time(oCU <- gCoverageUnion(nc1)))
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.