H3 - tests for h3ResIsClassIII func

This commit is contained in:
bharatnc 2021-09-20 23:34:04 -07:00
parent 772f7c9322
commit 93e3fe9db1
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,4 @@
0
1
0
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#L57
INSERT INTO h3_indexes VALUES (geoToH3(0.0, 0.0, 0));
INSERT INTO h3_indexes VALUES (geoToH3(10.0, 0.0, 1));
INSERT INTO h3_indexes VALUES (geoToH3(0.0, 10.0, 2));
INSERT INTO h3_indexes VALUES (geoToH3(10.0, 10.0, 3));
SELECT h3ResIsClassIII(h3_index) FROM h3_indexes ORDER BY h3_index;
DROP TABLE h3_indexes;