Get location coordinates using bing or google API in python

前端 未结 3 656
北恋
北恋 2020-12-30 17:19

Here is my problem. I have a sample text file where I store the text data by crawling various html pages. This text contains information about various events and its time an

3条回答
  •  伪装坚强ぢ
    2020-12-30 17:44

    The operation you want to do is called a geocode operation. Of course you will have to extract the 'location' information by your self inside the block of textual information.

    You can do it using the service from:

    • Bing Maps: http://msdn.microsoft.com/en-us/library/ff701714.aspx
    • Google Maps: https://developers.google.com/maps/documentation/geocoding/
    • Nokia Maps: http://developer.here.net/javascript_api_explorer

    Please keep in mind that you should consider license that might applies to you depending on your use cases.

提交回复
热议问题