python利用百度map webapi獲得經緯度
阿新 • • 發佈:2018-09-19
style 調用 url pytho utf baidu address get eba
1 # -*- coding: utf-8 -*- 2 import urllib 3 import urllib2 4 import json 5 6 def getloca(loca): 7 url=‘http://api.map.baidu.com/geocoder/v2/?address=‘+loca+ 8 ‘&output=json&ak=GrfpdE3WyT8ZY6oOnb26pCxPEBLxGkuO&callback=showLocation‘#從百度api調用 9 rawdata=urllib2.urlopen(url)10 readit=rawdata.read() 11 r=readit[27:-1]#輸出的格式為str,由於開頭有函數名showlocation&&showlocation 不將其剔除無法轉換為dict類型 12 reloca=json.loads(r) 13 return reloca[‘result‘][‘location‘][‘lng‘],reloca[‘result‘][‘location‘][‘lng‘]#返回元組 14 15 getloca(‘somewhere‘)
python利用百度map webapi獲得經緯度