PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ ST_3DDistance()

Datum ST_3DDistance ( PG_FUNCTION_ARGS  )

Definition at line 884 of file lwgeom_functions_basic.c.

885 {
886  double mindist;
887  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
888  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
889  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
890  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
891  gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
892 
893  mindist = lwgeom_mindistance3d(lwgeom1, lwgeom2);
894 
895  PG_FREE_IF_COPY(geom1, 0);
896  PG_FREE_IF_COPY(geom2, 1);
897 
898  /*if called with empty geometries the ingoing mindistance is untouched, and makes us return NULL*/
899  if (mindist < FLT_MAX)
900  PG_RETURN_FLOAT8(mindist);
901 
902  PG_RETURN_NULL();
903 }
void gserialized_error_if_srid_mismatch(const GSERIALIZED *g1, const GSERIALIZED *g2, const char *funcname)
Definition: gserialized.c:432
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:268
double lwgeom_mindistance3d(const LWGEOM *lw1, const LWGEOM *lw2)
Function initializing 3d min distance calculation.
Definition: measures3d.c:369

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

Here is the call graph for this function: