mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 15:47:23 -04:00
* Support ST_ENVELOPE and related ST_XMIN, etc. (#116964) Support ST_ENVELOPE and related ST_XMIN, etc. Based on the PostGIS equivalents: https://postgis.net/docs/ST_Envelope.html https://postgis.net/docs/ST_XMin.html https://postgis.net/docs/ST_XMax.html https://postgis.net/docs/ST_YMin.html https://postgis.net/docs/ST_YMax.html * Fix off-by-one error reported in #118051
36 lines
967 B
Text
36 lines
967 B
Text
[[esql-spatial-functions]]
|
|
==== {esql} spatial functions
|
|
|
|
++++
|
|
<titleabbrev>Spatial functions</titleabbrev>
|
|
++++
|
|
|
|
{esql} supports these spatial functions:
|
|
|
|
// tag::spatial_list[]
|
|
* <<esql-st_distance>>
|
|
* <<esql-st_intersects>>
|
|
* <<esql-st_disjoint>>
|
|
* <<esql-st_contains>>
|
|
* <<esql-st_within>>
|
|
* <<esql-st_x>>
|
|
* <<esql-st_y>>
|
|
* experimental:[] <<esql-st_envelope>>
|
|
* experimental:[] <<esql-st_xmax>>
|
|
* experimental:[] <<esql-st_xmin>>
|
|
* experimental:[] <<esql-st_ymax>>
|
|
* experimental:[] <<esql-st_ymin>>
|
|
// end::spatial_list[]
|
|
|
|
include::layout/st_distance.asciidoc[]
|
|
include::layout/st_intersects.asciidoc[]
|
|
include::layout/st_disjoint.asciidoc[]
|
|
include::layout/st_contains.asciidoc[]
|
|
include::layout/st_within.asciidoc[]
|
|
include::layout/st_x.asciidoc[]
|
|
include::layout/st_y.asciidoc[]
|
|
include::layout/st_envelope.asciidoc[]
|
|
include::layout/st_xmax.asciidoc[]
|
|
include::layout/st_xmin.asciidoc[]
|
|
include::layout/st_ymax.asciidoc[]
|
|
include::layout/st_ymin.asciidoc[]
|