PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ LWGEOM_dfullywithin()

Datum LWGEOM_dfullywithin ( PG_FUNCTION_ARGS  )

Definition at line 757 of file lwgeom_functions_basic.c.

758 {
759  double maxdist;
760  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
761  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
762  double tolerance = PG_GETARG_FLOAT8(2);
763  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
764  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
765 
766  if (tolerance < 0)
767  {
768  elog(ERROR, "Tolerance cannot be less than zero\n");
769  PG_RETURN_NULL();
770  }
771 
772  gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
773 
774  maxdist = lwgeom_maxdistance2d_tolerance(lwgeom1, lwgeom2, tolerance);
775 
776  PG_FREE_IF_COPY(geom1, 0);
777  PG_FREE_IF_COPY(geom2, 1);
778 
779  /*If function is feed with empty geometries we should return false*/
780  if (maxdist > -1)
781  PG_RETURN_BOOL(tolerance >= maxdist);
782 
783  PG_RETURN_BOOL(LW_FALSE);
784 }
void gserialized_error_if_srid_mismatch(const GSERIALIZED *g1, const GSERIALIZED *g2, const char *funcname)
Definition: gserialized.c:404
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:239
#define LW_FALSE
Definition: liblwgeom.h:108
double lwgeom_maxdistance2d_tolerance(const LWGEOM *lw1, const LWGEOM *lw2, double tolerance)
Function handling max distance calculations and dfullywithin calculations.
Definition: measures.c:177

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

Here is the call graph for this function: