PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ lw_dist2d_fast_ptarray_ptarray()

int lw_dist2d_fast_ptarray_ptarray ( POINTARRAY l1,
POINTARRAY l2,
DISTPTS dl,
GBOX box1,
GBOX box2 
)

The new faster calculation comparing pointarray to another pointarray the arrays can come from both polygons and linestrings.

The naming is not good but comes from that it compares a chosen selection of the points not all of them

Definition at line 2046 of file measures.c.

2047 {
2048  /*here we define two lists to hold our calculated "z"-values and the order number in the geometry*/
2049 
2050  double k, thevalue;
2051  float deltaX, deltaY, c1m, c2m;
2052  POINT2D c1, c2;
2053  const POINT2D *theP;
2054  float min1X, max1X, max1Y, min1Y, min2X, max2X, max2Y, min2Y;
2055  int t;
2056  int n1 = l1->npoints;
2057  int n2 = l2->npoints;
2058 
2059  LISTSTRUCT *list1, *list2;
2060  list1 = (LISTSTRUCT *)lwalloc(sizeof(LISTSTRUCT) * n1);
2061  list2 = (LISTSTRUCT *)lwalloc(sizeof(LISTSTRUCT) * n2);
2062 
2063  LWDEBUG(2, "lw_dist2d_fast_ptarray_ptarray is called");
2064 
2065  max1X = box1->xmax;
2066  min1X = box1->xmin;
2067  max1Y = box1->ymax;
2068  min1Y = box1->ymin;
2069  max2X = box2->xmax;
2070  min2X = box2->xmin;
2071  max2Y = box2->ymax;
2072  min2Y = box2->ymin;
2073  /*we want the center of the bboxes, and calculate the slope between the centerpoints*/
2074  c1.x = min1X + (max1X - min1X) / 2;
2075  c1.y = min1Y + (max1Y - min1Y) / 2;
2076  c2.x = min2X + (max2X - min2X) / 2;
2077  c2.y = min2Y + (max2Y - min2Y) / 2;
2078 
2079  deltaX = (c2.x - c1.x);
2080  deltaY = (c2.y - c1.y);
2081 
2082  /*Here we calculate where the line perpendicular to the center-center line crosses the axes for each vertex
2083  if the center-center line is vertical the perpendicular line will be horizontal and we find it's crossing the
2084  Y-axes with z = y-kx */
2085  if ((deltaX * deltaX) < (deltaY * deltaY)) /*North or South*/
2086  {
2087  k = -deltaX / deltaY;
2088  for (t = 0; t < n1; t++) /*for each segment in L1 */
2089  {
2090  theP = getPoint2d_cp(l1, t);
2091  thevalue = theP->y - (k * theP->x);
2092  list1[t].themeasure = thevalue;
2093  list1[t].pnr = t;
2094  }
2095  for (t = 0; t < n2; t++) /*for each segment in L2*/
2096  {
2097  theP = getPoint2d_cp(l2, t);
2098  thevalue = theP->y - (k * theP->x);
2099  list2[t].themeasure = thevalue;
2100  list2[t].pnr = t;
2101  }
2102  c1m = c1.y - (k * c1.x);
2103  c2m = c2.y - (k * c2.x);
2104  }
2105 
2106  /*if the center-center line is horizontal the perpendicular line will be vertical. To eliminate problems with
2107  dividing by zero we are here mirroring the coordinate-system and we find it's crossing the X-axes with z =
2108  x-(1/k)y */
2109  else /*West or East*/
2110  {
2111  k = -deltaY / deltaX;
2112  for (t = 0; t < n1; t++) /*for each segment in L1 */
2113  {
2114  theP = getPoint2d_cp(l1, t);
2115  thevalue = theP->x - (k * theP->y);
2116  list1[t].themeasure = thevalue;
2117  list1[t].pnr = t;
2118  /* lwnotice("l1 %d, measure=%f",t,thevalue ); */
2119  }
2120  for (t = 0; t < n2; t++) /*for each segment in L2*/
2121  {
2122  theP = getPoint2d_cp(l2, t);
2123  thevalue = theP->x - (k * theP->y);
2124  list2[t].themeasure = thevalue;
2125  list2[t].pnr = t;
2126  /* lwnotice("l2 %d, measure=%f",t,thevalue ); */
2127  }
2128  c1m = c1.x - (k * c1.y);
2129  c2m = c2.x - (k * c2.y);
2130  }
2131 
2132  /*we sort our lists by the calculated values*/
2133  qsort(list1, n1, sizeof(LISTSTRUCT), struct_cmp_by_measure);
2134  qsort(list2, n2, sizeof(LISTSTRUCT), struct_cmp_by_measure);
2135 
2136  if (c1m < c2m)
2137  {
2138  if (!lw_dist2d_pre_seg_seg(l1, l2, list1, list2, k, dl))
2139  {
2140  lwfree(list1);
2141  lwfree(list2);
2142  return LW_FALSE;
2143  }
2144  }
2145  else
2146  {
2147  dl->twisted = ((dl->twisted) * (-1));
2148  if (!lw_dist2d_pre_seg_seg(l2, l1, list2, list1, k, dl))
2149  {
2150  lwfree(list1);
2151  lwfree(list2);
2152  return LW_FALSE;
2153  }
2154  }
2155  lwfree(list1);
2156  lwfree(list2);
2157  return LW_TRUE;
2158 }
#define LW_FALSE
Definition: liblwgeom.h:109
void lwfree(void *mem)
Definition: lwutil.c:242
void * lwalloc(size_t size)
Definition: lwutil.c:227
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:108
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
static const POINT2D * getPoint2d_cp(const POINTARRAY *pa, uint32_t n)
Returns a POINT2D pointer into the POINTARRAY serialized_ptlist, suitable for reading from.
Definition: lwinline.h:101
int struct_cmp_by_measure(const void *a, const void *b)
Definition: measures.c:2161
int lw_dist2d_pre_seg_seg(POINTARRAY *l1, POINTARRAY *l2, LISTSTRUCT *list1, LISTSTRUCT *list2, double k, DISTPTS *dl)
preparation before lw_dist2d_seg_seg.
Definition: measures.c:2170
int twisted
Definition: measures.h:55
double ymax
Definition: liblwgeom.h:372
double xmax
Definition: liblwgeom.h:370
double ymin
Definition: liblwgeom.h:371
double xmin
Definition: liblwgeom.h:369
int pnr
Definition: measures.h:62
double themeasure
Definition: measures.h:61
double y
Definition: liblwgeom.h:405
double x
Definition: liblwgeom.h:405
uint32_t npoints
Definition: liblwgeom.h:442

References getPoint2d_cp(), lw_dist2d_pre_seg_seg(), LW_FALSE, LW_TRUE, lwalloc(), LWDEBUG, lwfree(), POINTARRAY::npoints, LISTSTRUCT::pnr, struct_cmp_by_measure(), LISTSTRUCT::themeasure, DISTPTS::twisted, POINT2D::x, GBOX::xmax, GBOX::xmin, POINT2D::y, GBOX::ymax, and GBOX::ymin.

Referenced by lw_dist2d_distribute_fast().

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