2

首先,我很抱歉发布这个简单的问题。可能有一个模块可以计算两点之间的角度和距离。

  • A = (560023.44957588764,6362057.3904932579)
  • B = (560036.44957588764,6362071.8904932579)
4

2 回答 2

7

给定

在此处输入图像描述

您可以计算角度 ,theta和 A 和 B 之间的距离:

import math
def angle_wrt_x(A,B):
    """Return the angle between B-A and the positive x-axis.
    Values go from 0 to pi in the upper half-plane, and from 
    0 to -pi in the lower half-plane.
    """
    ax, ay = A
    bx, by = B
    return math.atan2(by-ay, bx-ax)

def dist(A,B):
    ax, ay = A
    bx, by = B
    return math.hypot(bx-ax, by-ay)

A = (560023.44957588764, 6362057.3904932579)
B = (560036.44957588764, 6362071.8904932579)
theta = angle_wrt_x(A, B)
d = dist(A, B)
print(theta)
print(d)

产生

0.839889619638  # radians
19.4743420942

atan2(编辑:由于您正在处理平面中的点,因此它比点积公式更易于使用)。

于 2012-11-24T18:06:16.130 回答
4

当然,math模块有atan2. 是一个math.atan2(y, x)角度(0, 0)(x, y)

也是math.hypot(x, y)距离(0, 0)形式(x, y)

于 2012-11-24T18:07:44.927 回答