PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_locate_point()

double ptarray_locate_point ( const POINTARRAY pa,
const POINT4D pt,
double *  dist,
POINT4D p_located 
)

Definition at line 1306 of file ptarray.c.

References closest_point_on_segment(), distance2d_pt_pt(), distance2d_pt_seg(), getPoint2d_cp(), getPoint4d_p(), LWDEBUG, LWDEBUGF, POINTARRAY::npoints, p2d_same(), ptarray_length_2d(), POINT2D::x, POINT4D::x, POINT2D::y, and POINT4D::y.

Referenced by lwgeom_interpolate_point(), LWGEOM_line_locate_point(), and test_ptarray_locate_point().

1307 {
1308  double mindist=-1;
1309  double tlen, plen;
1310  int t, seg=-1;
1311  POINT4D start4d, end4d, projtmp;
1312  POINT2D proj, p;
1313  const POINT2D *start = NULL, *end = NULL;
1314 
1315  /* Initialize our 2D copy of the input parameter */
1316  p.x = p4d->x;
1317  p.y = p4d->y;
1318 
1319  if ( ! proj4d ) proj4d = &projtmp;
1320 
1321  start = getPoint2d_cp(pa, 0);
1322 
1323  /* If the pointarray has only one point, the nearest point is */
1324  /* just that point */
1325  if ( pa->npoints == 1 )
1326  {
1327  getPoint4d_p(pa, 0, proj4d);
1328  if ( mindistout )
1329  *mindistout = distance2d_pt_pt(&p, start);
1330  return 0.0;
1331  }
1332 
1333  /* Loop through pointarray looking for nearest segment */
1334  for (t=1; t<pa->npoints; t++)
1335  {
1336  double dist;
1337  end = getPoint2d_cp(pa, t);
1338  dist = distance2d_pt_seg(&p, start, end);
1339 
1340  if (t==1 || dist < mindist )
1341  {
1342  mindist = dist;
1343  seg=t-1;
1344  }
1345 
1346  if ( mindist == 0 )
1347  {
1348  LWDEBUG(3, "Breaking on mindist=0");
1349  break;
1350  }
1351 
1352  start = end;
1353  }
1354 
1355  if ( mindistout ) *mindistout = mindist;
1356 
1357  LWDEBUGF(3, "Closest segment: %d", seg);
1358  LWDEBUGF(3, "mindist: %g", mindist);
1359 
1360  /*
1361  * We need to project the
1362  * point on the closest segment.
1363  */
1364  getPoint4d_p(pa, seg, &start4d);
1365  getPoint4d_p(pa, seg+1, &end4d);
1366  closest_point_on_segment(p4d, &start4d, &end4d, proj4d);
1367 
1368  /* Copy 4D values into 2D holder */
1369  proj.x = proj4d->x;
1370  proj.y = proj4d->y;
1371 
1372  LWDEBUGF(3, "Closest segment:%d, npoints:%d", seg, pa->npoints);
1373 
1374  /* For robustness, force 1 when closest point == endpoint */
1375  if ( (seg >= (pa->npoints-2)) && p2d_same(&proj, end) )
1376  {
1377  return 1.0;
1378  }
1379 
1380  LWDEBUGF(3, "Closest point on segment: %g,%g", proj.x, proj.y);
1381 
1382  tlen = ptarray_length_2d(pa);
1383 
1384  LWDEBUGF(3, "tlen %g", tlen);
1385 
1386  /* Location of any point on a zero-length line is 0 */
1387  /* See http://trac.osgeo.org/postgis/ticket/1772#comment:2 */
1388  if ( tlen == 0 ) return 0;
1389 
1390  plen=0;
1391  start = getPoint2d_cp(pa, 0);
1392  for (t=0; t<seg; t++, start=end)
1393  {
1394  end = getPoint2d_cp(pa, t+1);
1395  plen += distance2d_pt_pt(start, end);
1396 
1397  LWDEBUGF(4, "Segment %d made plen %g", t, plen);
1398  }
1399 
1400  plen+=distance2d_pt_pt(&proj, start);
1401 
1402  LWDEBUGF(3, "plen %g, tlen %g", plen, tlen);
1403 
1404  return plen/tlen;
1405 }
int npoints
Definition: liblwgeom.h:371
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
double distance2d_pt_pt(const POINT2D *p1, const POINT2D *p2)
The old function nessecary for ptarray_segmentize2d in ptarray.c.
Definition: measures.c:2317
double distance2d_pt_seg(const POINT2D *p, const POINT2D *A, const POINT2D *B)
The old function nessecary for ptarray_segmentize2d in ptarray.c.
Definition: measures.c:2342
double x
Definition: liblwgeom.h:328
int p2d_same(const POINT2D *p1, const POINT2D *p2)
Definition: lwalgorithm.c:49
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
void closest_point_on_segment(const POINT4D *p, const POINT4D *A, const POINT4D *B, POINT4D *ret)
Definition: ptarray.c:1258
double y
Definition: liblwgeom.h:328
double ptarray_length_2d(const POINTARRAY *pts)
Find the 2d length of the given POINTARRAY (even if it&#39;s 3d)
Definition: ptarray.c:1692
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
int getPoint4d_p(const POINTARRAY *pa, int n, POINT4D *point)
Definition: lwgeom_api.c:122
Here is the call graph for this function:
Here is the caller graph for this function: