답변:
API 조건은 지속적으로 변경되지만 지금은 작동합니다.
OSM :
devtools::install_github("hrbrmstr/nominatim")
library(nominatim)
b1 <- osm_geocode("Berlin, Germany")
b1[c("lat", "lon")]
야후 :
devtools::install_github("trestletech/rydn")
library(rydn)
options(RYDN_KEY="yourAPIkey", RYDN_SECRET="yourSecret")
b2 <- find_place("Berlin, Germany")
b2[c("latitude", "longitude")]
Bing : taRifx.geo (Google과 함께 작동) 및 Bing과 함께 작동한다고 생각되지만 작동하지 않을 수 있으므로 자체 기능을 작성했습니다.
bGeoCode <- function(str, BingMapsKey){
require(RCurl)
require(RJSONIO)
u <- URLencode(paste0("http://dev.virtualearth.net/REST/v1/Locations?q=", str, "&maxResults=1&key=", BingMapsKey))
d <- getURL(u)
j <- fromJSON(d,simplify = FALSE)
if (j$resourceSets[[1]]$estimatedTotal > 0) {
lat <- j$resourceSets[[1]]$resources[[1]]$point$coordinates[[1]]
lng <- j$resourceSets[[1]]$resources[[1]]$point$coordinates[[2]]
}
else {
lat <- lng <- NA
}
c(lat,lng)
}
bGeoCode("Berlin, Germany", "yourAPIKeyHere")
구글 :
library(ggmap)
geocode("Berlin, Germany", source="google")