PostGIS  3.2.2dev-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 1946 of file measures.c.

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

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: