PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lw_dist3d_point_poly()

int lw_dist3d_point_poly ( LWPOINT point,
LWPOLY poly,
DISTPTS3D dl 
)

Computes point to polygon distance For mindistance that means: 1) find the plane of the polygon 2) projecting the point to the plane of the polygon 3) finding if that projected point is inside the polygon, if so the distance is measured to that projected point 4) if not in polygon above, check the distance against the boundary of the polygon for max distance it is always point against boundary.

Definition at line 744 of file measures3d.c.

745 {
746  POINT3DZ p, projp; /*projp is "point projected on plane"*/
747  PLANE3D plane;
748  LWDEBUG(2, "lw_dist3d_point_poly is called");
749  getPoint3dz_p(point->point, 0, &p);
750 
751  /* If we are looking for max distance, longestline or dfullywithin */
752  if (dl->mode == DIST_MAX)
753  return lw_dist3d_pt_ptarray(&p, poly->rings[0], dl);
754 
755  /* Find the plane of the polygon, the "holes" have to be on the same plane. so we only care about the boudary */
756  if (!define_plane(poly->rings[0], &plane))
757  {
758  /* Polygon does not define a plane: Return distance point -> line */
759  return lw_dist3d_pt_ptarray(&p, poly->rings[0], dl);
760  }
761 
762  /* Get our point projected on the plane of the polygon */
763  project_point_on_plane(&p, &plane, &projp);
764 
765  return lw_dist3d_pt_poly(&p, poly, &plane, &projp, dl);
766 }
int getPoint3dz_p(const POINTARRAY *pa, uint32_t n, POINT3DZ *point)
Definition: lwgeom_api.c:215
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
int lw_dist3d_pt_ptarray(POINT3DZ *p, POINTARRAY *pa, DISTPTS3D *dl)
search all the segments of pointarray to see which one is closest to p Returns distance between point...
Definition: measures3d.c:962
int define_plane(POINTARRAY *pa, PLANE3D *pl)
Definition: measures3d.c:1451
int lw_dist3d_pt_poly(POINT3DZ *p, LWPOLY *poly, PLANE3D *plane, POINT3DZ *projp, DISTPTS3D *dl)
Checking if the point projected on the plane of the polygon actually is inside that polygon.
Definition: measures3d.c:1251
double project_point_on_plane(POINT3DZ *p, PLANE3D *pl, POINT3DZ *p0)
Finds a point on a plane from where the original point is perpendicular to the plane.
Definition: measures3d.c:1524
#define DIST_MAX
Definition: measures.h:43
int mode
Definition: measures3d.h:43
POINTARRAY * point
Definition: liblwgeom.h:457
POINTARRAY ** rings
Definition: liblwgeom.h:505

References define_plane(), DIST_MAX, getPoint3dz_p(), lw_dist3d_pt_poly(), lw_dist3d_pt_ptarray(), LWDEBUG, DISTPTS3D::mode, LWPOINT::point, project_point_on_plane(), and LWPOLY::rings.

Referenced by lw_dist3d_distribute_bruteforce().

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