PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ LWGEOM_dwithin3d()

Datum LWGEOM_dwithin3d ( PG_FUNCTION_ARGS  )

Definition at line 932 of file lwgeom_functions_basic.c.

933{
934 double mindist;
935 GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
936 GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
937 double tolerance = PG_GETARG_FLOAT8(2);
938 LWGEOM *lwgeom1 = lwgeom_from_gserialized(geom1);
939 LWGEOM *lwgeom2 = lwgeom_from_gserialized(geom2);
940
941 if (tolerance < 0)
942 {
943 elog(ERROR, "Tolerance cannot be less than zero\n");
944 PG_RETURN_NULL();
945 }
946
947 gserialized_error_if_srid_mismatch(geom1, geom2, __func__);
948
949 mindist = lwgeom_mindistance3d_tolerance(lwgeom1, lwgeom2, tolerance);
950
951 PG_FREE_IF_COPY(geom1, 0);
952 PG_FREE_IF_COPY(geom2, 1);
953
954 /*empty geometries cases should be right handled since return from underlying
955 functions should be FLT_MAX which causes false as answer*/
956 PG_RETURN_BOOL(tolerance >= mindist);
957}
void gserialized_error_if_srid_mismatch(const GSERIALIZED *g1, const GSERIALIZED *g2, const char *funcname)
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
double lwgeom_mindistance3d_tolerance(const LWGEOM *lw1, const LWGEOM *lw2, double tolerance)
Function handling 3d min distance calculations and dwithin calculations.
Definition measures3d.c:476

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

Here is the call graph for this function: