summaryrefslogtreecommitdiff
path: root/jstests/core/geod.js
blob: 055453254a5df58c57c7ba52a81c3184c1524e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}