Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shikanon/baidumapapi
A Simple Library of Python Baidu Map API , make easy when you want to use map data.
https://github.com/shikanon/baidumapapi
api baidumapapi map
Last synced: 2 months ago
JSON representation
A Simple Library of Python Baidu Map API , make easy when you want to use map data.
- Host: GitHub
- URL: https://github.com/shikanon/baidumapapi
- Owner: shikanon
- License: mit
- Created: 2019-03-06T12:00:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T01:41:36.000Z (about 2 years ago)
- Last Synced: 2024-11-08T06:44:09.494Z (3 months ago)
- Topics: api, baidumapapi, map
- Language: Python
- Homepage:
- Size: 137 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BaiduMapAPI
Language: [English](https://github.com/shikanon/BaiduMapAPI/blob/master/README.md) | [中文](https://github.com/shikanon/BaiduMapAPI/blob/master/README_ZH.md)
A Simple Python Baidu Map API Library, make easy for you when you want to use map data.
It is Python Baidu Map API Library. We encapsulate it, and make it more easy for you.
This is [document](http://baidumapapi.shikanon.com/doc/)
## Installation
You can install it via pip
```
$ pip install BaiduMapAPI
```
or clone it and install it
```
$ git clone https://github.com/shikanon/BaiduMapAPI.git
$ cd BaiduMapAPI
$ pip install -r requirements.txt
$ python setup.py install
```## Exmaple
Query the transit info
```
import json
from BaiduMapAPI.api import MapDirectiondirection = MapDirection(AK, SK)
origin = "23.137903,113.34348"
destination = "22.544383,114.062203"
coord_type = "wgs84"
result = direction.transit(origin, destination, coord_type=coord_type)
print(result.to_dataframe())
```This exmaple of getting all street of china.
```
import json
import pandas as pdfrom BaiduMapAPI.api import SearchPlace, searchRegion
df = pd.read_csv("http://baidumapapi.shikanon.com/data/ChUnit2017.csv", encoding="utf-8")
df["lat"] = 0.0
df["lng"] = 0.0df["详细地址"] = df["区镇"] + df["街道"]
search = SearchPlace(AK, SK)
for i in df.index:
print(df["详细地址"][i], df["省"][i])
if df["城市"][i] == "市辖区":
content = search.searchRegion(query=df["详细地址"][i], region=df["省"][i], output="json")
else:
content = search.searchRegion(query=df["详细地址"][i], region=df["城市"][i], output="json")
result = json.loads(content)assert result["status"] == 0
if len(result["results"]) > 0:
df["lat"][i] = result["results"][0]["location"]["lat"]
df["lng"][i] = result["results"][0]["location"]["lng"]
```