PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ LWGEOM_dfullywithin3d()

Datum LWGEOM_dfullywithin3d ( PG_FUNCTION_ARGS  )

Definition at line 1001 of file lwgeom_functions_basic.c.

1002 {
1003  double maxdist;
1004  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
1005  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
1006  double tolerance = PG_GETARG_FLOAT8(2);
1007  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
1008  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
1009 
1010  if (tolerance < 0)
1011  {
1012  elog(ERROR, "Tolerance cannot be less than zero\n");
1013  PG_RETURN_NULL();
1014  }
1015 
1016  gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
1017  maxdist = lwgeom_maxdistance3d_tolerance(lwgeom1, lwgeom2, tolerance);
1018 
1019  PG_FREE_IF_COPY(geom1, 0);
1020  PG_FREE_IF_COPY(geom2, 1);
1021 
1022  /*If function is feed with empty geometries we should return false*/
1023  if (maxdist > -1)
1024  PG_RETURN_BOOL(tolerance >= maxdist);
1025 
1026  PG_RETURN_BOOL(LW_FALSE);
1027 }
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
#define LW_FALSE
Definition: liblwgeom.h:94
double lwgeom_maxdistance3d_tolerance(const LWGEOM *lw1, const LWGEOM *lw2, double tolerance)
Function handling 3d max distance calculations and dfullywithin calculations.
Definition: measures3d.c:310

References gserialized_error_if_srid_mismatch(), LW_FALSE, lwgeom_from_gserialized(), and lwgeom_maxdistance3d_tolerance().

Here is the call graph for this function: