How to Find list of latitude and longitude using pincode as input

柔情痞子 提交于 2019-12-02 13:21:59

Checkout Google Api

Check this out

http://maps.googleapis.com/maps/api/geocode/json?address=110029&sensor=true

This will give you the approx location of pincode 110029

All you have to do is parse the json end extract the coordinates

u have to install pyzipcode from https://pypi.python.org/pypi/pyzipcode Later try this code

from pyzipcode import ZipCodeDatabase
zcdb = ZipCodeDatabase()
zipcode = zcdb[54115]
print zipcode.zip
print zipcode.city
print zipcode.state
print zipcode.longitude
print zipcode.latitude
print zipcode.timezone
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!