PostGIS  3.4.0dev-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 741 of file measures3d.c.

742 {
743  POINT3DZ p, projp; /*projp is "point projected on plane"*/
744  PLANE3D plane;
745  LWDEBUG(2, "lw_dist3d_point_poly is called");
746  getPoint3dz_p(point->point, 0, &p);
747 
748  /* If we are looking for max distance, longestline or dfullywithin */
749  if (dl->mode == DIST_MAX)
750  return lw_dist3d_pt_ptarray(&p, poly->rings[0], dl);
751 
752  /* Find the plane of the polygon, the "holes" have to be on the same plane. so we only care about the boudary */
753  if (!define_plane(poly->rings[0], &plane))
754  {
755  /* Polygon does not define a plane: Return distance point -> line */
756  return lw_dist3d_pt_ptarray(&p, poly->rings[0], dl);
757  }
758 
759  /* Get our point projected on the plane of the polygon */
760  project_point_on_plane(&p, &plane, &projp);
761 
762  return lw_dist3d_pt_poly(&p, poly, &plane, &projp, dl);
763 }
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:959
int define_plane(POINTARRAY *pa, PLANE3D *pl)
Definition: measures3d.c:1448
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:1248
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:1521
#define DIST_MAX
Definition: measures.h:43
int mode
Definition: measures3d.h:43
POINTARRAY * point
Definition: liblwgeom.h:471
POINTARRAY ** rings
Definition: liblwgeom.h:519

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: