Skip to content

Commit 0d92bb2

Browse files
Move geo-grid functions out of SNAPSHOT and into tech-preview (#134228)
The PR at #129581 added three new types: `geohash`, `geotile` and `geohex`, and support functions for creating these from strings, longs and geo_point fields. However all this was done under SNAPSHOT. Now it's time to move it into `tech-preview`.
1 parent f0643a4 commit 0d92bb2

File tree

32 files changed

+74
-50
lines changed

32 files changed

+74
-50
lines changed

docs/reference/query-languages/esql/_snippets/functions/description/st_geohash.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/description/st_geohex.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/description/st_geotile.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/description/to_geohash.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/description/to_geohex.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/description/to_geotile.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/lists/spatial-functions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
* [preview] [`ST_XMIN`](../../functions-operators/spatial-functions.md#esql-st_xmin)
1111
* [preview] [`ST_YMAX`](../../functions-operators/spatial-functions.md#esql-st_ymax)
1212
* [preview] [`ST_YMIN`](../../functions-operators/spatial-functions.md#esql-st_ymin)
13+
* [preview] [`ST_GEOTILE`](../../functions-operators/spatial-functions.md#esql-st_geotile)
14+
* [preview] [`ST_GEOHEX`](../../functions-operators/spatial-functions.md#esql-st_geohex)
15+
* [preview] [`ST_GEOHASH`](../../functions-operators/spatial-functions.md#esql-st_geohash)

docs/reference/query-languages/esql/_snippets/lists/type-conversion-functions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
* [`TO_DATE_NANOS`](../../functions-operators/type-conversion-functions.md#esql-to_date_nanos)
77
* [`TO_DEGREES`](../../functions-operators/type-conversion-functions.md#esql-to_degrees)
88
* [`TO_DOUBLE`](../../functions-operators/type-conversion-functions.md#esql-to_double)
9+
* [preview] [`TO_GEOHASH`](../../functions-operators/type-conversion-functions.md#esql-to_geohash)
10+
* [preview] [`TO_GEOHEX`](../../functions-operators/type-conversion-functions.md#esql-to_geohex)
911
* [`TO_GEOPOINT`](../../functions-operators/type-conversion-functions.md#esql-to_geopoint)
1012
* [`TO_GEOSHAPE`](../../functions-operators/type-conversion-functions.md#esql-to_geoshape)
13+
* [preview] [`TO_GEOTILE`](../../functions-operators/type-conversion-functions.md#esql-to_geotile)
1114
* [`TO_INTEGER`](../../functions-operators/type-conversion-functions.md#esql-to_integer)
1215
* [`TO_IP`](../../functions-operators/type-conversion-functions.md#esql-to_ip)
1316
* [`TO_LONG`](../../functions-operators/type-conversion-functions.md#esql-to_long)

docs/reference/query-languages/esql/functions-operators/spatial-functions.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,12 @@ mapped_pages:
4747

4848
:::{include} ../_snippets/functions/layout/st_ymin.md
4949
:::
50+
51+
:::{include} ../_snippets/functions/layout/st_geotile.md
52+
:::
53+
54+
:::{include} ../_snippets/functions/layout/st_geohex.md
55+
:::
56+
57+
:::{include} ../_snippets/functions/layout/st_geohash.md
58+
:::

docs/reference/query-languages/esql/functions-operators/type-conversion-functions.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,21 @@ mapped_pages:
4343
:::{include} ../_snippets/functions/layout/to_double.md
4444
:::
4545

46+
:::{include} ../_snippets/functions/layout/to_geohash.md
47+
:::
48+
49+
:::{include} ../_snippets/functions/layout/to_geohex.md
50+
:::
51+
4652
:::{include} ../_snippets/functions/layout/to_geopoint.md
4753
:::
4854

4955
:::{include} ../_snippets/functions/layout/to_geoshape.md
5056
:::
5157

58+
:::{include} ../_snippets/functions/layout/to_geotile.md
59+
:::
60+
5261
:::{include} ../_snippets/functions/layout/to_integer.md
5362
:::
5463

0 commit comments

Comments
 (0)