2019-04-09 19:19:30 +00:00
|
|
|
<test>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- lat swings roughly from -90 to 90, lon swings from -180 to 180, and their tempo does not match. -->
|
2020-02-28 17:02:43 +00:00
|
|
|
<query>SELECT count() FROM numbers(1000000) WHERE NOT ignore(geohashEncode((number % 150)*1.1 - 75, (number * 3.14 % 300)*1.1 - 150))</query>
|
|
|
|
<query>SELECT count() FROM numbers(1000000) WHERE NOT ignore(geohashDecode(toString(number % 1000000)))</query>
|
2019-04-09 19:19:30 +00:00
|
|
|
|
2020-03-11 11:22:10 +00:00
|
|
|
<query>SELECT count() FROM zeros(1000000) WHERE NOT ignore(geohashEncode(1.0/rand(), 2.0/rand()))</query>
|
|
|
|
<query>SELECT count() FROM zeros(1000000) WHERE NOT ignore(geohashDecode(toString(rand() % 1000000)))</query>
|
2019-04-09 19:19:30 +00:00
|
|
|
|
|
|
|
<!-- erroneus values -->
|
2020-02-28 17:02:43 +00:00
|
|
|
<query>SELECT count() FROM numbers(1000000) WHERE NOT ignore(geohashEncode(number + 91.0, number + 181.0))</query>
|
|
|
|
<query>SELECT count() FROM numbers(1000000) WHERE NOT ignore(geohashDecode(hex(number)))</query>
|
2019-04-09 19:19:30 +00:00
|
|
|
</test>
|