我有两个shapefile。第一个是区域的多边形shapefile,每个区域都有一个唯一的ID。第二个是一个点shapefile,在shapefile1的区域中发生了事件。
我想为point shapefile的每个事件(行)分配多边形shapefile的相应区域ID。
有关如何使用R执行此操作的任何想法?
提前致谢。
答案 0 :(得分:0)
为此,您应该可以使用Points_w_Region <- over(points,regions) ## Get the information
Points$regions <- Points_w_Region ## Assign the information to the data
。
over()
这将通过over获得的区域分配给每个点。 {{1}}是sp包的一部分,我假设你的数据在sp结构中。