- #4003, lwpoly_construct_circle: Avoid division by zero (Raúl Marín Rodríguez)
- #4020, Casting from box3d to geometry now returns correctly connected
PolyhedralSurface (Matthias Bay)
+ - #4025, Incorrect answers for temporally "amost overlapping" ranges
PostGIS 2.3.6
2018/01/17
{
LWLINE *l1, *l2;
int i;
- const GBOX *gbox1, *gbox2;
+ GBOX gbox1, gbox2;
double tmin, tmax;
double *mvals;
int nmvals = 0;
return -1;
}
- /* WARNING: these ranges may be wider than real ones */
- gbox1 = lwgeom_get_bbox(g1);
- gbox2 = lwgeom_get_bbox(g2);
-
- assert(gbox1); /* or the npoints check above would have failed */
- assert(gbox2); /* or the npoints check above would have failed */
+ /* We use lwgeom_calculate_gbox() instead of lwgeom_get_gbox() */
+ /* because we cannot afford the float rounding inaccuracy when */
+ /* we compare the ranges for overlap below */
+ lwgeom_calculate_gbox(g1, &gbox1);
+ lwgeom_calculate_gbox(g2, &gbox2);
/*
* Find overlapping M range
* WARNING: may be larger than the real one
*/
- tmin = FP_MAX(gbox1->mmin, gbox2->mmin);
- tmax = FP_MIN(gbox1->mmax, gbox2->mmax);
+ tmin = FP_MAX(gbox1.mmin, gbox2.mmin);
+ tmax = FP_MIN(gbox1.mmax, gbox2.mmax);
if ( tmax < tmin )
{