python利用百度map webapi获得经纬度
2021-06-23 09:07
标签:ack call coding bapi baidu back show 函数名 output python利用百度map webapi获得经纬度 标签:ack call coding bapi baidu back show 函数名 output 原文地址:https://www.cnblogs.com/batt1ebear/p/9674077.html 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获得经纬度
文章链接:http://soscw.com/index.php/essay/97743.html