rsaga.intersect.polygons {RSAGA} | R Documentation |
Spatial intersection of two polygon layers
Description
The function rsaga.intersect.polygons
calculates the
geometric intersection of two overlayed polygon layers using SAGA module
"Intersect
".
Usage
rsaga.intersect.polygons(
layer_a = NULL,
layer_b = NULL,
result = NULL,
split = FALSE,
load = NULL,
env = rsaga.env()
)
Arguments
layer_a |
A |
layer_b |
A |
result |
A |
split |
If |
load |
Deprecated, will be removed in a future release. Ignored
if |
env |
RSAGA geoprocessing environment created by
|
Details
Function gIntersection
in rgeos
package can also be used to
define the intersection between two polygon layers. However,
rsaga.intersect.polygons()
will be usually much faster,
especially when intersecting thousands of polygons.
Value
The function saves the output shapefile to the path indicated in
function argument result
.
Author(s)
Jannes Muenchow and Alexander Brenning (R interface), Olaf Conrad and Angus Johnson (SAGA modules)