PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lwgeom_maxdistance2d_tolerance()

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

Function handling max distance calculations and dfullywithin calculations.

The difference is just the tolerance.

Definition at line 177 of file measures.c.

178 {
179  /*double thedist;*/
180  DISTPTS thedl;
181  LWDEBUG(2, "lwgeom_maxdistance2d_tolerance is called");
182  thedl.mode = DIST_MAX;
183  thedl.distance = -1;
184  thedl.tolerance = tolerance;
185  if (lw_dist2d_comp(lw1, lw2, &thedl))
186  return thedl.distance;
187 
188  /*should never get here. all cases ought to be error handled earlier*/
189  lwerror("Some unspecified error.");
190  return -1;
191 }
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
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:236
#define DIST_MAX
Definition: measures.h:43
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_MAX, DISTPTS::distance, lw_dist2d_comp(), LWDEBUG, lwerror(), DISTPTS::mode, and DISTPTS::tolerance.

Referenced by LWGEOM_dfullywithin(), lwgeom_maxdistance2d(), lwgeom_maxdistance3d_tolerance(), and rt_raster_fully_within_distance().

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