PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_dfullywithin3d()

Datum LWGEOM_dfullywithin3d ( PG_FUNCTION_ARGS  )

Definition at line 976 of file lwgeom_functions_basic.c.

References error_if_srid_mismatch(), LW_FALSE, lwgeom_from_gserialized(), LWGEOM_maxdistance3d(), lwgeom_maxdistance3d_tolerance(), PG_FUNCTION_INFO_V1(), and LWGEOM::srid.

Referenced by LWGEOM_dwithin3d().

977 {
978  double maxdist;
979  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
980  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
981  double tolerance = PG_GETARG_FLOAT8(2);
982  LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
983  LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
984 
985  if ( tolerance < 0 )
986  {
987  elog(ERROR,"Tolerance cannot be less than zero\n");
988  PG_RETURN_NULL();
989  }
990 
991  error_if_srid_mismatch(lwgeom1->srid, lwgeom2->srid);
992  maxdist = lwgeom_maxdistance3d_tolerance(lwgeom1, lwgeom2, tolerance);
993 
994  PG_FREE_IF_COPY(geom1, 0);
995  PG_FREE_IF_COPY(geom2, 1);
996 
997  /*If function is feed with empty geometries we should return false*/
998  if (maxdist>-1)
999  PG_RETURN_BOOL(tolerance >= maxdist);
1000 
1001  PG_RETURN_BOOL(LW_FALSE);
1002 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void error_if_srid_mismatch(int srid1, int srid2)
Definition: lwutil.c:371
int32_t srid
Definition: liblwgeom.h:399
double lwgeom_maxdistance3d_tolerance(const LWGEOM *lw1, const LWGEOM *lw2, double tolerance)
Function handling 3d max distance calculations and dfullywithin calculations.
Definition: measures3d.c:326
#define LW_FALSE
Definition: liblwgeom.h:77
Here is the call graph for this function:
Here is the caller graph for this function: