topoJSON
和geoJSON
文件在互联网上绘制地图时非常常见。是否可以在R
中导入它们以绘制等值区域图?
答案 0 :(得分:25)
安装rgdal
软件包。然后如果:
library(rgdal)
> "GeoJSON" %in% ogrDrivers()$name
[1] TRUE
然后你可以做类似的事情:
> map = readOGR("foo.json", "OGRGeoJSON")
> plot(map)
但您需要在ogrDrivers
列表中支持GeoJSON。