我正在尝试执行查找最接近current_user的记录的订单查询.
我知道这两点之间的距离是:current_location.euclidean_distance(@ record.position)
如何将其用于PostGIS(或active_record / spatial_adapter)查询?
解决方法
要获得最接近的5个:
SELECT * FROM your_table ORDER BY ST_Distance(your_table.geom,ST_Geomfromtext(your point as wkt)) limit 5;
如果您有一个大数据集,并且知道您不想进一步搜索,例如1 km,那么如果您执行以下操作,查询将更有效:
SELECT * FROM your_table WHERE ST_DWithin(your_table.geom,ST_Geomfromtext(your point as wkt,1000) ORDER BY ST_Distance(your_table.geom,ST_Geomfromtext(your point as wkt)) limit 5;
/尼克拉斯