我正在尝试在 R 中创建一个 shapefile,稍后将其导入到 Fusion Table 或其他一些 GIS 应用程序中。
首先,我导入了一个包含加拿大所有人口普查区的空白 shapefile。我已根据 CT 的唯一 ID 将其他数据(以表格格式)附加到 shapefile,并映射了我的结果。目前,我只需要温哥华的那些,我想导出一个仅包含温哥华 CT 以及我新附加的属性数据的 shapefile。
这是我的代码(由于隐私原因省略了一些部分):
shape <- readShapePoly('C:/TEST/blank_ct.shp') #Load blank shapefile
shape@data = data.frame(shape@data, data2[match(shape@data$CTUID, data2$CTUID),]) #data2 is my created attributes that I'm attaching to blank file
shape1 <-shape[shape$CMAUID == 933,] #selecting the Vancouver CTs
我见过其他使用这个的例子:writePolyShape来创建 shapefile。我试过了,它在一定程度上奏效了。它创建了 .shp、.dbf 和 .shx 文件。我缺少 .prj 文件,我不确定如何创建它。有没有更好的方法来创建 shapefile?
对此问题的任何帮助将不胜感激。