accessors

CORE

This module contains functions that provide information about internal geometries.

ST_ENVELOPE

ST_ENVELOPE(geog)

Description

Takes any number of features and returns a rectangular Polygon that encompasses all vertices.

  • geog: ARRAY<GEOGRAPHY> input features.

Return type

GEOGRAPHY

Example

SELECT `carto-un`.carto.ST_ENVELOPE([ST_GEOGPOINT(-75.833, 39.284), ST_GEOGPOINT(-75.6, 39.984), ST_GEOGPOINT(-75.221, 39.125)]);
-- POLYGON((-75.833 39.125, -75.68 39.125 ...

Last updated