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 1957 of file measures.c.

1958 {
1959  /*here we define two lists to hold our calculated "z"-values and the order number in the geometry*/
1960 
1961  double k, thevalue;
1962  float deltaX, deltaY, c1m, c2m;
1963  POINT2D c1, c2;
1964  const POINT2D *theP;
1965  float min1X, max1X, max1Y, min1Y, min2X, max2X, max2Y, min2Y;
1966  int t;
1967  int n1 = l1->npoints;
1968  int n2 = l2->npoints;
1969 
1970  LISTSTRUCT *list1, *list2;
1971  list1 = (LISTSTRUCT *)lwalloc(sizeof(LISTSTRUCT) * n1);
1972  list2 = (LISTSTRUCT *)lwalloc(sizeof(LISTSTRUCT) * n2);
1973 
1974  LWDEBUG(2, "lw_dist2d_fast_ptarray_ptarray is called");
1975 
1976  max1X = box1->xmax;
1977  min1X = box1->xmin;
1978  max1Y = box1->ymax;
1979  min1Y = box1->ymin;
1980  max2X = box2->xmax;
1981  min2X = box2->xmin;
1982  max2Y = box2->ymax;
1983  min2Y = box2->ymin;
1984  /*we want the center of the bboxes, and calculate the slope between the centerpoints*/
1985  c1.x = min1X + (max1X - min1X) / 2;
1986  c1.y = min1Y + (max1Y - min1Y) / 2;
1987  c2.x = min2X + (max2X - min2X) / 2;
1988  c2.y = min2Y + (max2Y - min2Y) / 2;
1989 
1990  deltaX = (c2.x - c1.x);
1991  deltaY = (c2.y - c1.y);
1992 
1993  /*Here we calculate where the line perpendicular to the center-center line crosses the axes for each vertex
1994  if the center-center line is vertical the perpendicular line will be horizontal and we find it's crossing the
1995  Y-axes with z = y-kx */
1996  if ((deltaX * deltaX) < (deltaY * deltaY)) /*North or South*/
1997  {
1998  k = -deltaX / deltaY;
1999  for (t = 0; t < n1; t++) /*for each segment in L1 */
2000  {
2001  theP = getPoint2d_cp(l1, t);
2002  thevalue = theP->y - (k * theP->x);
2003  list1[t].themeasure = thevalue;
2004  list1[t].pnr = t;
2005  }
2006  for (t = 0; t < n2; t++) /*for each segment in L2*/
2007  {
2008  theP = getPoint2d_cp(l2, t);
2009  thevalue = theP->y - (k * theP->x);
2010  list2[t].themeasure = thevalue;
2011  list2[t].pnr = t;
2012  }
2013  c1m = c1.y - (k * c1.x);
2014  c2m = c2.y - (k * c2.x);
2015  }
2016 
2017  /*if the center-center line is horizontal the perpendicular line will be vertical. To eliminate problems with
2018  dividing by zero we are here mirroring the coordinate-system and we find it's crossing the X-axes with z =
2019  x-(1/k)y */
2020  else /*West or East*/
2021  {
2022  k = -deltaY / deltaX;
2023  for (t = 0; t < n1; t++) /*for each segment in L1 */
2024  {
2025  theP = getPoint2d_cp(l1, t);
2026  thevalue = theP->x - (k * theP->y);
2027  list1[t].themeasure = thevalue;
2028  list1[t].pnr = t;
2029  /* lwnotice("l1 %d, measure=%f",t,thevalue ); */
2030  }
2031  for (t = 0; t < n2; t++) /*for each segment in L2*/
2032  {
2033  theP = getPoint2d_cp(l2, t);
2034  thevalue = theP->x - (k * theP->y);
2035  list2[t].themeasure = thevalue;
2036  list2[t].pnr = t;
2037  /* lwnotice("l2 %d, measure=%f",t,thevalue ); */
2038  }
2039  c1m = c1.x - (k * c1.y);
2040  c2m = c2.x - (k * c2.y);
2041  }
2042 
2043  /*we sort our lists by the calculated values*/
2044  qsort(list1, n1, sizeof(LISTSTRUCT), struct_cmp_by_measure);
2045  qsort(list2, n2, sizeof(LISTSTRUCT), struct_cmp_by_measure);
2046 
2047  if (c1m < c2m)
2048  {
2049  if (!lw_dist2d_pre_seg_seg(l1, l2, list1, list2, k, dl))
2050  {
2051  lwfree(list1);
2052  lwfree(list2);
2053  return LW_FALSE;
2054  }
2055  }
2056  else
2057  {
2058  dl->twisted = ((dl->twisted) * (-1));
2059  if (!lw_dist2d_pre_seg_seg(l2, l1, list2, list1, k, dl))
2060  {
2061  lwfree(list1);
2062  lwfree(list2);
2063  return LW_FALSE;
2064  }
2065  }
2066  lwfree(list1);
2067  lwfree(list2);
2068  return LW_TRUE;
2069 }
#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:2072
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:2081
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: