PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ LWGEOM_maxdistance3d()

Datum LWGEOM_maxdistance3d ( PG_FUNCTION_ARGS  )

Definition at line 1030 of file lwgeom_functions_basic.c.

1031 {
1032  double maxdist;
1033  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
1034  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
1035  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
1036  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
1037 
1038  gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
1039 
1040  maxdist = lwgeom_maxdistance3d(lwgeom1, lwgeom2);
1041 
1042  PG_FREE_IF_COPY(geom1, 0);
1043  PG_FREE_IF_COPY(geom2, 1);
1044 
1045  /*if called with empty geometries the ingoing mindistance is untouched, and makes us return NULL*/
1046  if (maxdist > -1)
1047  PG_RETURN_FLOAT8(maxdist);
1048 
1049  PG_RETURN_NULL();
1050 }
void gserialized_error_if_srid_mismatch(const GSERIALIZED *g1, const GSERIALIZED *g2, const char *funcname)
Definition: gserialized.c:403
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:239
double lwgeom_maxdistance3d(const LWGEOM *lw1, const LWGEOM *lw2)
Function initializing 3d max distance calculation.
Definition: measures3d.c:300

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

Here is the call graph for this function: