Geocoding地理编码代码
时间: 2023-08-18 14:06:02 浏览: 99
geocoding:地理编码
Geocoding(地理编码)是将地理位置描述(例如地址、邮政编码或地名)转换为地球表面上的经度和纬度坐标的过程。
以下是一个示例 Python 代码,使用 Google Maps API 进行地理编码:
```python
import requests
# Google Maps API 地理编码请求的 URL
url = 'https://maps.googleapis.com/maps/api/geocode/json'
# 添加请求参数
params = {
'address': '1600 Amphitheatre Parkway, Mountain View, CA',
'key': 'YOUR_API_KEY'
}
# 发送 GET 请求并获取响应数据
response = requests.get(url, params=params).json()
# 解析响应数据并输出经纬度坐标
location = response['results'][0]['geometry']['location']
print(location['lat'], location['lng'])
```
请注意,在上面的代码中,您需要将 `YOUR_API_KEY` 替换为您自己的 Google Maps API 密钥。
阅读全文