Files
mongo/jstests/core/geod.js
Kyle Suarez 7bc7864fc0 SERVER-35043, SERVER-22949: move geoNear implementation into aggregation
This commit removes the geoNear command and moves its implementation
into the aggregation framework. Users should use the aggregate command
with a $geoNear stage.

The implementation rewrite additionally removes the limit in the
$geoNear aggregation stage. To limit the number of results, use a $limit
stage.
2018-06-18 23:34:49 -04:00

18 lines
503 B
JavaScript

var t = db.geod;
t.drop();
t.save({loc: [0, 0]});
t.save({loc: [0.5, 0]});
t.ensureIndex({loc: "2d"});
// do a few geoNears with different maxDistances. The first iteration
// should match no points in the dataset.
dists = [.49, .51, 1.0];
for (idx in dists) {
b = db.geod
.aggregate([
{$geoNear: {near: [1, 0], distanceField: "d", maxDistance: dists[idx]}},
{$limit: 2},
])
.toArray();
assert.eq(b.length, idx, "B" + idx);
}