Obtain latitude and longitude from address without the use of Google API

前端 未结 3 1949
一整个雨季
一整个雨季 2020-12-13 19:49

I am currently working on a large population-based database where it is required that I compute the distance between two addresses for each individual. My first train of tho

相关标签:
3条回答
  • 2020-12-13 20:09

    I would recommend that you try the RDSTK package which interfaces with the Data Science Toolkit. It is available on github.

    EDIT. To compute the Road Distance, I would recommend the Mapquest Directions API, which appears to have no preset limits as per this link. Let me know how it goes.

    0 讨论(0)
  • 2020-12-13 20:26

    More options:

    • The geonames package to retrieve information from the geonames service.
    • The osmar package to use the API of openstreetmap.

    Besides, the gdistance package is useful for distance calculations on geographical grids.

    0 讨论(0)
  • 2020-12-13 20:30

    What you are doing is called "geocoding". Knowing that will greatly improve your ability to search for more info :) You may have already known that since you tagged the question properly, but I wanted to make sure.

    Here's a really good previous Stack Overflow question, albeit not R specific.

    0 讨论(0)
提交回复
热议问题