如何在R中从形状转换为多边形?有shape2poly(shapefiles)
但此功能已被删除,shapefiles
,maptools
,spdep
仍然是用于处理R中地图的包吗?
答案 0 :(得分:2)
我倾向于使用OGR,因为它可以处理来自各种来源(地理数据库,kml等)的数据。
library(rgdal)
mylayer <- readOGR(dsn="/path/to/folder/containing/shapefile",
layer="shapefilename-minus-dot-shp")