PostGIS  3.2.2dev-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 2778 of file lwgeodetic.c.

2779 {
2780  uint32_t i, j;
2781  GEOGRAPHIC_EDGE e1, e2;
2782  GEOGRAPHIC_POINT p1, p2;
2783  int start = LW_FALSE;
2784  int changed = LW_FALSE;
2785 
2786  /* first point on line */
2787  if ( ! lwline_covers_lwpoint(lwline1, lwline_get_lwpoint(lwline2, 0)))
2788  {
2789  LWDEBUG(4,"returning false, first point of line2 is not covered by line1");
2790  return LW_FALSE;
2791  }
2792 
2793  /* last point on line */
2794  if ( ! lwline_covers_lwpoint(lwline1, lwline_get_lwpoint(lwline2, lwline2->points->npoints - 1)))
2795  {
2796  LWDEBUG(4,"returning false, last point of line2 is not covered by line1");
2797  return LW_FALSE;
2798  }
2799 
2800  j = 0;
2801  i = 0;
2802  while (i < lwline1->points->npoints - 1 && j < lwline2->points->npoints - 1)
2803  {
2804  changed = LW_FALSE;
2805  const POINT2D* a1 = getPoint2d_cp(lwline1->points, i);
2806  const POINT2D* a2 = getPoint2d_cp(lwline1->points, i+1);
2807  const POINT2D* b1 = getPoint2d_cp(lwline2->points, j);
2808  const POINT2D* b2 = getPoint2d_cp(lwline2->points, j+1);
2809 
2810  geographic_point_init(a1->x, a1->y, &(e1.start));
2811  geographic_point_init(a2->x, a2->y, &(e1.end));
2812  geographic_point_init(b1->x, b1->y, &p2);
2813 
2814  /* we already know, that the last point is on line1, so we're done */
2815  if ( j == lwline2->points->npoints - 1)
2816  {
2817  return LW_TRUE;
2818  }
2819  else if (start == LW_TRUE)
2820  {
2821  /* point is on current line1 edge, check next point in line2 */
2822  if ( edge_contains_point(&e1, &p2)) {
2823  j++;
2824  changed = LW_TRUE;
2825  }
2826 
2827  geographic_point_init(a1->x, a1->y, &(e2.start));
2828  geographic_point_init(a2->x, b2->y, &(e2.end));
2829  geographic_point_init(a1->x, a1->y, &p1);
2830 
2831  /* point is on current line2 edge, check next point in line1 */
2832  if ( edge_contains_point(&e2, &p1)) {
2833  i++;
2834  changed = LW_TRUE;
2835  }
2836 
2837  /* no edge progressed -> point left one line */
2838  if ( changed == LW_FALSE )
2839  {
2840  LWDEBUG(4,"returning false, found point not covered by both lines");
2841  return LW_FALSE;
2842  }
2843  else
2844  {
2845  continue;
2846  }
2847  }
2848 
2849  /* find first edge to cover line2 */
2850  if (edge_contains_point(&e1, &p2))
2851  {
2852  start = LW_TRUE;
2853  }
2854 
2855  /* next line1 edge */
2856  i++;
2857  }
2858 
2859  /* no uncovered point found */
2860  return LW_TRUE;
2861 }
#define LW_FALSE
Definition: liblwgeom.h:108
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:107
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:2749
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:1034
#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:497
double y
Definition: liblwgeom.h:404
double x
Definition: liblwgeom.h:404
uint32_t npoints
Definition: liblwgeom.h:441

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: