gpt4 book ai didi

Python:计算两个纬度/经度之间的方位角

转载 作者:太空宇宙 更新时间:2023-11-03 13:56:31 25 4
gpt4 key购买 nike

我正在尝试计算两个纬度/经度之间的方位。

我对函数/公式本身没有疑问,

提供:

def get_bearing(lat1, long1, lat2, long2):
dLon = (long2 - long1)

y = math.sin(dLon) * math.cos(lat2)
x = math.cos(lat1) * math.sin(lat2) - math.sin(lat1) * math.cos(lat2) * math.cos(dLon)

brng = math.atan2(y, x)

brng = np.rad2deg(brng)

return brng

问题是结果不是预期的。

该函数的预期用途是返回(非常长的)列表中两个纬度/经度对之间的方位,即

    lat1 = path[int(len(path) * location / 1000)][0]
lat2 = path[int(len(path) * location / 1000) + 1][0]
lng1 = path[int(len(path) * location / 1000)][1]
lng2 = path[int(len(path) * location / 1000) + 1][1]

方位角结果随后会改变绘图的 View 方向,其中方位角可以采用 [-180, 180] 范围内的值。理想情况下,结果会显示 lat1、lng1 和 lat2、lng2 之间形成的线在图中完全“垂直”(lat/lon 注释在图中切换),见下文

enter image description here

enter image description here

我希望有人能够从函数返回的方位推断出问题,以及预期的方位应该是什么。下面是几个实例:

Current Location: 30.07134 -97.23076
Next in path: 30.0709 -97.22907
Calculated Bearing: 88.39967863143139
Expected Bearing: ~-70.67

Current Location: 29.91581 -96.85068
Next in path: 29.91556 -96.85021
Calculated Bearing: 118.9170342272798
Expected Bearing: ~122.67

Current Location: 29.69419 -96.53487
Next in path: 29.69432 -96.53466
Calculated Bearing 141.0271357781952
Expected Bearing: ~56

Current Location: 29.77357 -96.07924
Next in path: 29.77349 -96.07876
Calculated Bearing 165.24612555483893
Expected Bearing: ~104

很高兴提供更多信息,在此先感谢您提供的任何/所有帮助。

最佳答案

您是否考虑过使用 pyproj做计算而不是自己滚动?:

import pyproj
geodesic = pyproj.Geod(ellps='WGS84')
fwd_azimuth,back_azimuth,distance = geodesic.inv(long1, lat1, long2, lat2)

在此示例中,fwd_azimuth 是您之后的方位角,back_azimuth 是反向方位角(朝相反的方向)。

我在这里使用了 WGS84,因此您需要用正确的坐标系替换,并且需要重写以确保纬度/经度是 geodesic.inv() 的正确坐标类型.但是使用经过良好测试的现有地理空间库可能会为您省去很多麻烦。

关于Python:计算两个纬度/经度之间的方位角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54873868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com