有很多包可以提供这种计算,尽管它们中的大多数都是基于点而不是数据框,或者我可能犯了一个错误!我发现这种方法适用于我的熊猫数据框的纬度和经度列:
def haversine(lat1, lon1, lat2, lon2, to_radians=True, earth_radius=6378137):
"""
slightly modified version: of http://stackoverflow.com/a/29546836/2901002
Calculate the great circle distance between two points
on the earth (specified in decimal degrees or in radians)
All (lat, lon) coordinates must have numeric dtypes and be of equal length.
"""
if to_radians:
lat1, lon1, lat2, lon2 = map(np.radians, [lat1, lon1, lat2, lon2])
a = np.sin((lat2-lat1)/2.0)**2 + \
np.cos(lat1) * np.cos(lat2) * np.sin((lon2-lon1)/2.0)**2
return earth_radius * 2 * np.arcsin(np.sqrt(a))
但是我尝试过的所有初始方位角或方位角,不接受数据帧系列,尝试 numpy 数组仍然会返回零!对于数据帧的连续行,是否有某种方法可以做到这一点?我想计算连续点之间的初始方位。在 R 中,bearing 函数将使用数据框完成这项工作,只是想知道 Python 中是否存在等价物。