h3 3.6.0 → 3.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ruby_ci.yml +30 -0
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -0
- data/CHANGELOG.md +39 -0
- data/Gemfile.lock +6 -24
- data/LICENSE.md +1 -1
- data/README.md +2 -3
- data/ext/h3/src/.github/workflows/test-linux.yml +118 -0
- data/ext/h3/src/.github/workflows/test-macos.yml +42 -0
- data/ext/h3/src/.github/workflows/test-website.yml +32 -0
- data/ext/h3/src/.github/workflows/test-windows.yml +44 -0
- data/ext/h3/src/.gitignore +5 -0
- data/ext/h3/src/.travis.yml +20 -42
- data/ext/h3/src/CHANGELOG.md +57 -0
- data/ext/h3/src/CMakeLists.txt +135 -33
- data/ext/h3/src/CONTRIBUTING.md +1 -1
- data/ext/h3/src/README.md +61 -11
- data/ext/h3/src/RELEASE.md +3 -1
- data/ext/h3/src/VERSION +1 -1
- data/ext/h3/src/dev-docs/RFCs/rfc-template.md +21 -0
- data/ext/h3/src/dev-docs/RFCs/v4.0.0/error-handling-rfc.md +21 -0
- data/ext/h3/src/dev-docs/RFCs/v4.0.0/names_for_concepts_types_functions.md +276 -0
- data/ext/h3/src/dev-docs/RFCs/v4.0.0/overrideable-allocators-rfc.md +141 -0
- data/ext/h3/src/dev-docs/RFCs/v4.0.0/polyfill-modes-rfc.md +21 -0
- data/ext/h3/src/dev-docs/RFCs/v4.0.0/vertex-mode-rfc.md +50 -0
- data/ext/h3/src/dev-docs/build_windows.md +6 -1
- data/ext/h3/src/dev-docs/creating_bindings.md +3 -3
- data/ext/h3/src/dev-docs/custom_alloc.md +27 -0
- data/ext/h3/src/docs/{overview/mainpage.md → README.md} +2 -3
- data/ext/h3/src/docs/api/misc.md +76 -0
- data/ext/h3/src/docs/community/applications.md +1 -0
- data/ext/h3/src/docs/community/bindings.md +10 -0
- data/ext/h3/src/docs/community/tutorials.md +8 -3
- data/ext/h3/src/docs/core-library/coordsystems.md +5 -4
- data/ext/h3/src/docs/core-library/filters.md +8 -9
- data/ext/h3/src/docs/core-library/geoToH3desc.md +2 -3
- data/ext/h3/src/docs/core-library/h3ToGeoBoundaryDesc.md +4 -5
- data/ext/h3/src/docs/core-library/h3ToGeoDesc.md +3 -4
- data/ext/h3/src/docs/core-library/h3indexing.md +26 -17
- data/ext/h3/src/docs/core-library/overview.md +2 -3
- data/ext/h3/src/docs/core-library/restable.md +1 -2
- data/ext/h3/src/docs/core-library/usage.md +1 -2
- data/ext/h3/src/docs/table-of-contents.json +47 -0
- data/ext/h3/src/docs/{overview/usecases.md → usecases.md} +6 -11
- data/ext/h3/src/scripts/binding_functions.sh +1 -1
- data/ext/h3/src/scripts/coverage.sh.in +1 -1
- data/ext/h3/src/scripts/update_version.sh +2 -2
- data/ext/h3/src/src/apps/applib/include/args.h +1 -0
- data/ext/h3/src/src/apps/applib/include/test.h +1 -0
- data/ext/h3/src/src/apps/applib/include/utility.h +7 -1
- data/ext/h3/src/src/apps/applib/lib/args.c +2 -0
- data/ext/h3/src/src/apps/applib/lib/kml.c +2 -0
- data/ext/h3/src/src/apps/applib/lib/test.c +1 -0
- data/ext/h3/src/src/apps/applib/lib/utility.c +133 -2
- data/ext/h3/src/src/apps/benchmarks/benchmarkH3Api.c +1 -1
- data/ext/h3/src/{website/html.config.js → src/apps/benchmarks/benchmarkH3UniEdge.c} +15 -12
- data/ext/h3/src/src/apps/filters/h3ToComponents.c +1 -0
- data/ext/h3/src/src/apps/filters/h3ToGeo.c +1 -0
- data/ext/h3/src/src/apps/filters/h3ToGeoBoundary.c +1 -0
- data/ext/h3/src/src/apps/filters/h3ToLocalIj.c +1 -0
- data/ext/h3/src/src/apps/filters/hexRange.c +1 -0
- data/ext/h3/src/src/apps/filters/kRing.c +1 -0
- data/ext/h3/src/src/apps/filters/localIjToH3.c +1 -0
- data/ext/h3/src/src/apps/miscapps/generateFaceCenterPoint.c +1 -0
- data/ext/h3/src/src/apps/miscapps/generateNumHexagons.c +1 -0
- data/ext/h3/src/src/apps/miscapps/generatePentagonDirectionFaces.c +67 -0
- data/ext/h3/src/src/apps/miscapps/h3ToGeoBoundaryHier.c +1 -0
- data/ext/h3/src/src/apps/miscapps/h3ToGeoHier.c +1 -0
- data/ext/h3/src/src/apps/miscapps/h3ToHier.c +1 -0
- data/ext/h3/src/src/apps/testapps/mkRandGeo.c +1 -0
- data/ext/h3/src/src/apps/testapps/mkRandGeoBoundary.c +1 -0
- data/ext/h3/src/src/apps/testapps/testBBox.c +1 -0
- data/ext/h3/src/src/apps/testapps/testBaseCells.c +15 -1
- data/ext/h3/src/src/apps/testapps/testCompact.c +109 -2
- data/ext/h3/src/src/apps/testapps/testCoordIj.c +1 -0
- data/ext/h3/src/src/apps/testapps/testGeoCoord.c +47 -8
- data/ext/h3/src/src/apps/testapps/testGeoToH3.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3Api.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3CellArea.c +47 -0
- data/ext/h3/src/src/apps/testapps/testH3CellAreaExhaustive.c +180 -0
- data/ext/h3/src/src/apps/testapps/testH3Distance.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3DistanceExhaustive.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3GetFaces.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3Index.c +33 -3
- data/ext/h3/src/src/apps/testapps/testH3Line.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3LineExhaustive.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3Memory.c +175 -0
- data/ext/h3/src/src/apps/testapps/testH3NeighborRotations.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3SetToLinkedGeo.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3SetToVertexGraph.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3ToCenterChild.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3ToChildren.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3ToGeo.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3ToGeoBoundary.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3ToLocalIj.c +12 -6
- data/ext/h3/src/src/apps/testapps/testH3ToLocalIjExhaustive.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3ToParent.c +1 -0
- data/ext/h3/src/src/apps/testapps/testH3UniEdge.c +45 -16
- data/ext/h3/src/src/apps/testapps/testH3UniEdgeExhaustive.c +111 -0
- data/ext/h3/src/src/apps/testapps/testHexRanges.c +1 -0
- data/ext/h3/src/src/apps/testapps/testHexRing.c +1 -0
- data/ext/h3/src/src/apps/testapps/testKRing.c +19 -0
- data/ext/h3/src/src/apps/testapps/testLinkedGeo.c +1 -0
- data/ext/h3/src/src/apps/testapps/testMaxH3ToChildrenSize.c +1 -0
- data/ext/h3/src/src/apps/testapps/testPentagonIndexes.c +1 -0
- data/ext/h3/src/src/apps/testapps/testPolyfill.c +72 -9
- data/ext/h3/src/src/apps/testapps/testPolyfillReported.c +157 -0
- data/ext/h3/src/src/apps/testapps/testPolygon.c +27 -1
- data/ext/h3/src/src/apps/testapps/testVec2d.c +1 -0
- data/ext/h3/src/src/apps/testapps/testVec3d.c +1 -0
- data/ext/h3/src/src/apps/testapps/testVertex.c +66 -0
- data/ext/h3/src/src/apps/testapps/testVertexGraph.c +1 -0
- data/ext/h3/src/src/h3lib/include/algos.h +8 -0
- data/ext/h3/src/src/h3lib/include/alloc.h +40 -0
- data/ext/h3/src/src/h3lib/include/baseCells.h +4 -0
- data/ext/h3/src/src/h3lib/include/bbox.h +4 -1
- data/ext/h3/src/src/h3lib/include/faceijk.h +3 -2
- data/ext/h3/src/src/h3lib/include/geoCoord.h +2 -3
- data/ext/h3/src/src/h3lib/include/h3Index.h +37 -4
- data/ext/h3/src/src/h3lib/include/h3api.h.in +65 -17
- data/ext/h3/src/src/h3lib/include/linkedGeo.h +1 -0
- data/ext/h3/src/src/h3lib/include/polygon.h +1 -0
- data/ext/h3/src/src/h3lib/include/polygonAlgos.h +1 -0
- data/ext/h3/src/src/h3lib/include/vertex.h +44 -0
- data/ext/h3/src/src/h3lib/include/vertexGraph.h +1 -0
- data/ext/h3/src/src/h3lib/lib/algos.c +304 -76
- data/ext/h3/src/src/h3lib/lib/baseCells.c +26 -4
- data/ext/h3/src/src/h3lib/lib/bbox.c +56 -27
- data/ext/h3/src/src/h3lib/lib/coordijk.c +2 -0
- data/ext/h3/src/src/h3lib/lib/faceijk.c +32 -21
- data/ext/h3/src/src/h3lib/lib/geoCoord.c +162 -44
- data/ext/h3/src/src/h3lib/lib/h3Index.c +83 -42
- data/ext/h3/src/src/h3lib/lib/h3UniEdge.c +42 -57
- data/ext/h3/src/src/h3lib/lib/linkedGeo.c +20 -15
- data/ext/h3/src/src/h3lib/lib/localij.c +1 -1
- data/ext/h3/src/src/h3lib/lib/polygon.c +2 -0
- data/ext/h3/src/src/h3lib/lib/vec2d.c +1 -0
- data/ext/h3/src/src/h3lib/lib/vec3d.c +1 -0
- data/ext/h3/src/src/h3lib/lib/vertex.c +134 -0
- data/ext/h3/src/src/h3lib/lib/vertexGraph.c +8 -5
- data/ext/h3/src/website/.eslintignore +2 -0
- data/ext/h3/src/website/.gitignore +57 -0
- data/ext/h3/src/website/.nvmrc +1 -0
- data/ext/h3/src/website/README.md +8 -6
- data/ext/h3/src/website/gatsby-config.js +83 -0
- data/ext/h3/src/website/package.json +20 -12
- data/ext/h3/src/website/scripts/build-to-gh-pages.sh +7 -5
- data/ext/h3/src/website/src/.gitkeep +0 -0
- data/ext/h3/src/website/templates/documentation.jsx +129 -0
- data/ext/h3/src/website/yarn.lock +13723 -0
- data/h3.gemspec +2 -2
- data/lib/h3/bindings/base.rb +14 -4
- data/lib/h3/bindings/private.rb +12 -9
- data/lib/h3/hierarchy.rb +0 -18
- data/lib/h3/indexing.rb +0 -18
- data/lib/h3/inspection.rb +3 -59
- data/lib/h3/miscellaneous.rb +119 -14
- data/lib/h3/regions.rb +3 -0
- data/lib/h3/traversal.rb +0 -18
- data/lib/h3/unidirectional_edges.rb +5 -60
- data/lib/h3/version.rb +1 -1
- data/spec/geo_json_spec.rb +8 -0
- data/spec/miscellaneous_spec.rb +117 -0
- data/spec/{region_spec.rb → regions_spec.rb} +1 -1
- data/spec/spec_helper.rb +2 -2
- metadata +44 -36
- data/.travis.yml +0 -11
- data/ext/h3/src/.ycm_extra_conf.py +0 -92
- data/ext/h3/src/appveyor.yml +0 -50
- data/ext/h3/src/website/src/config.js +0 -46
- data/ext/h3/src/website/src/mdRoutes.js +0 -151
- data/ext/h3/src/website/src/styles/_variables.scss +0 -16
- data/ext/h3/src/website/src/styles/index.scss +0 -3
- data/ext/h3/src/website/static/index.html +0 -15
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2020 Uber Technologies, Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
/** @file
|
|
17
|
+
* @brief tests H3 unidirectional edge functions using tests over a large number
|
|
18
|
+
* of indexes.
|
|
19
|
+
*
|
|
20
|
+
* usage: `testH3UniEdgeExhaustive`
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
#include <stdio.h>
|
|
24
|
+
#include <stdlib.h>
|
|
25
|
+
#include <string.h>
|
|
26
|
+
|
|
27
|
+
#include "baseCells.h"
|
|
28
|
+
#include "constants.h"
|
|
29
|
+
#include "geoCoord.h"
|
|
30
|
+
#include "h3Index.h"
|
|
31
|
+
#include "test.h"
|
|
32
|
+
#include "utility.h"
|
|
33
|
+
|
|
34
|
+
static void h3UniEdge_correctness_assertions(H3Index h3) {
|
|
35
|
+
H3Index edges[6] = {H3_NULL};
|
|
36
|
+
int isPentagon = H3_EXPORT(h3IsPentagon)(h3);
|
|
37
|
+
H3_EXPORT(getH3UnidirectionalEdgesFromHexagon)(h3, edges);
|
|
38
|
+
H3Index destination;
|
|
39
|
+
|
|
40
|
+
for (int i = 0; i < 6; i++) {
|
|
41
|
+
if (isPentagon && i == 0) {
|
|
42
|
+
t_assert(edges[i] == H3_NULL, "last pentagon edge is empty");
|
|
43
|
+
continue;
|
|
44
|
+
}
|
|
45
|
+
t_assert(H3_EXPORT(h3UnidirectionalEdgeIsValid)(edges[i]) == 1,
|
|
46
|
+
"edge is an edge");
|
|
47
|
+
t_assert(
|
|
48
|
+
H3_EXPORT(getOriginH3IndexFromUnidirectionalEdge)(edges[i]) == h3,
|
|
49
|
+
"origin matches input origin");
|
|
50
|
+
|
|
51
|
+
destination =
|
|
52
|
+
H3_EXPORT(getDestinationH3IndexFromUnidirectionalEdge)(edges[i]);
|
|
53
|
+
t_assert(H3_EXPORT(h3IndexesAreNeighbors)(h3, destination),
|
|
54
|
+
"destination is a neighbor");
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
static void h3UniEdge_boundary_assertions(H3Index h3) {
|
|
59
|
+
H3Index edges[6] = {H3_NULL};
|
|
60
|
+
H3_EXPORT(getH3UnidirectionalEdgesFromHexagon)(h3, edges);
|
|
61
|
+
H3Index destination;
|
|
62
|
+
H3Index revEdge;
|
|
63
|
+
GeoBoundary edgeBoundary;
|
|
64
|
+
GeoBoundary revEdgeBoundary;
|
|
65
|
+
|
|
66
|
+
for (int i = 0; i < 6; i++) {
|
|
67
|
+
if (edges[i] == H3_NULL) continue;
|
|
68
|
+
H3_EXPORT(getH3UnidirectionalEdgeBoundary)(edges[i], &edgeBoundary);
|
|
69
|
+
destination =
|
|
70
|
+
H3_EXPORT(getDestinationH3IndexFromUnidirectionalEdge)(edges[i]);
|
|
71
|
+
revEdge = H3_EXPORT(getH3UnidirectionalEdge)(destination, h3);
|
|
72
|
+
H3_EXPORT(getH3UnidirectionalEdgeBoundary)(revEdge, &revEdgeBoundary);
|
|
73
|
+
|
|
74
|
+
t_assert(edgeBoundary.numVerts == revEdgeBoundary.numVerts,
|
|
75
|
+
"numVerts is equal for edge and reverse");
|
|
76
|
+
|
|
77
|
+
for (int j = 0; j < edgeBoundary.numVerts; j++) {
|
|
78
|
+
int almostEqual = geoAlmostEqualThreshold(
|
|
79
|
+
&edgeBoundary.verts[j],
|
|
80
|
+
&revEdgeBoundary.verts[revEdgeBoundary.numVerts - 1 - j],
|
|
81
|
+
0.000001);
|
|
82
|
+
t_assert(almostEqual, "Got expected vertex");
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
SUITE(h3UniEdge) {
|
|
88
|
+
TEST(h3UniEdge_correctness) {
|
|
89
|
+
iterateAllIndexesAtRes(0, h3UniEdge_correctness_assertions);
|
|
90
|
+
iterateAllIndexesAtRes(1, h3UniEdge_correctness_assertions);
|
|
91
|
+
iterateAllIndexesAtRes(2, h3UniEdge_correctness_assertions);
|
|
92
|
+
iterateAllIndexesAtRes(3, h3UniEdge_correctness_assertions);
|
|
93
|
+
iterateAllIndexesAtRes(4, h3UniEdge_correctness_assertions);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
TEST(h3UniEdge_boundary) {
|
|
97
|
+
iterateAllIndexesAtRes(0, h3UniEdge_boundary_assertions);
|
|
98
|
+
iterateAllIndexesAtRes(1, h3UniEdge_boundary_assertions);
|
|
99
|
+
iterateAllIndexesAtRes(2, h3UniEdge_boundary_assertions);
|
|
100
|
+
iterateAllIndexesAtRes(3, h3UniEdge_boundary_assertions);
|
|
101
|
+
iterateAllIndexesAtRes(4, h3UniEdge_boundary_assertions);
|
|
102
|
+
// Res 5: normal base cell
|
|
103
|
+
iterateBaseCellIndexesAtRes(5, h3UniEdge_boundary_assertions, 0);
|
|
104
|
+
// Res 5: pentagon base cell
|
|
105
|
+
iterateBaseCellIndexesAtRes(5, h3UniEdge_boundary_assertions, 14);
|
|
106
|
+
// Res 5: polar pentagon base cell
|
|
107
|
+
iterateBaseCellIndexesAtRes(5, h3UniEdge_boundary_assertions, 117);
|
|
108
|
+
// Res 6: Test one pentagon just to check for new edge cases
|
|
109
|
+
iterateBaseCellIndexesAtRes(6, h3UniEdge_boundary_assertions, 14);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
22
|
#include <stdlib.h>
|
|
23
|
+
|
|
23
24
|
#include "algos.h"
|
|
24
25
|
#include "baseCells.h"
|
|
25
26
|
#include "h3Index.h"
|
|
@@ -350,4 +351,22 @@ SUITE(kRing) {
|
|
|
350
351
|
}
|
|
351
352
|
}
|
|
352
353
|
}
|
|
354
|
+
|
|
355
|
+
TEST(kRingInvalid) {
|
|
356
|
+
int k = 1000;
|
|
357
|
+
int kSz = H3_EXPORT(maxKringSize)(k);
|
|
358
|
+
H3Index *neighbors = calloc(kSz, sizeof(H3Index));
|
|
359
|
+
H3_EXPORT(kRing)(0x7fffffffffffffff, k, neighbors);
|
|
360
|
+
// Assertion is should not crash - should return an error in the future
|
|
361
|
+
free(neighbors);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
TEST(kRingInvalidDigit) {
|
|
365
|
+
int k = 2;
|
|
366
|
+
int kSz = H3_EXPORT(maxKringSize)(k);
|
|
367
|
+
H3Index *neighbors = calloc(kSz, sizeof(H3Index));
|
|
368
|
+
H3_EXPORT(kRing)(0x4d4b00fe5c5c3030, k, neighbors);
|
|
369
|
+
// Assertion is should not crash - should return an error in the future
|
|
370
|
+
free(neighbors);
|
|
371
|
+
}
|
|
353
372
|
}
|
|
@@ -15,11 +15,13 @@
|
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
17
|
#include <stdlib.h>
|
|
18
|
+
|
|
18
19
|
#include "algos.h"
|
|
19
20
|
#include "constants.h"
|
|
20
21
|
#include "geoCoord.h"
|
|
21
22
|
#include "h3Index.h"
|
|
22
23
|
#include "test.h"
|
|
24
|
+
#include "utility.h"
|
|
23
25
|
|
|
24
26
|
// Fixtures
|
|
25
27
|
static GeoCoord sfVerts[] = {
|
|
@@ -41,14 +43,69 @@ static GeoCoord emptyVerts[] = {{0.659966917655, -2.1364398519394},
|
|
|
41
43
|
static Geofence emptyGeofence = {.numVerts = 3, .verts = emptyVerts};
|
|
42
44
|
static GeoPolygon emptyGeoPolygon;
|
|
43
45
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
/**
|
|
47
|
+
* Return true if the cell crosses the meridian.
|
|
48
|
+
*/
|
|
49
|
+
static bool isTransmeridianCell(H3Index h) {
|
|
50
|
+
GeoBoundary bndry;
|
|
51
|
+
H3_EXPORT(h3ToGeoBoundary)(h, &bndry);
|
|
52
|
+
|
|
53
|
+
double minLon = M_PI, maxLon = -M_PI;
|
|
54
|
+
for (int i = 0; i < bndry.numVerts; i++) {
|
|
55
|
+
if (bndry.verts[i].lon < minLon) minLon = bndry.verts[i].lon;
|
|
56
|
+
if (bndry.verts[i].lon > maxLon) maxLon = bndry.verts[i].lon;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
return maxLon - minLon > M_PI - (M_PI / 4);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
static void fillIndex_assertions(H3Index h) {
|
|
63
|
+
if (isTransmeridianCell(h)) {
|
|
64
|
+
// TODO: these do not work correctly
|
|
65
|
+
return;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
int currentRes = H3_EXPORT(h3GetResolution)(h);
|
|
69
|
+
// TODO: Not testing more than one depth because the assertions fail.
|
|
70
|
+
for (int nextRes = currentRes; nextRes <= currentRes + 1; nextRes++) {
|
|
71
|
+
GeoBoundary bndry;
|
|
72
|
+
H3_EXPORT(h3ToGeoBoundary)(h, &bndry);
|
|
73
|
+
GeoPolygon polygon = {
|
|
74
|
+
.geofence = {.numVerts = bndry.numVerts, .verts = bndry.verts},
|
|
75
|
+
.numHoles = 0,
|
|
76
|
+
.holes = 0};
|
|
77
|
+
|
|
78
|
+
int polyfillSize = H3_EXPORT(maxPolyfillSize)(&polygon, nextRes);
|
|
79
|
+
H3Index* polyfillOut = calloc(polyfillSize, sizeof(H3Index));
|
|
80
|
+
H3_EXPORT(polyfill)(&polygon, nextRes, polyfillOut);
|
|
81
|
+
|
|
82
|
+
int polyfillCount = countActualHexagons(polyfillOut, polyfillSize);
|
|
83
|
+
|
|
84
|
+
int childrenSize = H3_EXPORT(maxH3ToChildrenSize)(h, nextRes);
|
|
85
|
+
H3Index* children = calloc(childrenSize, sizeof(H3Index));
|
|
86
|
+
H3_EXPORT(h3ToChildren)(h, nextRes, children);
|
|
87
|
+
|
|
88
|
+
int h3ToChildrenCount = countActualHexagons(children, childrenSize);
|
|
89
|
+
|
|
90
|
+
t_assert(polyfillCount == h3ToChildrenCount,
|
|
91
|
+
"Polyfill count matches h3ToChildren count");
|
|
92
|
+
|
|
93
|
+
for (int i = 0; i < childrenSize; i++) {
|
|
94
|
+
bool found = false;
|
|
95
|
+
if (children[i] == H3_NULL) continue;
|
|
96
|
+
for (int j = 0; j < polyfillSize; j++) {
|
|
97
|
+
if (polyfillOut[j] == children[i]) {
|
|
98
|
+
found = true;
|
|
99
|
+
break;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
t_assert(found,
|
|
103
|
+
"All indexes match between polyfill and h3ToChildren");
|
|
49
104
|
}
|
|
105
|
+
|
|
106
|
+
free(polyfillOut);
|
|
107
|
+
free(children);
|
|
50
108
|
}
|
|
51
|
-
return actualNumHexagons;
|
|
52
109
|
}
|
|
53
110
|
|
|
54
111
|
SUITE(polyfill) {
|
|
@@ -64,13 +121,13 @@ SUITE(polyfill) {
|
|
|
64
121
|
|
|
65
122
|
TEST(maxPolyfillSize) {
|
|
66
123
|
int numHexagons = H3_EXPORT(maxPolyfillSize)(&sfGeoPolygon, 9);
|
|
67
|
-
t_assert(numHexagons ==
|
|
124
|
+
t_assert(numHexagons == 5613, "got expected max polyfill size");
|
|
68
125
|
|
|
69
126
|
numHexagons = H3_EXPORT(maxPolyfillSize)(&holeGeoPolygon, 9);
|
|
70
|
-
t_assert(numHexagons ==
|
|
127
|
+
t_assert(numHexagons == 5613, "got expected max polyfill size (hole)");
|
|
71
128
|
|
|
72
129
|
numHexagons = H3_EXPORT(maxPolyfillSize)(&emptyGeoPolygon, 9);
|
|
73
|
-
t_assert(numHexagons ==
|
|
130
|
+
t_assert(numHexagons == 15, "got expected max polyfill size (empty)");
|
|
74
131
|
}
|
|
75
132
|
|
|
76
133
|
TEST(polyfill) {
|
|
@@ -300,4 +357,10 @@ SUITE(polyfill) {
|
|
|
300
357
|
t_assert(numPentagons == 1, "one pentagon found");
|
|
301
358
|
free(hexagons);
|
|
302
359
|
}
|
|
360
|
+
|
|
361
|
+
TEST(fillIndex) {
|
|
362
|
+
iterateAllIndexesAtRes(0, fillIndex_assertions);
|
|
363
|
+
iterateAllIndexesAtRes(1, fillIndex_assertions);
|
|
364
|
+
iterateAllIndexesAtRes(2, fillIndex_assertions);
|
|
365
|
+
}
|
|
303
366
|
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2017-2019 Uber Technologies, Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
#include <stdlib.h>
|
|
18
|
+
|
|
19
|
+
#include "algos.h"
|
|
20
|
+
#include "constants.h"
|
|
21
|
+
#include "geoCoord.h"
|
|
22
|
+
#include "h3Index.h"
|
|
23
|
+
#include "test.h"
|
|
24
|
+
#include "utility.h"
|
|
25
|
+
|
|
26
|
+
// Tests for specific polyfill examples
|
|
27
|
+
|
|
28
|
+
SUITE(polyfill_reported) {
|
|
29
|
+
// https://github.com/uber/h3-js/issues/76#issuecomment-561204505
|
|
30
|
+
TEST(entireWorld) {
|
|
31
|
+
// TODO: Fails for a single worldwide polygon
|
|
32
|
+
GeoCoord worldVerts[] = {
|
|
33
|
+
{-M_PI_2, -M_PI}, {M_PI_2, -M_PI}, {M_PI_2, 0}, {-M_PI_2, 0}};
|
|
34
|
+
Geofence worldGeofence = {.numVerts = 4, .verts = worldVerts};
|
|
35
|
+
GeoPolygon worldGeoPolygon = {.geofence = worldGeofence, .numHoles = 0};
|
|
36
|
+
GeoCoord worldVerts2[] = {
|
|
37
|
+
{-M_PI_2, 0}, {M_PI_2, 0}, {M_PI_2, M_PI}, {-M_PI_2, M_PI}};
|
|
38
|
+
Geofence worldGeofence2 = {.numVerts = 4, .verts = worldVerts2};
|
|
39
|
+
GeoPolygon worldGeoPolygon2 = {.geofence = worldGeofence2,
|
|
40
|
+
.numHoles = 0};
|
|
41
|
+
|
|
42
|
+
for (int res = 0; res < 3; res++) {
|
|
43
|
+
int polyfillSize =
|
|
44
|
+
H3_EXPORT(maxPolyfillSize)(&worldGeoPolygon, res);
|
|
45
|
+
H3Index* polyfillOut = calloc(polyfillSize, sizeof(H3Index));
|
|
46
|
+
|
|
47
|
+
H3_EXPORT(polyfill)(&worldGeoPolygon, res, polyfillOut);
|
|
48
|
+
int actualNumHexagons =
|
|
49
|
+
countActualHexagons(polyfillOut, polyfillSize);
|
|
50
|
+
|
|
51
|
+
int polyfillSize2 =
|
|
52
|
+
H3_EXPORT(maxPolyfillSize)(&worldGeoPolygon2, res);
|
|
53
|
+
H3Index* polyfillOut2 = calloc(polyfillSize2, sizeof(H3Index));
|
|
54
|
+
|
|
55
|
+
H3_EXPORT(polyfill)(&worldGeoPolygon2, res, polyfillOut2);
|
|
56
|
+
int actualNumHexagons2 =
|
|
57
|
+
countActualHexagons(polyfillOut2, polyfillSize2);
|
|
58
|
+
|
|
59
|
+
t_assert(actualNumHexagons + actualNumHexagons2 ==
|
|
60
|
+
H3_EXPORT(numHexagons)(res),
|
|
61
|
+
"got expected polyfill size (entire world)");
|
|
62
|
+
|
|
63
|
+
// Sets should be disjoint
|
|
64
|
+
for (int i = 0; i < polyfillSize; i++) {
|
|
65
|
+
if (polyfillOut[i] == 0) continue;
|
|
66
|
+
|
|
67
|
+
bool found = false;
|
|
68
|
+
for (int j = 0; j < polyfillSize2; j++) {
|
|
69
|
+
if (polyfillOut[i] == polyfillOut2[j]) {
|
|
70
|
+
found = true;
|
|
71
|
+
break;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
t_assert(!found,
|
|
75
|
+
"Index found more than once when polyfilling the "
|
|
76
|
+
"entire world");
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
free(polyfillOut);
|
|
80
|
+
free(polyfillOut2);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// https://github.com/uber/h3-js/issues/67
|
|
85
|
+
TEST(h3js_67) {
|
|
86
|
+
double east = H3_EXPORT(degsToRads)(-56.25);
|
|
87
|
+
double north = H3_EXPORT(degsToRads)(-33.13755119234615);
|
|
88
|
+
double south = H3_EXPORT(degsToRads)(-34.30714385628804);
|
|
89
|
+
double west = H3_EXPORT(degsToRads)(-57.65625);
|
|
90
|
+
|
|
91
|
+
GeoCoord testVerts[] = {
|
|
92
|
+
{north, east}, {south, east}, {south, west}, {north, west}};
|
|
93
|
+
Geofence testGeofence = {.numVerts = 4, .verts = testVerts};
|
|
94
|
+
GeoPolygon testPolygon;
|
|
95
|
+
testPolygon.geofence = testGeofence;
|
|
96
|
+
testPolygon.numHoles = 0;
|
|
97
|
+
|
|
98
|
+
int res = 7;
|
|
99
|
+
int numHexagons = H3_EXPORT(maxPolyfillSize)(&testPolygon, res);
|
|
100
|
+
H3Index* hexagons = calloc(numHexagons, sizeof(H3Index));
|
|
101
|
+
|
|
102
|
+
H3_EXPORT(polyfill)(&testPolygon, res, hexagons);
|
|
103
|
+
int actualNumHexagons = countActualHexagons(hexagons, numHexagons);
|
|
104
|
+
|
|
105
|
+
t_assert(actualNumHexagons == 4499,
|
|
106
|
+
"got expected polyfill size (h3-js#67)");
|
|
107
|
+
free(hexagons);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// 2nd test case from h3-js#67
|
|
111
|
+
TEST(h3js_67_2nd) {
|
|
112
|
+
double east = H3_EXPORT(degsToRads)(-57.65625);
|
|
113
|
+
double north = H3_EXPORT(degsToRads)(-34.30714385628804);
|
|
114
|
+
double south = H3_EXPORT(degsToRads)(-35.4606699514953);
|
|
115
|
+
double west = H3_EXPORT(degsToRads)(-59.0625);
|
|
116
|
+
|
|
117
|
+
GeoCoord testVerts[] = {
|
|
118
|
+
{north, east}, {south, east}, {south, west}, {north, west}};
|
|
119
|
+
Geofence testGeofence = {.numVerts = 4, .verts = testVerts};
|
|
120
|
+
GeoPolygon testPolygon;
|
|
121
|
+
testPolygon.geofence = testGeofence;
|
|
122
|
+
testPolygon.numHoles = 0;
|
|
123
|
+
|
|
124
|
+
int res = 7;
|
|
125
|
+
int numHexagons = H3_EXPORT(maxPolyfillSize)(&testPolygon, res);
|
|
126
|
+
H3Index* hexagons = calloc(numHexagons, sizeof(H3Index));
|
|
127
|
+
|
|
128
|
+
H3_EXPORT(polyfill)(&testPolygon, res, hexagons);
|
|
129
|
+
int actualNumHexagons = countActualHexagons(hexagons, numHexagons);
|
|
130
|
+
|
|
131
|
+
t_assert(actualNumHexagons == 4609,
|
|
132
|
+
"got expected polyfill size (h3-js#67, 2nd case)");
|
|
133
|
+
free(hexagons);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// https://github.com/uber/h3/issues/136
|
|
137
|
+
TEST(h3_136) {
|
|
138
|
+
GeoCoord testVerts[] = {{0.10068990369902957, 0.8920772174196191},
|
|
139
|
+
{0.10032914690616246, 0.8915914753447348},
|
|
140
|
+
{0.10033349237998787, 0.8915860128746426},
|
|
141
|
+
{0.10069496685903621, 0.8920742194546231}};
|
|
142
|
+
Geofence testGeofence = {.numVerts = 4, .verts = testVerts};
|
|
143
|
+
GeoPolygon testPolygon;
|
|
144
|
+
testPolygon.geofence = testGeofence;
|
|
145
|
+
testPolygon.numHoles = 0;
|
|
146
|
+
|
|
147
|
+
int res = 13;
|
|
148
|
+
int numHexagons = H3_EXPORT(maxPolyfillSize)(&testPolygon, res);
|
|
149
|
+
H3Index* hexagons = calloc(numHexagons, sizeof(H3Index));
|
|
150
|
+
|
|
151
|
+
H3_EXPORT(polyfill)(&testPolygon, res, hexagons);
|
|
152
|
+
int actualNumHexagons = countActualHexagons(hexagons, numHexagons);
|
|
153
|
+
|
|
154
|
+
t_assert(actualNumHexagons == 4353, "got expected polyfill size");
|
|
155
|
+
free(hexagons);
|
|
156
|
+
}
|
|
157
|
+
}
|