gpt4 book ai didi

postgresql - osm_ways 表中的长度与 length_m

转载 作者:行者123 更新时间:2023-11-29 14:28:58 24 4
gpt4 key购买 nike

Postgresql, postgis (in table: berlin_ways),其中这个表是通过导入 berlin osm 生成的。

length和length_m有什么区别,它们各自的单位距离是多少?

berlin_ways

最佳答案

length 以度为单位,意义不大。

length_m 以米为单位。

使用示例表中的第一组坐标:

--(CRS unit, 4326, degrees)
select st_distance(st_makePoint(113.8543481,22.8171585),st_makePoint(113.8545562,22.8187095));
st_distance
---------------------
0.00156489827464957
(1 row)


-- (cast to Geography, so meters)
select st_distance(st_makePoint(113.8543481,22.8171585)::geography,st_makePoint(113.8545562,22.8187095)::geography);
st_distance
--------------
173.08351329
(1 row)

关于postgresql - osm_ways 表中的长度与 length_m,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54452818/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com