Hi,
I am using geodesicUtils.geodesicDistance but always getting pretty similar values for azimuth and reverse azimuth.
This is how I call the distance calculation of the geodesicUtils:
const bearing = geodesicUtils.geodesicDistance(
point1Wgs84,
point2Wgs84,
"kilometers"
);
This is how a result looks like:
z {distance: 61.525187404214556, azimuth: 90.42038020754926, reverseAzimuth: 91.18218544411303}
While the azimuth looks good (that was a line from west to east), the reverse azimuth is almost the same value.
From what I understood I expected the reverse azimuth to be about 270° instead.
When drawing a line from south to north, the azimuth is abut 0-1° and reverse azimuth too, which I would expect to be about 180° instead.
Can anyone help me with these struggles?