本文介绍了表中存储的PostgreSQL 2点之间的距离的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有四个字段lat1,lng1,lat2,lng2,我想计算它们之间的距离(以km为单位)(四舍五入为1 deciaml位置)。
I have four fields lat1,lng1,lat2,lng2 and I would like to calculate the distance in km between them (rounded to 1 deciaml place).
例如
表:
-----lat1-----|--- lng1 ----| ----lat2----|---lng2----|
53.4603045 | 9,98243 | 53,4470272 | 9,9956593 |
我尝试过:
SELECT ST_Distance(POINT(lat1, lng1),POINT(lat2, lng2)) as distance FROM table
我必须更改什么?
推荐答案
PostGIS就是答案。
PostGIS is the answer.
我去试试
这篇关于表中存储的PostgreSQL 2点之间的距离的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!