Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望为相对较小的海岸区域(经度和纬度延伸约 3 度)创建一张地图。有没有人知道 R 的现成数据比 mapdata 包中的高分辨率数据提供的分辨率更高?或者有人知道导入这些数据的来源和方法吗?
我不了解地图数据,但谷歌地图和openstreetmaps 可以提供小区域。该ggmap软件包使地图的获取和呈现相当简单。下面的代码给出了巴布亚新几内亚西部省 Gogodala 地区的水道。分辨率够高吗?
ggmap
library(ggmap) pngMAP_df = get_map(location = c(142.5, -8.10, 143.1, -7.9), source = "osm", zoom = 12) ggmap(pngMAP_df)