如何在R中将形状转换为多边形?有shape2poly(shapefile),但此功能已被删除

时间:2013-06-24 17:03:36

标签: r package shapefile cran

如何在R中从形状转换为多边形?有shape2poly(shapefiles)但此功能已被删除,shapefilesmaptoolsspdep仍然是用于处理R中地图的包吗?

1 个答案:

答案 0 :(得分:2)

我倾向于使用OGR,因为它可以处理来自各种来源(地理数据库,kml等)的数据。

library(rgdal)
mylayer <- readOGR(dsn="/path/to/folder/containing/shapefile",
                   layer="shapefilename-minus-dot-shp")