📅  最后修改于: 2020-11-06 06:36:47             🧑  作者: Mango
Python提供了可用于将Google地图中可用地址直接转换为地理坐标的模块。这有助于查找商户地址和查找不同地址的紧密度。
我们使用名为pygeocoder的模块,该模块提供了接收地址和地理编码的功能。使用以下命令通过pip安装此模块。
pip install pygeocoder
我们提交一个公司名称作为输入,程序将提供完整的地址作为输出。该模块在后台使用Google地图中的数据来检索结果。
from pygeocoder import Geocoder
business_name = "Workafella Business Centre - Hitec city"
print "Searching %s" %business_name
results = Geocoder.geocode(business_name)
for result in results:
print result
当我们运行上面的程序时,我们得到以下输出-
Searching Workafella Business Centre - Hitec city
Western pearl building 1st floor, Hitech City Rd,
Opposite HDFC Bank, Kondapur, Hyderabad, Telangana 500084, India