-
Notifications
You must be signed in to change notification settings - Fork 42
/
geohash.c
executable file
·427 lines (383 loc) · 12.5 KB
/
geohash.c
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/*
*Copyright (c) 2013-2014, yinqiwen <[email protected]>
*All rights reserved.
*
*Redistribution and use in source and binary forms, with or without
*modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Redis nor the names of its contributors may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
*THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
*AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
*IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
*ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
*BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
*CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
*SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
*INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
*CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
*ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
*THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stddef.h>
#include <stdio.h>
#include <math.h>
#include "geohash.h"
/**
* Hashing works like this:
* Divide the world into 4 buckets. Label each one as such:
* -----------------
* | | |
* | | |
* | 0,1 | 1,1 |
* -----------------
* | | |
* | | |
* | 0,0 | 1,0 |
* -----------------
*/
int geohash_encode(
GeoHashRange lat_range, GeoHashRange lon_range,
double latitude, double longitude, uint8_t step, GeoHashBits* hash)
{
if (NULL == hash || step > 32 || step == 0)
{
return -1;
}
hash->bits = 0;
hash->step = step;
uint8_t i = 0;
if (latitude < lat_range.min || latitude > lat_range.max
|| longitude < lon_range.min || longitude > lon_range.max)
{
return -1;
}
for (; i < step; i++)
{
uint8_t lat_bit, lon_bit;
if (lat_range.max - latitude >= latitude - lat_range.min)
{
lat_bit = 0;
lat_range.max = (lat_range.max + lat_range.min) / 2;
}
else
{
lat_bit = 1;
lat_range.min = (lat_range.max + lat_range.min) / 2;
}
if (lon_range.max - longitude >= longitude - lon_range.min)
{
lon_bit = 0;
lon_range.max = (lon_range.max + lon_range.min) / 2;
}
else
{
lon_bit = 1;
lon_range.min = (lon_range.max + lon_range.min) / 2;
}
hash->bits <<= 1;
hash->bits += lon_bit;
hash->bits <<= 1;
hash->bits += lat_bit;
}
return 0;
}
static inline uint8_t get_bit(uint64_t bits, uint8_t pos)
{
return (bits >> pos) & 0x01;
}
int geohash_decode(
GeoHashRange lat_range, GeoHashRange lon_range, GeoHashBits hash, GeoHashArea* area)
{
if (NULL == area)
{
return -1;
}
area->hash = hash;
uint8_t i = 0;
area->latitude.min = lat_range.min;
area->latitude.max = lat_range.max;
area->longitude.min = lon_range.min;
area->longitude.max = lon_range.max;
for (; i < hash.step; i++)
{
uint8_t lat_bit, lon_bit;
lon_bit = get_bit(hash.bits, (hash.step - i) * 2 - 1);
lat_bit = get_bit(hash.bits, (hash.step - i) * 2 - 2);
if (lat_bit == 0)
{
area->latitude.max = (area->latitude.max + area->latitude.min) / 2;
}
else
{
area->latitude.min = (area->latitude.max + area->latitude.min) / 2;
}
if (lon_bit == 0)
{
area->longitude.max = (area->longitude.max + area->longitude.min) / 2;
}
else
{
area->longitude.min = (area->longitude.max + area->longitude.min) / 2;
}
}
return 0;
}
static inline uint64_t interleave64(uint32_t xlo, uint32_t ylo)
{
static const uint64_t B[] =
{ 0x5555555555555555, 0x3333333333333333, 0x0F0F0F0F0F0F0F0F, 0x00FF00FF00FF00FF, 0x0000FFFF0000FFFF };
static const unsigned int S[] =
{ 1, 2, 4, 8, 16 };
uint64_t x = xlo; // Interleave lower bits of x and y, so the bits of x
uint64_t y = ylo; // are in the even positions and bits from y in the odd; //https://graphics.stanford.edu/~seander/bithacks.html#InterleaveBMN
// x and y must initially be less than 2**32.
x = (x | (x << S[4])) & B[4];
y = (y | (y << S[4])) & B[4];
x = (x | (x << S[3])) & B[3];
y = (y | (y << S[3])) & B[3];
x = (x | (x << S[2])) & B[2];
y = (y | (y << S[2])) & B[2];
x = (x | (x << S[1])) & B[1];
y = (y | (y << S[1])) & B[1];
x = (x | (x << S[0])) & B[0];
y = (y | (y << S[0])) & B[0];
return x | (y << 1);
}
static inline uint64_t deinterleave64(uint64_t interleaved)
{
static const uint64_t B[] =
{ 0x5555555555555555, 0x3333333333333333, 0x0F0F0F0F0F0F0F0F, 0x00FF00FF00FF00FF, 0x0000FFFF0000FFFF,
0x00000000FFFFFFFF };
static const unsigned int S[] =
{ 0, 1, 2, 4, 8, 16 };
uint64_t x = interleaved; ///reverse the interleave process (http://stackoverflow.com/questions/4909263/how-to-efficiently-de-interleave-bits-inverse-morton)
uint64_t y = interleaved >> 1;
x = (x | (x >> S[0])) & B[0];
y = (y | (y >> S[0])) & B[0];
x = (x | (x >> S[1])) & B[1];
y = (y | (y >> S[1])) & B[1];
x = (x | (x >> S[2])) & B[2];
y = (y | (y >> S[2])) & B[2];
x = (x | (x >> S[3])) & B[3];
y = (y | (y >> S[3])) & B[3];
x = (x | (x >> S[4])) & B[4];
y = (y | (y >> S[4])) & B[4];
x = (x | (x >> S[5])) & B[5];
y = (y | (y >> S[5])) & B[5];
return x | (y << 32);
}
int geohash_fast_encode(
GeoHashRange lat_range, GeoHashRange lon_range, double latitude,
double longitude, uint8_t step, GeoHashBits* hash)
{
if (NULL == hash || step > 32 || step == 0)
{
return -1;
}
hash->bits = 0;
hash->step = step;
if (latitude < lat_range.min || latitude > lat_range.max
|| longitude < lon_range.min || longitude > lon_range.max)
{
return -1;
}
// The algorithm computes the morton code for the geohash location within
// the range this can be done MUCH more efficiently using the following code
//compute the coordinate in the range 0-1
double lat_offset = (latitude - lat_range.min) / (lat_range.max - lat_range.min);
double lon_offset = (longitude - lon_range.min) / (lon_range.max - lon_range.min);
//convert it to fixed point based on the step size
lat_offset *= (1LL << step);
lon_offset *= (1LL << step);
uint32_t ilato = (uint32_t) lat_offset;
uint32_t ilono = (uint32_t) lon_offset;
//interleave the bits to create the morton code. No branching and no bounding
hash->bits = interleave64(ilato, ilono);
return 0;
}
int geohash_fast_decode(GeoHashRange lat_range, GeoHashRange lon_range, GeoHashBits hash, GeoHashArea* area)
{
if (NULL == area)
{
return -1;
}
area->hash = hash;
uint8_t step = hash.step;
uint64_t xyhilo = deinterleave64(hash.bits); //decode morton code
double lat_scale = lat_range.max - lat_range.min;
double lon_scale = lon_range.max - lon_range.min;
uint32_t ilato = xyhilo; //get back the original integer coordinates
uint32_t ilono = xyhilo >> 32;
//double lat_offset=ilato;
//double lon_offset=ilono;
//lat_offset /= (1<<step);
//lon_offset /= (1<<step);
//the ldexp call converts the integer to a double,then divides by 2**step to get the 0-1 coordinate, which is then multiplied times scale and added to the min to get the absolute coordinate
// area->latitude.min = lat_range.min + ldexp(ilato, -step) * lat_scale;
// area->latitude.max = lat_range.min + ldexp(ilato + 1, -step) * lat_scale;
// area->longitude.min = lon_range.min + ldexp(ilono, -step) * lon_scale;
// area->longitude.max = lon_range.min + ldexp(ilono + 1, -step) * lon_scale;
/*
* much faster than 'ldexp'
*/
area->latitude.min = lat_range.min + (ilato * 1.0 / (1ull << step)) * lat_scale;
area->latitude.max = lat_range.min + ((ilato + 1) * 1.0 / (1ull << step)) * lat_scale;
area->longitude.min = lon_range.min + (ilono * 1.0 / (1ull << step)) * lon_scale;
area->longitude.max = lon_range.min + ((ilono + 1) * 1.0 / (1ull << step)) * lon_scale;
return 0;
}
static int geohash_move_x(GeoHashBits* hash, int8_t d)
{
if (d == 0)
return 0;
uint64_t x = hash->bits & 0xaaaaaaaaaaaaaaaaLL;
uint64_t y = hash->bits & 0x5555555555555555LL;
uint64_t zz = 0x5555555555555555LL >> (64 - hash->step * 2);
if (d > 0)
{
x = x + (zz + 1);
}
else
{
x = x | zz;
x = x - (zz + 1);
}
x &= (0xaaaaaaaaaaaaaaaaLL >> (64 - hash->step * 2));
hash->bits = (x | y);
return 0;
}
static int geohash_move_y(GeoHashBits* hash, int8_t d)
{
if (d == 0)
return 0;
uint64_t x = hash->bits & 0xaaaaaaaaaaaaaaaaLL;
uint64_t y = hash->bits & 0x5555555555555555LL;
uint64_t zz = 0xaaaaaaaaaaaaaaaaLL >> (64 - hash->step * 2);
if (d > 0)
{
y = y + (zz + 1);
}
else
{
y = y | zz;
y = y - (zz + 1);
}
y &= (0x5555555555555555LL >> (64 - hash->step * 2));
hash->bits = (x | y);
return 0;
}
int geohash_get_neighbors(GeoHashBits hash, GeoHashNeighbors* neighbors)
{
geohash_get_neighbor(hash, GEOHASH_NORTH, &neighbors->north);
geohash_get_neighbor(hash, GEOHASH_EAST, &neighbors->east);
geohash_get_neighbor(hash, GEOHASH_WEST, &neighbors->west);
geohash_get_neighbor(hash, GEOHASH_SOUTH, &neighbors->south);
geohash_get_neighbor(hash, GEOHASH_SOUTH_WEST, &neighbors->south_west);
geohash_get_neighbor(hash, GEOHASH_SOUTH_EAST, &neighbors->south_east);
geohash_get_neighbor(hash, GEOHASH_NORT_WEST, &neighbors->north_west);
geohash_get_neighbor(hash, GEOHASH_NORT_EAST, &neighbors->north_east);
return 0;
}
int geohash_get_neighbor(GeoHashBits hash, GeoDirection direction, GeoHashBits* neighbor)
{
if (NULL == neighbor)
{
return -1;
}
*neighbor = hash;
switch (direction)
{
case GEOHASH_NORTH:
{
geohash_move_x(neighbor, 0);
geohash_move_y(neighbor, 1);
break;
}
case GEOHASH_SOUTH:
{
geohash_move_x(neighbor, 0);
geohash_move_y(neighbor, -1);
break;
}
case GEOHASH_EAST:
{
geohash_move_x(neighbor, 1);
geohash_move_y(neighbor, 0);
break;
}
case GEOHASH_WEST:
{
geohash_move_x(neighbor, -1);
geohash_move_y(neighbor, 0);
break;
}
case GEOHASH_SOUTH_WEST:
{
geohash_move_x(neighbor, -1);
geohash_move_y(neighbor, -1);
break;
}
case GEOHASH_SOUTH_EAST:
{
geohash_move_x(neighbor, 1);
geohash_move_y(neighbor, -1);
break;
}
case GEOHASH_NORT_WEST:
{
geohash_move_x(neighbor, -1);
geohash_move_y(neighbor, 1);
break;
}
case GEOHASH_NORT_EAST:
{
geohash_move_x(neighbor, 1);
geohash_move_y(neighbor, 1);
break;
}
default:
{
return -1;
}
}
return 0;
}
GeoHashBits geohash_next_leftbottom(GeoHashBits bits)
{
GeoHashBits newbits = bits;
newbits.step++;
newbits.bits <<= 2;
return newbits;
}
GeoHashBits geohash_next_rightbottom(GeoHashBits bits)
{
GeoHashBits newbits = bits;
newbits.step++;
newbits.bits <<= 2;
newbits.bits += 2;
return newbits;
}
GeoHashBits geohash_next_lefttop(GeoHashBits bits)
{
GeoHashBits newbits = bits;
newbits.step++;
newbits.bits <<= 2;
newbits.bits += 1;
return newbits;
}
GeoHashBits geohash_next_righttop(GeoHashBits bits)
{
GeoHashBits newbits = bits;
newbits.step++;
newbits.bits <<= 2;
newbits.bits += 3;
return newbits;
}