从地图获取5A风景区位置

以下是利用Python从高德地图获取5A风景区位置并将坐标转换为WGS84的步骤:

1. 安装requests库和pyproj库。您可以使用pip命令在终端或命令提示符中安装这些库。

2. 导入requests和pyproj库:


import requests
import pyproj
 

3. 设置高德地图API密钥和搜索关键字:


api_key = 'your_api_key_here'
keywords = '5A景区'
 

4. 发送HTTP GET请求以获取5A风景区位置信息:


url = 'https://restapi.amap.com/v3/place/text?key={}&keywords={}&type=150500&city=全国&output=json'.format(api_key, keywords)
response = requests.get(url)
data = response.json()
 

5. 解析API响应以获取5A风景区的位置:


locations = []
for poi in data['pois']:
    location = {'name': poi['name'], 'address': poi['address'], 'location': poi['location']}
    locations.append(location)
 

6. 将坐标从高德地图的坐标系转换为WGS84坐标系:


wgs84 = pyproj.Proj('+proj=longlat +datum=WGS84')
gcj02 = pyproj.Proj('+proj=longlat +datum=GCJ02')
for location in locations:
    lng, lat = location['location'].split(',')
    x, y = pyproj.transform(gcj02, wgs84, lng, lat)
    location['lng'], location['lat'] = x, y
    del location['location']
 

7. 现在,您可以在“locations”列表中找到所有5A风景区的名称、地址和WGS84坐标。

你可能感兴趣的:(python)