我有一长串城市名称和国家/地区,我想将它们绘制在地图上。为此,我需要每个城市的经度和纬度信息。
我的表被调用test
并具有以下结构:
Cityname CountryCode
New York US
Hamburg DE
Amsterdam NL
我有一长串城市名称和国家/地区,我想将它们绘制在地图上。为此,我需要每个城市的经度和纬度信息。
我的表被调用test
并具有以下结构:
Cityname CountryCode
New York US
Hamburg DE
Amsterdam NL
使用以下代码,我已经成功解决了这个问题。
library(RJSONIO)
nrow <- nrow(test)
counter <- 1
test$lon[counter] <- 0
test$lat[counter] <- 0
while (counter <= nrow){
CityName <- gsub(' ','%20',test$CityLong[counter]) #remove space for URLs
CountryCode <- test$Country[counter]
url <- paste(
"http://nominatim.openstreetmap.org/search?city="
, CityName
, "&countrycodes="
, CountryCode
, "&limit=9&format=json"
, sep="")
x <- fromJSON(url)
if(is.vector(x)){
test$lon[counter] <- x[[1]]$lon
test$lat[counter] <- x[[1]]$lat
}
counter <- counter + 1
}
由于这是调用外部服务 (openstreetmaps.org),因此对于较大的数据集可能需要一段时间。但是,您可能只在将新城市添加到列表中时才会偶尔执行此操作。
为您提供其他一些选择。
ggmap
ggmaps 有一个geocode
使用谷歌地图进行地理编码的功能。这将您限制为每天 2,500 个。
taRifx.geo
taRifx.geo 的最新版本具有geocode
使用 Google 或 Bing 地图进行地理编码的功能。Bing 版本要求您使用(免费)Bing 帐户,但作为回报,您可以对更多条目进行地理编码。此版本的特点:
试试这个我认为它会更好地解决这个问题
> library(ggmap)
Loading required package: ggplot2
Google Maps API Terms of Service: http://developers.google.com/maps/terms.
Please cite ggmap if you use it: see citation('ggmap') for details.
#Now you can give city name or country name individually
> geocode("hamburg")
Information from URL : http://maps.googleapis.com/maps/api/geocode/json?address=hamburg&sensor=false
lon lat
1 9.993682 53.55108
geocode("amsterdam")
Information from URL : http://maps.googleapis.com/maps/api/geocode/json?address=amsterdam&sensor=false
lon lat
1 4.895168 52.37022
> geocode("new york")
Information from URL : http://maps.googleapis.com/maps/api/geocode/json?address=new+york&sensor=false
lon lat
1 -74.00594 40.71278