我试图完全理解方位角的概念,但我遇到了一些不一致(或者可能是我的错误)。
我向您展示了一些不匹配的示例,希望有人可以向我解释这是如何工作的。
我在 EPSG:900913 中显示坐标,在 PostGIS 中并使用我自己的 JavaScript 函数。
我的功能
/* Difference between the two longitudes */
var dLon = lon2 - lon1;
/* Y value */
var y = Math.sin(dLon) * Math.cos(lat2);
/* X value */
var x = Math.cos(lat1) * Math.sin(lat2) - Math.sin(lat1) * Math.cos(lat2) * Math.cos(dLon);
/* Calculates the azimuth between the two points and converts it to degrees */
var angle = Math.atan2(y, x) / Math.PI * 180;
例子
/* Same Y, not on the equator */
Point A: (-81328.998084106, 7474929.8690234)
Point B: (4125765.0381464, 7474929.8690234)
Result in PostGIS: 90 degrees
Result in my JS function: 74.232 degrees
/* Same Y, on the equator */
Point A: (-81328.998084106, 0)
Point B: (4125765.0381464, 0)
Result in PostGIS: 90 degrees
Result in my JS function: 90 degrees
我知道,在赤道上,水平线的方位角是 90(或 270)。想想如果你在赤道的北(或南)画一条水平线,那么方位角就不再是 90 度了。但是... PostGIS 告诉我,当我们有相同的 Y 时,它总是 90 度。
此外,此计算器还显示当 Y != 0(不在赤道上)时,水平线的方位角不是 90 度。
它是如何正确的?
谢谢