R googleway ошибка в геокодировании с адресом - PullRequest
0 голосов
/ 10 декабря 2018

У меня возникла проблема с функцией google_geocode в пакете googleway.Сначала я просто попробовал его с простым адресом:

key <- MyKey

df <- google_geocode(address = "5 Rue J-F Kennedy 8332 Luxembourg",
                     key = key,
                     simplify = TRUE)

и получил следующее сообщение:

Error in value[[3L]](cond) : 
There was an error downloading results. Please manually check the following URL is valid by entering it into a browswer. If valid, please file a bug report citing this URL (note: your API key has been removed, so you will need to add that back in) 
https://maps.googleapis.com/maps/api/geocode/json?&address=5+rue+j-f+kennedy+8332+luxembourg&key=

Я вставил его в свой браузер, и все было в порядке,Есть идеи?

...