PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ lwgeom_mindistance2d_tolerance()

double lwgeom_mindistance2d_tolerance ( const LWGEOM lw1,
const LWGEOM lw2,
double  tolerance 
)

Function handling min distance calculations and dwithin calculations.

The difference is just the tolerance.

Definition at line 210 of file measures.c.

211 {
212  DISTPTS thedl;
213  LWDEBUG(2, "lwgeom_mindistance2d_tolerance is called");
214  thedl.mode = DIST_MIN;
215  thedl.distance = FLT_MAX;
216  thedl.tolerance = tolerance;
217  if (lw_dist2d_comp(lw1, lw2, &thedl))
218  return thedl.distance;
219  /*should never get here. all cases ought to be error handled earlier*/
220  lwerror("Some unspecified error.");
221  return FLT_MAX;
222 }
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:101
void void lwerror(const char *fmt,...) __attribute__((format(printf
Write a notice out to the error handler.
int lw_dist2d_comp(const LWGEOM *lw1, const LWGEOM *lw2, DISTPTS *dl)
This function just deserializes geometries Bboxes is not checked here since it is the subgeometries b...
Definition: measures.c:239
#define DIST_MIN
Definition: measures.h:44
double tolerance
Definition: measures.h:56
int mode
Definition: measures.h:54
double distance
Definition: measures.h:51
Structure used in distance-calculations.
Definition: measures.h:50

References DIST_MIN, DISTPTS::distance, lw_dist2d_comp(), LWDEBUG, lwerror(), DISTPTS::mode, and DISTPTS::tolerance.

Referenced by LWGEOM_dwithin(), lwgeom_mindistance2d(), lwgeom_mindistance3d_tolerance(), lwt_GetEdgeByPoint(), lwt_GetFaceByPoint(), rt_raster_within_distance(), union_dbscan_general(), and union_dbscan_minpoints_1().

Here is the call graph for this function:
Here is the caller graph for this function: