PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwpoly_covers_pointarray()

int lwpoly_covers_pointarray ( const LWPOLY lwpoly,
const POINTARRAY pta 
)

return LW_TRUE if all points are inside the polygon

Definition at line 2713 of file lwgeodetic.c.

2714 {
2715  uint32_t i;
2716  for (i = 0; i < pta->npoints; i++) {
2717  const POINT2D* pt_to_test = getPoint2d_cp(pta, i);
2718 
2719  if ( LW_FALSE == lwpoly_covers_point2d(lwpoly, pt_to_test) ) {
2720  LWDEBUG(4,"returning false, geometry2 has point outside of geometry1");
2721  return LW_FALSE;
2722  }
2723  }
2724 
2725  return LW_TRUE;
2726 }
#define LW_FALSE
Definition: liblwgeom.h:94
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:93
int lwpoly_covers_point2d(const LWPOLY *poly, const POINT2D *pt_to_test)
Given a polygon (lon/lat decimal degrees) and point (lon/lat decimal degrees) and a guaranteed outsid...
Definition: lwgeodetic.c:2535
#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
uint32_t npoints
Definition: liblwgeom.h:427

References getPoint2d_cp(), LW_FALSE, LW_TRUE, LWDEBUG, lwpoly_covers_point2d(), and POINTARRAY::npoints.

Referenced by lwpoly_covers_lwline(), and lwpoly_covers_lwpoly().

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