PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ LWGEOM_dwithin()

Datum LWGEOM_dwithin ( PG_FUNCTION_ARGS  )

Definition at line 725 of file lwgeom_functions_basic.c.

726 {
727  double mindist;
728  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
729  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
730  double tolerance = PG_GETARG_FLOAT8(2);
731  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
732  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
733 
734  if (tolerance < 0)
735  {
736  elog(ERROR, "Tolerance cannot be less than zero\n");
737  PG_RETURN_NULL();
738  }
739 
740  gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
741 
742  mindist = lwgeom_mindistance2d_tolerance(lwgeom1, lwgeom2, tolerance);
743 
744  PG_FREE_IF_COPY(geom1, 0);
745  PG_FREE_IF_COPY(geom2, 1);
746  /*empty geometries cases should be right handled since return from underlying
747  functions should be FLT_MAX which causes false as answer*/
748  PG_RETURN_BOOL(tolerance >= mindist);
749 }
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
double lwgeom_mindistance2d_tolerance(const LWGEOM *lw1, const LWGEOM *lw2, double tolerance)
Function handling min distance calculations and dwithin calculations.
Definition: measures.c:207

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

Here is the call graph for this function: