从地图上获取自然村和行政村的坐标点

要从地图上获取自然村和行政村的坐标点,您可以使用高德地图的API。首先,需要注册开发者账号并获取API密钥。然后,可以使用Python中的requests库发送HTTP请求来调用相应的API接口。以下是一种获取自然村和行政村坐标点的代码: 

import requests
import json

# 替换为您的高德API密钥
api_key = "your_api_key"

# 请求自然村和行政村的坐标点
def get_village_coordinates(village_name):
    url = f"https://restapi.amap.com/v3/geocode/geo?key={api_key}&address={village_name}"
    response = requests.get(url)
    data = json.loads(response.text)
    if data['status'] == '1' and int(data['count']) >= 1:
        location = data['geocodes'][0]['location']
        return location.split(",")[::-1]
    else:
        return None

# 示例:获取自然村 "xxx村" 的坐标点
village_name = "xxx村"
coordinates = get_village_coordinates(village_name)
if coordinates:
    print(f"{village_name} 的坐标点为:({coordinates[0]}, {coordinates[1]})")
else:
    print(f"找不到 {village_name} 的坐标点")

# 可以根据需要进行坐标系转换,这里以WGS84为例
from pyproj import Proj, transform

def convert_coordinates_to_wgs84(x, y):
    source_proj = Proj(init='epsg:3857')  # 高德地图坐标系(墨卡托投影)
    target_proj = Proj(init='epsg:4326')  # WGS84坐标系
    wgs84_x, wgs84_y = transform(source_proj, target_proj, x, y)
    return wgs84_x, wgs84_y

# 示例:将坐标点转换为WGS84
if coordinates:
    wgs84_coordinates = convert_coordinates_to_wgs84(float(coordinates[0]), float(coordinates[1]))
    print(f"{village_name} 的WGS84坐标点为:({wgs84_coordinates[0]}, {wgs84_coordinates[1]})")

请注意,以上代码中的your_api_key需要替换为自己的API密钥。另外,这里使用了pyproj库来进行坐标系转换,可能需要使用pip install pyproj命令来安装该库。 

你可能感兴趣的:(数据库,mysql)