-
Notifications
You must be signed in to change notification settings - Fork 6
/
UberH3.helper.php
310 lines (274 loc) · 8.67 KB
/
UberH3.helper.php
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
<?php
// Compiler for PHP (aka KPHP) polyfills
// Copyright (c) 2020 LLC «V Kontakte»
// Distributed under the GPL v3 License, see LICENSE.notice.txt
/** @noinspection PhpDocSignatureInspection */
/** @noinspection PhpUnusedParameterInspection */
/** @noinspection PhpDocMissingReturnTagInspection */
/*
* This file contains declarations of available UberH3 functions.
* They are implemented with C in uber-php-h3 lib for plain PHP and supported by KPHP natively.
*
* !!! File is used only to provide accurate autocompletion for IDE and must not be required.
*/
#ifndef KPHP
exit("This file should not be included, only analyzed by your IDE");
/** @linter ignore unusedType until 2040 */
class UberH3 {
/**
* @link https://github.com/uber/h3/blob/master/docs/api/indexing.md#geotoh3
*
* @param float $latitude - in degrees
* @param float $longitude - in degrees
* @param int $resolution - value in [0, 15] interval
*/
static public function geoToH3(float $latitude, float $longitude, int $resolution) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/indexing.md#h3togeo
*
* @return tuple(float, float)
* tuple[0] - latitude in degrees,
* tuple[1] - longitude in degrees
*/
static public function h3ToGeo(int $h3_index) {
return tuple(0.0, 0.0);
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/indexing.md#h3togeoboundary
*
* @return tuple(float, float)[]
* tuple[0] - latitude in degrees,
* tuple[1] - longitude in degrees
*/
static public function h3ToGeoBoundary(int $h3_index) : array {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#h3getresolution
*/
static public function h3GetResolution(int $h3_index) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#h3getbasecell
*/
static public function h3GetBaseCell(int $h3_index) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#stringtoh3
*/
static public function stringToH3(string $h3_index_str) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#h3tostring
*/
static public function h3ToString(int $h3_index) : string {
return "";
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#h3isvalid
*/
static public function h3IsValid(int $h3_index) : bool {
return false;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#h3isresclassiii
*/
static public function h3IsResClassIII(int $h3_index) : bool {
return false;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#h3ispentagon
*/
static public function h3IsPentagon(int $h3_index) : bool {
return false;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#h3getfaces
*
* @return int[]
*/
static public function h3GetFaces(int $h3_index) : array {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/inspection.md#maxfacecount
*/
static public function maxFaceCount(int $h3_index) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#kring
*
* @param int $k - value in [0, int32 max] interval
* @return int[]|false
*/
static public function kRing(int $h3_index, int $k) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#maxkringsize
*/
static public function maxKringSize(int $k) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#kringdistances
*
* @param int $k - value in [0, int32 max] interval
* @return tuple(int, int)[]|false
* tuple[0] - neighbor h3 index
* tuple[1] - distance between origin h3 index and neighbor h3 index
*/
static public function kRingDistances(int $h3_index_origin, int $k) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#hexrange
*
* @param int $k - value in [0, int32 max] interval
* @return int[]|false
*/
static public function hexRange(int $h3_index_origin, int $k) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#hexrangedistances
*
* @param int $k - value in [0, int32 max] interval
* @return tuple(int, int)[]|false
* tuple[0] - neighbor h3 index
* tuple[1] - distance between origin h3 index and neighbor h3 index
*/
static public function hexRangeDistances(int $h3_index_origin, int $k) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#hexranges
*
* @param int[] $h3_indexes
* @param int $k - value in [0, int32 max] interval
* @return int[]|false
*/
static public function hexRanges(array $h3_indexes, int $k) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#hexring
*
* @param int $k - value in [0, int32 max] interval
* @return int[]|false
*/
static public function hexRing(int $h3_index_origin, int $k) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#h3line
*
* @return int[]|false
*/
static public function h3Line(int $h3_index_start, int $h3_index_end) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#h3linesize
*/
static public function h3LineSize(int $h3_index_start, int $h3_index_end) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/traversal.md#h3distance
*/
static public function h3Distance(int $h3_index_start, int $h3_index_end) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/hierarchy.md#h3toparent
*
* @param int $parent_resolution - value in [0, 15] interval
*/
static public function h3ToParent(int $h3_index, int $parent_resolution) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/hierarchy.md#h3tochildren
*
* @param int $children_resolution - value in [0, 15] interval
* @return int[]|false
*/
static public function h3ToChildren(int $h3_index, int $children_resolution) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/hierarchy.md#maxh3tochildrensize
*
* @param int $children_resolution - value in [0, 15] interval
*/
static public function maxH3ToChildrenSize(int $h3_index, int $children_resolution) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/hierarchy.md#h3tocenterchild
*
* @param int $children_resolution - value in [0, 15] interval
*/
static public function h3ToCenterChild(int $h3_index, int $children_resolution) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/hierarchy.md#compact
*
* @param int[] $h3_indexes
* @return int[]|false
*/
static public function compact(array $h3_indexes) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/hierarchy.md#uncompact
*
* @param int[] $h3_indexes
* @return int[]|false
*/
static public function uncompact(array $h3_indexes, int $resolution) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/hierarchy.md#maxuncompactsize
*
* @param int[] $h3_indexes
*/
static public function maxUncompactSize(array $h3_indexes, int $resolution) : int {
return 0;
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/regions.md#polyfill
*
* @param tuple(float, float)[] $polygon_boundary - exterior boundary of the polygon
* @param tuple(float, float)[][] $holes - interior boundaries (holes) in the polygon
* For both $polygon_boundary and $holes:
* tuple[0] - latitude in degrees
* tuple[1] - longitude in degrees
* @return int[]|false
*/
static public function polyfill(array $polygon_boundary, array $holes, int $resolution) {
return [];
}
/**
* @link https://github.com/uber/h3/blob/master/docs/api/regions.md#maxpolyfillsize
*
* @param tuple(float, float)[] $polygon_boundary - exterior boundary of the polygon
* @param tuple(float, float)[][] $holes - interior boundaries (holes) in the polygon
* For both $polygon_boundary and $holes:
* tuple[0] - latitude in degrees
* tuple[1] - longitude in degrees
*/
static public function maxPolyfillSize(array $polygon_boundary, array $holes, int $resolution) : int {
return 0;
}
}
#endif