PostGIS  2.4.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 1943 of file measures.c.

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().

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