H3 - add tests for h3GetFaces

This commit is contained in:
bharatnc 2021-09-21 14:11:02 -07:00
parent 32baa1ddae
commit eb118a09ab
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,4 @@
5
2
1
1

View File

@ -0,0 +1,14 @@
DROP TABLE IF EXISTS h3_indexes;
CREATE TABLE h3_indexes (h3_index UInt64) ENGINE = Memory;
-- test H3 indexes from: https://github.com/uber/h3-java/blob/master/src/test/java/com/uber/h3core/TestInspection.java#L86
INSERT INTO h3_indexes VALUES (stringToH3('0x85283473fffffffL'));
INSERT INTO h3_indexes VALUES (stringToH3('85283473fffffff'));
INSERT INTO h3_indexes VALUES (stringToH3('0x8167bffffffffffL'));
INSERT INTO h3_indexes VALUES (stringToH3('0x804dfffffffffffL'));
SELECT h3GetFaces(h3_index) FROM h3_indexes ORDER BY h3_index;
DROP TABLE h3_indexes;