Loading

ES|QL ST_ENVELOPE function

Embedded
geometry

Expression of type geo_point, geo_shape, cartesian_point or cartesian_shape. If null, the function returns null.

Determines the minimum bounding box of the supplied geometry.

geometry result
cartesian_point cartesian_shape
cartesian_shape cartesian_shape
geo_point geo_shape
geo_shape geo_shape
FROM airport_city_boundaries
| WHERE abbrev == "CPH"
| EVAL envelope = ST_ENVELOPE(city_boundary)
| KEEP abbrev, airport, envelope
		
abbrev:keyword airport:text envelope:geo_shape
CPH Copenhagen BBOX (12.45299999602139, 12.639799928292632, 55.732699991203845, 55.63179998192936)