在 R 中裁剪多边形

Clipping polygons in R

我有两个带有地理编码的数据框。第一个看起来像这样:

spoints<- data.frame(x=c(1,2,3,4,5,6),y=c(6,5,4,3,2,1)) 

spoints 映射一个国家。

我的第二个数据框是这样的:

polyData<-data.frame(x=c(1,2,3,4,5,6,7,8,9,10),y=c(10,9,8,7,6,5,4,3,2,1),
col=c("a","b","c",etc.), id=c("a","b","c",etc.), average=c(44,33,66,55,etc))

这个包含创建 voronoi clusters/polygons 的坐标。但这些是重叠在海洋中的素描多边形。所以,我想避免这种情况,让他们停在国家边界。

但是现在,我在使用 GPC 库或其他库时遇到困难。

有人可以帮我解决这个问题吗?

这是一个使用我在评论中提到的 rgeos 库的示例。

library(rgeos)
library(sp)

#making set of polygons for illustration
d1 <- readWKT("POLYGON((0 0, 1 0, 1 1, 0 1, 0 0))")
Tri <- c("POLYGON((0.3 0.6, 0.6 0.6, 0.5 1.3, 0.3 0.6))",
         "POLYGON((0.7 0.3, 1.3 0.3, 1.1 0.6, 0.7 0.3))")
d2 <- readWKT(text=paste0("GEOMETRYCOLLECTION(",paste0(Tri,collapse=","),")"),
      id=c("a","b"))

plot(d1,xlim=c(0, 1.4), ylim=c(0, 1.4))
plot(d2,col='red',add=TRUE)

#now taking the intersection
d3 <- gIntersection(d1,d2,byid=TRUE)
plot(d3,col='blue',add=TRUE)