PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ ST_3DDistance()

Datum ST_3DDistance ( PG_FUNCTION_ARGS  )

Definition at line 908 of file lwgeom_functions_basic.c.

909{
910 double mindist;
911 GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
912 GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
913 LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
914 LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
915 gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
916
917 mindist = lwgeom_mindistance3d(lwgeom1, lwgeom2);
918
919 PG_FREE_IF_COPY(geom1, 0);
920 PG_FREE_IF_COPY(geom2, 1);
921
922 /*if called with empty geometries the ingoing mindistance is untouched, and makes us return NULL*/
923 if (mindist < FLT_MAX)
924 PG_RETURN_FLOAT8(mindist);
925
926 PG_RETURN_NULL();
927}
void gserialized_error_if_srid_mismatch(const GSERIALIZED *g1, const GSERIALIZED *g2, const char *funcname)
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
double lwgeom_mindistance3d(const LWGEOM *lw1, const LWGEOM *lw2)
Function initializing 3d min distance calculation.
Definition measures3d.c:335

References gserialized_error_if_srid_mismatch(), lwgeom_from_gserialized(), and lwgeom_mindistance3d().

Here is the call graph for this function: