首页 > 后端开发 > Python教程 > 基于Python的地图坐标服务接口调用代码实例

基于Python的地图坐标服务接口调用代码实例

大家讲道理
发布: 2016-11-09 10:42:28
原创
1299 人浏览过

代码描述:基于Python的地图坐标服务接口调用代码实例

关联数据:地图坐标服务

#!/usr/bin/python
# -*- coding: utf-8 -*-
import json, urllib
from urllib import urlencode
  
#----------------------------------

#----------------------------------
  
def main():
  
    #配置您申请的APPKey
    appkey = "*********************"
  
    #1.经纬度转换
    request1(appkey,"GET")
  
  
  
#经纬度转换
def request1(appkey, m="GET"):
    url = "http://v.juhe.cn/offset/index"
    params = {
        "lng" : "", #经度,如:116.3974965092
        "lat" : "", #纬度,如:39.908700982285396
        "type" : "", #转换类型,1:GPS->百度, 2: 百度->GPS ,3:GPS->谷歌, 4:谷歌->GPS<br/>     5:百度->谷歌 ,6:谷歌->百度
        "dtype" : "", #返回数据格式:json或xml或jsonp,默认json
        "callback" : "", #返回格式选择jsonp时,必须传递
        "key" : appkey, #你申请的key
  
    }
    params = urlencode(params)
    if m =="GET":
        f = urllib.urlopen("%s?%s" % (url, params))
    else:
        f = urllib.urlopen(url, params)
  
    content = f.read()
    res = json.loads(content)
    if res:
        error_code = res["error_code"]
        if error_code == 0:
            #成功请求
            print res["result"]
        else:
            print "%s:%s" % (res["error_code"],res["reason"])
    else:
        print "request api error"
  
  
  
if __name__ == &#39;__main__&#39;:
    main()
登录后复制


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板