python读取经纬度计算中心点
时间: 2023-11-04 08:01:43 浏览: 145
Python实现两点之间经纬度的计算方法
可以使用第三方库geopy来计算经纬度的中心点。具体的实现方法可以参考以下代码:
```python
from geopy import Point, distance
# 构造经纬度列表
locations = [(39.908722, 116.397499), (39.908722, 116.397601), (39.908822, 116.397499)]
# 计算中心点
center = Point(sum([Point(location) for location in locations])/len(locations))
# 打印结果
print(center.latitude, center.longitude)
```
这段代码可以计算出给定经纬度列表的中心点,其中所使用的geopy库提供了方便的点与距离计算功能。
阅读全文