summaryrefslogtreecommitdiff
path: root/jstests/core/index/geo/geod.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index/geo/geod.js')
-rw-r--r--jstests/core/index/geo/geod.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/jstests/core/index/geo/geod.js b/jstests/core/index/geo/geod.js
new file mode 100644
index 00000000000..8586d64e398
--- /dev/null
+++ b/jstests/core/index/geo/geod.js
@@ -0,0 +1,17 @@
+var t = db.geod;
+t.drop();
+t.save({loc: [0, 0]});
+t.save({loc: [0.5, 0]});
+t.createIndex({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);
+}