gpt4 book ai didi

r - 带有突出显示的国家和选定城市的简单世界地图

转载 作者:行者123 更新时间:2023-12-05 06:26:54 24 4
gpt4 key购买 nike

我想绘制一张世界地图并突出显示选定的国家和城市。这些国家和城市将展示获得研究数据的地点。不幸的是,我能够做到这一点。我只能强调国家。如何添加以洋红色显示的城市,以及最终的城市或国家名称?

library(maptools)
data(wrld_simpl)

lat<-c(7,13.3,12,46,38,52.31)
lon<-c(6,16,105,2,23.7,13.23)
cities<-data.frame(lat,lon)
myCountries = wrld_simpl@data$NAME %in% c("Australia", "Germany", "Sweden", "Austria")
plot(wrld_simpl, col = c(gray(.90), "red")[myCountries+1])

enter image description here

最佳答案

从这里开始最简单的方法是:

cities <- coordinates(cities)

plot(wrld_simpl, col = c(gray(.90), "red")[myCountries+1])
points(cities, col = "purple", lwd = 7)

但是,如果您需要随时修改 map (例如重新投影/转换点),您可能需要考虑使用矢量几何和 sf/rgdal:https://r-spatial.github.io/sf/

关于r - 带有突出显示的国家和选定城市的简单世界地图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55717354/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com