-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
316 lines (271 loc) · 8.51 KB
/
index.js
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
var s2 = require('s2'),
normalize = require('geojson-normalize'),
buffer = require('turf-buffer'),
geojsonExtent = require('geojson-extent');
var serialization = 'toToken';
module.exports.bboxQueryIndexes = function(bbox, range, opts) {
opts = setOptions(opts);
if (range === undefined) range = true;
var latLngRect = new s2.S2LatLngRect(
new s2.S2LatLng(bbox[1], bbox[0]),
new s2.S2LatLng(bbox[3], bbox[2]));
var cover_options = {
min: opts.query_min_level,
max: opts.query_max_level,
max_cells: opts.max_index_cells
};
return s2.getCover(latLngRect, cover_options).map(function(cell) {
if (range) {
return [
cell.id().rangeMin().toToken(),
cell.id().rangeMax().toToken()
];
} else {
return cell.id().toToken();
}
});
};
module.exports.bboxCellGeoJSON = function(bbox, opts) {
opts = setOptions(opts);
var latLngRect = new s2.S2LatLngRect(
new s2.S2LatLng(bbox[1], bbox[0]),
new s2.S2LatLng(bbox[3], bbox[2]));
var cover_options = {
min: opts.query_min_level,
max: opts.query_max_level,
max_cells: opts.max_index_cells
};
return s2.getCover(latLngRect, cover_options).map(function(c) {
return c.toGeoJSON();
});
};
module.exports.geometryIndexes = function(input, opts) {
opts = setOptions(opts);
var geom = normalize(input).features[0].geometry;
switch (geom.type) {
case 'Point':
return pointIndex(geom.coordinates, opts);
case 'LineString':
return linestringIndex(geom, opts);
case 'Polygon':
return polygonIndex(geom, opts);
case 'MultiPolygon':
return multipolygonIndex(geom, opts);
default:
return [];
}
};
module.exports.geometryGeoJSON = function(input, opts) {
opts = setOptions(opts);
var geom = normalize(input).features[0].geometry;
switch (geom.type) {
case 'Point':
return pointGeoJSON(geom.coordinates, opts);
case 'LineString':
return linestringGeoJSON(geom, opts);
case 'Polygon':
return polygonGeoJSON(geom, opts);
case 'MultiPolygon':
return multipolygonGeoJSON(geom, opts);
default:
return [];
}
};
// GeometryIndex
function pointIndex(coords, opts) {
var id = new s2.S2CellId(new s2.S2LatLng(coords[1], coords[0]));
return [id.parent(opts.index_point_level).toToken()];
}
function linestringIndex(geometry, opts) {
var feature = {
type:'Feature',
geometry: geometry
};
geometry = buffer(feature, 0.00001, 'miles').features[0].geometry;
var rings = geometry.coordinates;
var cover_options = {
min: opts.index_min_level,
max: opts.index_max_level,
max_cells: opts.max_index_cells,
type: 'polygon'
};
var llRings = rings.map(function(ring) {
return ring.map(function(c) {
var latLng = (new s2.S2LatLng(c[1], c[0])).normalized();
return latLng.toPoint();
}).slice(1);
});
return s2.getCover(llRings, cover_options).map(function(cell) {
return cell.id().toToken();
});
}
function polygonIndex(geometry, opts) {
var rings = geometry.coordinates;
var cover_options = {
min: opts.index_min_level,
max: opts.index_max_level,
max_cells: opts.max_index_cells,
type: 'polygon'
};
var llRings = rings.map(function(ring) {
return ring.map(function(c) {
var latLng = (new s2.S2LatLng(c[1], c[0])).normalized();
return latLng.toPoint();
}).slice(1);
});
return s2.getCover(llRings, cover_options).map(function(cell) {
return cell.id().toToken();
});
}
function multipolygonIndex(geometry, opts) {
var polygons = geometry.coordinates;
var cover_options = {
min: opts.index_min_level,
max: opts.index_max_level,
max_cells: opts.max_index_cells,
type: 'multipolygon'
};
var llRings = polygons.map(function(rings) {
return rings.map(function(ring) {
return ring.map(function(c){
var latLng = (new s2.S2LatLng(c[1], c[0])).normalized();
return latLng.toPoint();
}).slice(1);
});
});
return s2.getCover(llRings, cover_options).map(function(cell) {
return cell.id().toToken();
});
}
// GeometryGeoJSON
function linestringGeoJSON(geometry, opts) {
var feature = {
type:'Feature',
geometry: geometry
}
geometry = buffer(feature, 0.00001, 'miles').features[0].geometry;
var rings = geometry.coordinates;
var cover_options = {
min: opts.index_min_level,
max: opts.index_max_level,
max_cells: opts.max_index_cells,
type: 'polygon'
};
var llRings = rings.map(function(ring) {
return ring.map(function(c) {
var latLng = (new s2.S2LatLng(c[1], c[0])).normalized();
return latLng.toPoint();
}).slice(1);
});
var features = s2.getCover(llRings, cover_options).map(function(cell,i) {
var geojson = cell.toGeoJSON();
return {
type: 'Feature',
geometry: geojson,
properties: {}
};
});
return {
type: 'FeatureCollection',
features: features
}
}
function polygonGeoJSON(geometry, opts) {
var rings = geometry.coordinates;
var cover_options = {
min: opts.index_min_level,
max: opts.index_max_level,
max_cells: opts.max_index_cells,
type: 'polygon'
};
var llRings = rings.map(function(ring) {
return ring.map(function(c) {
var latLng = (new s2.S2LatLng(c[1], c[0])).normalized();
return latLng.toPoint();
}).slice(1);
});
var features = s2.getCover(llRings, cover_options).map(function(cell, i) {
var geojson = cell.toGeoJSON();
return {
type: 'Feature',
geometry: geojson,
properties: {}
};
});
return {
type: 'FeatureCollection',
features: features
}
}
function multipolygonGeoJSON(geometry, opts) {
var polygons = geometry.coordinates;
var cover_options = {
min: opts.index_min_level,
max: opts.index_max_level,
max_cells: opts.max_index_cells,
type: 'multipolygon'
};
var llRings = polygons.map(function(rings) {
return rings.map(function(ring) {
return ring.map(function(c){
var latLng = (new s2.S2LatLng(c[1], c[0])).normalized();
return latLng.toPoint();
}).slice(1);
});
});
var features = s2.getCover(llRings, cover_options).map(function(cell, i) {
var geojson = cell.toGeoJSON();
return {
type: 'Feature',
geometry: geojson,
properties: {}
};
});
return {
type: 'FeatureCollection',
features: features
}
}
function setOptions(opts) {
if (!opts) {
opts = {}
}
// the maximum number of S2 cells used for any query coverage.
// - More = more complex queries
// - Fewer = less accurate queries
if (opts.max_query_cells === undefined) {
opts.max_query_cells = 100
}
// The largest size of a cell permissable in a query.
if (opts.query_min_level === undefined) {
opts.query_min_level = 1;
}
// The smallest size of a cell permissable in a query.
// - This must be >= index_max_level
if (opts.query_max_level === undefined) {
opts.query_max_level = 8;
}
// the maximum number of S2 cells used for any index coverage.
// - More = more accurate indexes
// - Fewer = more compact queries
if (opts.max_index_cells === undefined) {
opts.max_index_cells = 100;
}
// The largest size of a cell permissable in an index.
// - This must be <= query_min_level
if (opts.index_min_level === undefined) {
opts.index_min_level = 8;
}
// The smallest size of a cell permissable in an index.
if (opts.index_max_level === undefined) {
opts.index_max_level = 12;
}
// The index level for point features only.
if (opts.index_point_level === undefined) {
opts.index_point_level = 15;
}
if (!(opts.query_max_level >= opts.index_min_level)) {
throw new Error('query level and index level must correspond');
}
return opts;
}