PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_contains_point_partial()

int ptarray_contains_point_partial ( const POINTARRAY pa,
const POINT2D pt,
int  check_closed,
int *  winding_number 
)

Definition at line 742 of file ptarray.c.

References FP_MAX, FP_MIN, getPoint2d_cp(), LW_BOUNDARY, LW_INSIDE, LW_OUTSIDE, lw_pt_in_seg(), lw_segment_side(), lwerror(), POINTARRAY::npoints, p2d_same(), POINT2D::x, and POINT2D::y.

Referenced by lwcompound_contains_point(), and ptarray_contains_point().

743 {
744  int wn = 0;
745  int i;
746  double side;
747  const POINT2D *seg1;
748  const POINT2D *seg2;
749  double ymin, ymax;
750 
751  seg1 = getPoint2d_cp(pa, 0);
752  seg2 = getPoint2d_cp(pa, pa->npoints-1);
753  if ( check_closed && ! p2d_same(seg1, seg2) )
754  lwerror("ptarray_contains_point called on unclosed ring");
755 
756  for ( i=1; i < pa->npoints; i++ )
757  {
758  seg2 = getPoint2d_cp(pa, i);
759 
760  /* Zero length segments are ignored. */
761  if ( seg1->x == seg2->x && seg1->y == seg2->y )
762  {
763  seg1 = seg2;
764  continue;
765  }
766 
767  ymin = FP_MIN(seg1->y, seg2->y);
768  ymax = FP_MAX(seg1->y, seg2->y);
769 
770  /* Only test segments in our vertical range */
771  if ( pt->y > ymax || pt->y < ymin )
772  {
773  seg1 = seg2;
774  continue;
775  }
776 
777  side = lw_segment_side(seg1, seg2, pt);
778 
779  /*
780  * A point on the boundary of a ring is not contained.
781  * WAS: if (fabs(side) < 1e-12), see #852
782  */
783  if ( (side == 0) && lw_pt_in_seg(pt, seg1, seg2) )
784  {
785  return LW_BOUNDARY;
786  }
787 
788  /*
789  * If the point is to the left of the line, and it's rising,
790  * then the line is to the right of the point and
791  * circling counter-clockwise, so incremement.
792  */
793  if ( (side < 0) && (seg1->y <= pt->y) && (pt->y < seg2->y) )
794  {
795  wn++;
796  }
797 
798  /*
799  * If the point is to the right of the line, and it's falling,
800  * then the line is to the right of the point and circling
801  * clockwise, so decrement.
802  */
803  else if ( (side > 0) && (seg2->y <= pt->y) && (pt->y < seg1->y) )
804  {
805  wn--;
806  }
807 
808  seg1 = seg2;
809  }
810 
811  /* Sent out the winding number for calls that are building on this as a primitive */
812  if ( winding_number )
813  *winding_number = wn;
814 
815  /* Outside */
816  if (wn == 0)
817  {
818  return LW_OUTSIDE;
819  }
820 
821  /* Inside */
822  return LW_INSIDE;
823 }
int npoints
Definition: liblwgeom.h:371
#define FP_MIN(A, B)
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
#define LW_INSIDE
Constants for point-in-polygon return values.
double y
Definition: liblwgeom.h:328
#define LW_BOUNDARY
int lw_pt_in_seg(const POINT2D *P, const POINT2D *A1, const POINT2D *A2)
Returns true if P is between A1/A2.
Definition: lwalgorithm.c:95
#define LW_OUTSIDE
int lw_segment_side(const POINT2D *p1, const POINT2D *p2, const POINT2D *q)
lw_segment_side()
Definition: lwalgorithm.c:64
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
#define FP_MAX(A, B)
Here is the call graph for this function:
Here is the caller graph for this function: