-1

我在 3d 维度 (x,y,z) 中有两个点,我想计算然后使用 Python3 之间的方位角。提前谢谢。

4

1 回答 1

1

请试试这个,

在解析几何中,

距离 = SQRT((x2 –x1)2+(y2 –y1)2+(z2 –z1)2)

下降 = arcsin ((z2 – z1) / 距离)

方位角 = arctan((x2 –x1)/(y2 –y1)) (总是二维的)

返回的 θ 值将在 ±90° 的范围内,并且必须进行校正以提供 0 到 360° 范围内的真实方位角

import math
x1,y1,z1 = 5.0,6.7,1.5
x2,y2,z2 = 4.0,1.2,1.6
distance = math.sqrt((x2-x1)**2+(y2-y1)**2+(z2 -z1)**2)
print(distance)
# 5.5910642993977451
plunge = math.degrees(math.asin((z2-z1)/distance))
print(plunge)
# 1.0248287567800018 # the resulting dip_plunge is positive downward if z2 > z1
azimuth = math.degrees(math.atan2((x2-x1),(y2-y1)))
print(azimuth)
# -169.69515353123398 # = 360 + azimuth = 190.30484646876602 or  180+ azimuth = 10.304846468766016 over the range of 0 to 360°
于 2021-10-09T11:41:31.480 回答