PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_dwithin()

Datum LWGEOM_dwithin ( PG_FUNCTION_ARGS  )

Definition at line 732 of file lwgeom_functions_basic.c.

733 {
734  double mindist;
735  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
736  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
737  double tolerance = PG_GETARG_FLOAT8(2);
738  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
739  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
740 
741  if ( tolerance < 0 )
742  {
743  elog(ERROR,"Tolerance cannot be less than zero\n");
744  PG_RETURN_NULL();
745  }
746 
747  error_if_srid_mismatch(lwgeom1->srid, lwgeom2->srid);
748 
749  mindist = lwgeom_mindistance2d_tolerance(lwgeom1,lwgeom2,tolerance);
750 
751  PG_FREE_IF_COPY(geom1, 0);
752  PG_FREE_IF_COPY(geom2, 1);
753  /*empty geometries cases should be right handled since return from underlying
754  functions should be FLT_MAX which causes false as answer*/
755  PG_RETURN_BOOL(tolerance >= mindist);
756 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
double lwgeom_mindistance2d_tolerance(const LWGEOM *lw1, const LWGEOM *lw2, double tolerance)
Function handling min distance calculations and dwithin calculations.
Definition: measures.c:213
void error_if_srid_mismatch(int srid1, int srid2)
Definition: lwutil.c:338
int32_t srid
Definition: liblwgeom.h:402

References error_if_srid_mismatch(), lwgeom_from_gserialized(), lwgeom_mindistance2d_tolerance(), and LWGEOM::srid.

Here is the call graph for this function: