gpt4 book ai didi

ruby-on-rails - 按距给定点的距离对位置进行排序,并按 mongoid 中的最大距离过滤结果

转载 作者:太空宇宙 更新时间:2023-11-03 16:49:06 25 4
gpt4 key购买 nike

我有一个集合,其中每个文档都有一个位置。我需要根据文件到给定起点的距离对文件进行排序。此外,我希望只有与起点的距离不超过一定限制的文档。

我尝试了以下方法:

Store.geo_near([32,32]).where(:geo_near_distance.lt => 2) 
# all docs whose location are at most 2 from [32, 32]

以上导致以下错误:

NoMethodError: undefined method `where' for #<Mongoid::Contextual::GeoNear:0x438fb70>

最佳答案

我让它工作了:Mongoid6

  Store.unscoped.where(
:coordinates => {
'$nearSphere' => your_store.coordinates,
'$maxDistance' => distance_in_km.fdiv(111.12)})

关于ruby-on-rails - 按距给定点的距离对位置进行排序,并按 mongoid 中的最大距离过滤结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26918285/

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