Name

CG_3DDistance — Computes the minimum 3D distance between two geometries

Synopsis

double precision CG_3DDistance( geometry geomA , geometry geomB );

Descrizione

Computes the minimum 3D distance between two geometries.

Performed by the SFCGAL module

[Note]

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

Availability: 3.5.0

Questo metodo richiede il backend SFCGAL.

Questa funzione supporta i Triangoli e le Triangulated Irregular Network Surfaces (TIN).

Geometry Examples

SELECT CG_3DDistance('LINESTRING(-1.0 0.0 2.0,1.0 0.0 3.0)', 'TRIANGLE((-4.0 0.0 1.0,4.0 0.0 1.0,0.0 4.0 1.0,-4.0 0.0 1.0))');
        cg_3ddistance
        ----------------
        1
        (1 row)

Si veda anche

CG_Distance, ST_3DDistance