Name

CG_Distance — Computes the minimum distance between two geometries

Synopsis

double precision CG_Distance( geometry geomA , geometry geomB );

Beschreibung

Computes the minimum distance between two geometries.

Performed by the SFCGAL module

[Note]

NOTE: this function returns a double precision value representing the distance.

Verfügbarkeit: 3.5.0

Diese Methode benötigt ein SFCGAL-Backend.

Diese Funktion unterstützt Dreiecke und dreieckige unregelmäßige Netzoberflächen (TIN).

Beispiele mit dem geometrischen Datentyp

SELECT CG_Distance('LINESTRING(0.0 0.0,-1.0 -1.0)', 'LINESTRING(3.0 4.0,4.0 5.0)');
        cg_distance
        -------------
        2.0
        (1 row)