有人可以帮助我在哪里下载rMaps
的塞尔维亚地图,以及如何在此地图上将一些变量与城市联系起来?
我已经安装了rMaps
...
mtq <- st_read("C:/Users/vjovanovic/Documents/R/win-library/3.5/cartography/shape/martinique.shp")
plot(st_geometry(mtq))
propSymbolsLayer(x = mtq, var = "P13_POP", legend.title.txt = "Population", col = "#a7dfb4")
srb <- st_read("C:/Users/vjovanovic/Documents/R/win-library/3.5/cartography/shape/rs_10km.shp")
plot(st_geometry(srb))
答案 0 :(得分:1)
https://gadm.org/ 您可以根据坚果在此处下载地图。我建议您使用 sp 软件包R。下载所需级别的地图数据的sp文件。然后,您可以使用。
serbia<-readRDS(" your path of the map file here") .
这是sp程序包的一个特殊类的数据,称为spacepolygonsdata frame。此数据有插槽。您可以看到插槽名称。
slotNames(serbia)
您可以将要添加的数据添加到ID中。这是一个例子。 https://rpubs.com/BeccaStubbs/bringing_shapefiles_into_R