资源简介
此为Python包,利用百度地图API实现指定经纬度,返回相应的省市区等位置信息。
代码片段和文件信息
# -*- coding: utf-8 -*-
“““
Created on Mon Aug 6 11:57:57 2018
@author: Leon
根据百度地图API,获取给定经纬度的地点所在省市区信息
我所申请的百度AK(未做IP限制):YRGGPTIunajhbD9EPevI7i8ZCWWekEDs
“““
import requests as _req
class location:
def __init__(selflnglatak=‘YRGGPTIunajhbD9EPevI7i8ZCWWekEDs‘):
# 初始化变量,并通过在变量名前面加双下划线“__”,来使其成为私有变量,防止类外访问
self.__lng=lng
self.__lat=lat
self.__ak=ak
items = {‘location‘: str(self.__lat) + ‘‘ + str(self.__lng) ‘ak‘: self.__ak ‘output‘: ‘json‘}
res = _req.get(‘http://api.map.baidu.com/geocoder/v2/‘ params=items)
self.__result = res.json()
def country(self):
return self.__result[‘result‘][‘addressComponent‘][‘country‘]
def province(self):
return self.__result[‘result‘][‘addressComponent‘][‘province‘]
def city(self):
return self.__result[‘result‘][‘addressComponent‘][‘city‘]
def district(self):
return self.__result[‘result‘][‘addressComponent‘][‘district‘]
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 0 2018-08-10 10:20 baidumapAPI\__init__.py
目录 0 2018-08-24 10:21 baidumapAPI\__pycache__\
文件 163 2018-08-10 10:59 baidumapAPI\__pycache__\__init__.cpython-36.pyc
文件 1595 2018-08-10 10:59 baidumapAPI\__pycache__\locatebyLatLng.cpython-36.pyc
文件 1202 2018-08-10 10:48 baidumapAPI\locatebyLatLng.py
目录 0 2018-08-24 10:21 baidumapAPI\
- 上一篇:python实现图书借阅系统
- 下一篇:python开发用到的工具书籍一套全
相关资源
- 从百度地图POI
- Caffe-SSD编译配置文件修改Makefile和Ma
- pygame实现的贪吃蛇游戏RetroSnaker.py
- python版本selenium webdriver api
- Python-通过百度语音API实现文本转语音
- Python-微信公众号历史文章爬取api
- python api chm
- shuake.py
- 基于百度API抓取公交站点经纬度数据
- 百度地图API实现热力地图
- Prometheus数据API导出Python脚本(export
- 密度聚类(Density peaks Clustering)Pyth
- linphone-desktop出现Cmake Error at builders/
- TensorFlow Python API documentation.pdf
- Practical Web Scraping for Data Science_2018.p
- Web Scraping with Python 爬虫2015 高清.pdf版
- time series forecasting with python gakhov 高清
- pytorch1.5官方英文文档PythonAPI(包含书
- Python3.5函数API离线查询手册html版
- 淘宝API python
- internal_city.py
- FastAPI入门级
- Python调用第三方API换脸
- 使用sendgrid api 发送邮件
- python 中英文翻译api request(百度)
- python 截图并识别图片中的文字(基于
- web.py 0.33
- Python项目案例开发从入门到实战源代
- V-rep仿真结合pythonAPI实现机器人视觉巡
- Python采集百度地图数据.zip
评论
共有 条评论