绘制地理编码:ggmap错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绘制地理编码:ggmap错误相关的知识,希望对你有一定的参考价值。
我想用R和ggmap包可视化数据帧。
DF:
| lon | lat |
|-----------|-----------|
| 6.585863 | 51.09021 |
| 8.682.127 | 50.11092 |
| 7.460.367 | 5.152.755 |
我创建了一张地图
mapImageData <- get_googlemap(
+ "Germany",
+ zoom=15
+ )
然后想添加地理编码:
ggmap(mapImageData) +
+ geom_point(aes(x=lon, y=lat), data=df, colour="red", size=5)
但我收到错误:错误:geom_point需要以下缺少美学:x,y
我究竟做错了什么?
答案
你有三个问题:
- 某些值和小数点中的多个小数点可能不在正确的位置(另请参阅我的评论)
- 地图以错误的位置为中心
- 缩放级别很高
我们解决这个问题:
# Get the right data
ger <- read.table(text="lon lat
6.585863 51.09021
8.682127 50.11092
7.460367 51.52755", header = TRUE, strip.white = TRUE)
# Finding a good centerpoint
mean(ger$lon) # outcome: 7.576119
mean(ger$lat) # outcome: 50.90956
# Get the map; you might have to try several zoomlevels te get the right one
library(ggmap)
mapImageData <- get_googlemap(center = c(lon = 7.576119, lat = 50.90956), zoom=8)
# Plot the points on the map
ggmap(mapImageData) +
geom_point(data=ger, aes(x=lon, y=lat), colour="red", size=6, alpha=.6)
结果地图:
以上是关于绘制地理编码:ggmap错误的主要内容,如果未能解决你的问题,请参考以下文章
使用 Leaflet、folium 和 pandas 使用 python 绘制地理编码数据(来自 CSV)时出错