Geonear和多个2dsphere索引

时间:2016-06-01 09:52:41

标签: mongodb autocomplete maps latitude-longitude

如果在存储点的模式中存在多个2dsphere索引,我有一个关于使用$ near vs geonear从用户输入的兴趣点返回数据库中存储点的距离的问题。

用例如下。

在我的架构中,我有一个源位置和目标位置,如下所示。使用Intracity.find的查询正常工作,并从输入的兴趣点给我排序的条目。

var baseShippingSchema = new mongoose.Schema({  
startDate      : Date,
endDate        : Date,
locSource: {  
    type: [Number],        
    index: '2dsphere'    
    },  
locDest: {  
    type: [Number],    
    index: '2dsphere'    
    }    
});

var search_begin = moment(request.body.startDate0, "DD-MM-YYYY").toDate();
var search_end = moment(request.body.endDate1, "DD-MM-YYYY").toDate();
var radius = 7000;

Intracity.find({
      locSource: {
                $near:{$geometry: {type: "Point", 
                      coordinates: [request.body.lng0,request.body.lat0]},
                $minDistance: 0, 
                $maxDistance: radius                                                                                                                  
      }
}).where('startDate').gte(search_begin)
  .where('endDate').lte(search_end)
   .limit(limit).exec(function(err, results)
 {
    response.render('test.html', {results : results, error: error});
 }      

但是,我还希望从感兴趣的点返回存储点的“距离”,根据我的知识和发现,使用 $ near 是不可能的,但可以使用 geonear api。

然而,geonear的documentation说明了以下内容。

geoNear需要地理空间索引。但是,geoNear命令要求集合最多只有一个2d索引和/或只有一个2dphere。

因为在我的架构中,我有两个2dspehere索引,以下geonear api失败,错误为“多个2d索引,不确定在上运行geoNear”

var point = { name: 'locSource', type : "Point", 
            coordinates : [request.body.lng0 , request.body.lat0] };

Intracity.geoNear(point, { limit: 10, spherical: true, maxDistance:radius, startDate:{ $gte: search_begin}, endDate:{ $lte:search_end}}, function(err, results, stats) {
     if (err){return done(err);}
     response.render('test.html', {results : results, error: error});
        });

所以我的问题是如何使用上述模式从输入的兴趣点获取每个存储点的距离。

任何帮助都会非常棒,因为我的互联网搜索不会随处可见。

谢谢 Mrunal

1 个答案:

答案 0 :(得分:0)

正如您所指出的mongodb docs状态

  

geoNear命令和$ geoNear管道阶段要求集合最多只有一个2dsphere索引和/或只有一个2d索引

另一方面,计算mongo内部的距离只能通过聚合框架来实现,因为它是一个专门的投影。如果您不想选择

  1. 关系数据库方法:在所有项目之间维护一个单独的距离表
  2. 然后你的另一个选择是

    1. 文档存储方法:计算服务器端JS代码的距离。您必须通过对结果进行分页来覆盖内存限制。