PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ lwline_covers_lwline()

int lwline_covers_lwline ( const LWLINE lwline1,
const LWLINE lwline2 
)

Check if first and last point of line2 are covered by line1 and then each point in between has to be one line1 in the exact same order return LW_TRUE if all edge points of line2 are on line1.

Definition at line 2644 of file lwgeodetic.c.

2645 {
2646  uint32_t i, j;
2647  GEOGRAPHIC_EDGE e1, e2;
2648  GEOGRAPHIC_POINT p1, p2;
2649  int start = LW_FALSE;
2650  int changed = LW_FALSE;
2651 
2652  /* first point on line */
2653  if ( ! lwline_covers_lwpoint(lwline1, lwline_get_lwpoint(lwline2, 0)))
2654  {
2655  LWDEBUG(4,"returning false, first point of line2 is not covered by line1");
2656  return LW_FALSE;
2657  }
2658 
2659  /* last point on line */
2660  if ( ! lwline_covers_lwpoint(lwline1, lwline_get_lwpoint(lwline2, lwline2->points->npoints - 1)))
2661  {
2662  LWDEBUG(4,"returning false, last point of line2 is not covered by line1");
2663  return LW_FALSE;
2664  }
2665 
2666  j = 0;
2667  i = 0;
2668  while (i < lwline1->points->npoints - 1 && j < lwline2->points->npoints - 1)
2669  {
2670  changed = LW_FALSE;
2671  const POINT2D* a1 = getPoint2d_cp(lwline1->points, i);
2672  const POINT2D* a2 = getPoint2d_cp(lwline1->points, i+1);
2673  const POINT2D* b1 = getPoint2d_cp(lwline2->points, j);
2674  const POINT2D* b2 = getPoint2d_cp(lwline2->points, j+1);
2675 
2676  geographic_point_init(a1->x, a1->y, &(e1.start));
2677  geographic_point_init(a2->x, a2->y, &(e1.end));
2678  geographic_point_init(b1->x, b1->y, &p2);
2679 
2680  /* we already know, that the last point is on line1, so we're done */
2681  if ( j == lwline2->points->npoints - 1)
2682  {
2683  return LW_TRUE;
2684  }
2685  else if (start == LW_TRUE)
2686  {
2687  /* point is on current line1 edge, check next point in line2 */
2688  if ( edge_contains_point(&e1, &p2)) {
2689  j++;
2690  changed = LW_TRUE;
2691  }
2692 
2693  geographic_point_init(a1->x, a1->y, &(e2.start));
2694  geographic_point_init(a2->x, b2->y, &(e2.end));
2695  geographic_point_init(a1->x, a1->y, &p1);
2696 
2697  /* point is on current line2 edge, check next point in line1 */
2698  if ( edge_contains_point(&e2, &p1)) {
2699  i++;
2700  changed = LW_TRUE;
2701  }
2702 
2703  /* no edge progressed -> point left one line */
2704  if ( changed == LW_FALSE )
2705  {
2706  LWDEBUG(4,"returning false, found point not covered by both lines");
2707  return LW_FALSE;
2708  }
2709  else
2710  {
2711  continue;
2712  }
2713  }
2714 
2715  /* find first edge to cover line2 */
2716  if (edge_contains_point(&e1, &p2))
2717  {
2718  start = LW_TRUE;
2719  }
2720 
2721  /* next line1 edge */
2722  i++;
2723  }
2724 
2725  /* no uncovered point found */
2726  return LW_TRUE;
2727 }
#define LW_FALSE
Definition: liblwgeom.h:109
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:108
LWPOINT * lwline_get_lwpoint(const LWLINE *line, uint32_t where)
Returns freshly allocated LWPOINT that corresponds to the index where.
Definition: lwline.c:309
int lwline_covers_lwpoint(const LWLINE *lwline, const LWPOINT *lwpoint)
return LW_TRUE if any of the line segments covers the point
Definition: lwgeodetic.c:2615
void geographic_point_init(double lon, double lat, GEOGRAPHIC_POINT *g)
Initialize a geographic point.
Definition: lwgeodetic.c:180
int edge_contains_point(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *p)
Returns true if the point p is on the minor edge defined by the end points of e.
Definition: lwgeodetic.c:986
#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
GEOGRAPHIC_POINT start
Definition: lwgeodetic.h:64
GEOGRAPHIC_POINT end
Definition: lwgeodetic.h:65
Two-point great circle segment from a to b.
Definition: lwgeodetic.h:63
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:54
POINTARRAY * points
Definition: liblwgeom.h:498
double y
Definition: liblwgeom.h:405
double x
Definition: liblwgeom.h:405
uint32_t npoints
Definition: liblwgeom.h:442

References edge_contains_point(), GEOGRAPHIC_EDGE::end, geographic_point_init(), getPoint2d_cp(), LW_FALSE, LW_TRUE, LWDEBUG, lwline_covers_lwpoint(), lwline_get_lwpoint(), POINTARRAY::npoints, LWLINE::points, GEOGRAPHIC_EDGE::start, POINT2D::x, and POINT2D::y.

Referenced by lwgeom_covers_lwgeom_sphere().

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