我正在使用 postgis 计算 2 个地理坐标之间的距离。
select st_distance(
'POINT(15.651955 73.712769)'::geography,
'POINT(14.806993 74.131451)'::geography) AS d;
它返回我 53536.743496517 米,大约等于 54 公里,但实际距离是 103 公里,我通过http://boulter.com/gps/distance/计算得出
我在查询中做错了吗?
我正在使用 postgis 计算 2 个地理坐标之间的距离。
select st_distance(
'POINT(15.651955 73.712769)'::geography,
'POINT(14.806993 74.131451)'::geography) AS d;
它返回我 53536.743496517 米,大约等于 54 公里,但实际距离是 103 公里,我通过http://boulter.com/gps/distance/计算得出
我在查询中做错了吗?