1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/* Test boundary conditions for $minDistance option for $near and $nearSphere
* queries. SERVER-9395.
*/
var t = db.geo_mindistance_boundaries;
t.drop();
t.insert({loc: [1, 0]}); // 1 degree of longitude from origin.
/* $minDistance is supported for 2dsphere index only, not 2d or geoHaystack. */
t.ensureIndex({loc: "2dsphere"});
//
// Useful constants.
//
var km = 1000,
earthRadiusMeters = 6378.1 * km,
geoJSONPoint = {type: 'Point', coordinates: [0, 0]},
// One degree of longitude at the equator, about 111 km.
degreeInMeters = 2 * Math.PI * earthRadiusMeters / 360,
metersEpsilon = Number.MIN_VALUE;
/* Grow epsilon's exponent until epsilon exceeds the margin of error for the
* representation of degreeInMeters. The server uses 64-bit math, too, so we'll
* find the smallest epsilon the server can detect.
*/
while (degreeInMeters + metersEpsilon == degreeInMeters) { metersEpsilon *= 2; }
//
// Test boundary conditions for $near and GeoJSON, in meters.
//
// minDistance must be within the args to $near, not on the side.
assert.throws(function() { t.find({loc:{$near:{$geometry: geoJSONPoint},
$minDistance:0.1}}).itcount();});
assert.eq(
1, t.find({loc: {
$near: {$geometry: geoJSONPoint,
$minDistance: degreeInMeters
}}}).itcount(),
"Expected to find (0, 1) within $minDistance 1 degree from origin"
);
assert.eq(
1, t.find({loc: {
$near: {$geometry: geoJSONPoint,
$minDistance: degreeInMeters - metersEpsilon
}}}).itcount(),
"Expected to find (0, 1) within $minDistance (1 degree - epsilon) from origin"
);
assert.eq(
0, t.find({loc: {
$near: {$geometry: geoJSONPoint,
$minDistance: degreeInMeters + metersEpsilon
}}}).itcount(),
"Expected *not* to find (0, 1) within $minDistance (1 degree + epsilon) from origin"
);
//
// Test boundary conditions for $nearSphere and GeoJSON, in meters.
//
assert.eq(
1, t.find({loc: {
$nearSphere: {$geometry: geoJSONPoint,
$minDistance: degreeInMeters
}}}).itcount(),
"Expected to find (0, 1) within $minDistance 1 degree from origin"
);
assert.eq(
1, t.find({loc: {
$nearSphere: geoJSONPoint,
$minDistance: degreeInMeters - metersEpsilon
}}).itcount(),
"Expected to find (0, 1) within $minDistance (1 degree - epsilon) from origin"
);
assert.eq(
0, t.find({loc: {
$nearSphere: geoJSONPoint,
$minDistance: degreeInMeters + metersEpsilon
}}).itcount(),
"Expected *not* to find (0, 1) within $minDistance (1 degree + epsilon) from origin"
);
//
// Test boundary conditions for $nearSphere and a legacy point, in radians.
//
// $minDistance with legacy point requires $nearSphere; $near not
// supported.
//
var legacyPoint = [0, 0],
degreeInRadians = 2 * Math.PI / 360,
radiansEpsilon = Number.MIN_VALUE;
while (1 + radiansEpsilon == 1) { radiansEpsilon *= 2; }
assert.eq(
1, t.find({loc: {
$nearSphere: legacyPoint,
$minDistance: degreeInRadians
}}).itcount(),
"Expected to find (0, 1) within $minDistance 1 degree from origin"
);
assert.eq(
1, t.find({loc: {
$nearSphere: legacyPoint,
$minDistance: degreeInRadians - radiansEpsilon
}}).itcount(),
"Expected to find (0, 1) within $minDistance (1 degree - epsilon) from origin"
);
assert.eq(
0, t.find({loc: {
$nearSphere: legacyPoint,
$minDistance: degreeInRadians + radiansEpsilon
}}).itcount(),
"Expected *not* to find (0, 1) within $minDistance (1 degree + epsilon) from origin"
);
|