Name

CG_3DDistance — Computes the minimum 3D distance between two geometries

Synopsis

double precision CG_3DDistance( geometry geomA , geometry geomB );

描述

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.

可用性:3.5.0

该方法需要SFCGAL后端。

此函数支持三角形和不规则三角网面 (TIN)。

几何示例

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)

相关信息

CG_Distance, ST_3DDistance