Name

ST_MinimumClearanceLine — Gibt ein Linienstück mit zwei Punkten zurück, welche sich über das Mindestabstandsmaß erstreckt.

Synopsis

Geometry ST_MinimumClearanceLine(geometry g);

Beschreibung

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

Wird durch das GEOS Modul ausgeführt

Verfügbarkeit: 2.3.0 - benötigt GEOS >= 3.6.0

Beispiele

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)
                  

Siehe auch

ST_MinimumClearance