ruby-on-rails – 按最近的顺序排序 – PostGIS,GeoRuby,spatial_adapter

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 按最近的顺序排序 – PostGIS,GeoRuby,spatial_adapter前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试执行查找最接近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;

/尼克拉斯

原文链接:https://www.f2er.com/ruby/269416.html

猜你在找的Ruby相关文章