Name

ST_MinimumClearanceLine — Retorna a LineString de dois pontos abrangendo a liquidação mínima de uma geometria.

Synopsis

Geometry ST_MinimumClearanceLine(geometry g);

Descrição

Returns the two-point LineString spanning a geometry's minimum clearance. If the geometry does not have a minimum clearance, LINESTRING EMPTY is returned.

Desempenhado pelo módulo GEOS.

Disponibilidade: 2.3.0 - requer GEOS >= 3.6.0

Exemplos

SELECT ST_AsText(ST_MinimumClearanceLine('POLYGON ((0 0, 1 0, 1 1, 0.5 3.2e-4, 0 0))'));
-------------------------------
LINESTRING(0.5 0.00032,0.5 0)
                  

Veja também

ST_MinimumClearance