R/arith_sp.R

# Author: Robert J. Hijmans
# Date : November 2011
# Version 1.0
# Licence GPL v3


setMethod("+", signature(e1='SpatialPolygons', e2='SpatialPolygons'),
    function(e1, e2){ 
		union(e1, e2)
	}
)

setMethod("*", signature(e1='SpatialPolygons', e2='SpatialPolygons'),
    function(e1, e2){ 
		intersect(e1, e2)	}
)

setMethod("-", signature(e1='SpatialPolygons', e2='SpatialPolygons'),
    function(e1, e2){ 
		erase(e1, e2)
	}
)

#setMethod("^", signature(e1='SpatialPolygons', e2='SpatialPolygons'),
#    function(e1, e2){ 
#		crop(e1, e2)
#	}
#)

setMethod("+", signature(e1='SpatialPoints', e2='SpatialPoints'),
    function(e1, e2){ 
		bind(e1, e2)
	}
)

setMethod("+", signature(e1='SpatialLines', e2='SpatialLines'),
    function(e1, e2){ 
		bind(e1, e2)
	}
)
miraisolutions/raster documentation built on May 30, 2019, 11:41 p.m.