3

The datasciencetoolkit.org has terminated its maps service from 12 feb'19. Anyone else experiencing the same issue? Moreover is there any other simple way to geocode locations in R as using GoogleAPI requires a billing account

  • Yes, if they've terminated that service, everyone will have that issue, i.e. it's no longer available for anyone – camille Feb 12 '19 at 19:20

1 Answers1

1

A few options in R:

Don't know about an R pkg, but just saw https://locationiq.com/docs-html/index.html#official-client-libraries

sckott
  • 5,755
  • 2
  • 26
  • 42
  • 1
    geonames seems to work great and to be really complete. Finding examples is harder though. Here is an example of geocoding a city: `rouyn.coo <- GNsearch(q="Rouyn Noranda", country = "CA", cities = "cities1000")`. I may help other people coming here. – Bastien Jun 21 '19 at 14:01