732{
733 double mindist;
736 double tolerance = PG_GETARG_FLOAT8(2);
739
740 if (tolerance < 0)
741 {
742 elog(ERROR, "Tolerance cannot be less than zero\n");
743 PG_RETURN_NULL();
744 }
745
747
749 {
750 PG_RETURN_BOOL(false);
751 }
752
754
755 PG_FREE_IF_COPY(geom1, 0);
756 PG_FREE_IF_COPY(geom2, 1);
757
758
759 PG_RETURN_BOOL(tolerance >= mindist);
760}
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_mindistance2d_tolerance(const LWGEOM *lw1, const LWGEOM *lw2, double tolerance)
Function handling min distance calculations and dwithin calculations.
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)