PostGIS  3.4.0dev-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 2803 of file lwgeodetic.c.

2804 {
2805  uint32_t i, j;
2806  GEOGRAPHIC_EDGE e1, e2;
2807  GEOGRAPHIC_POINT p1, p2;
2808  int start = LW_FALSE;
2809  int changed = LW_FALSE;
2810 
2811  /* first point on line */
2812  if ( ! lwline_covers_lwpoint(lwline1, lwline_get_lwpoint(lwline2, 0)))
2813  {
2814  LWDEBUG(4,"returning false, first point of line2 is not covered by line1");
2815  return LW_FALSE;
2816  }
2817 
2818  /* last point on line */
2819  if ( ! lwline_covers_lwpoint(lwline1, lwline_get_lwpoint(lwline2, lwline2->points->npoints - 1)))
2820  {
2821  LWDEBUG(4,"returning false, last point of line2 is not covered by line1");
2822  return LW_FALSE;
2823  }
2824 
2825  j = 0;
2826  i = 0;
2827  while (i < lwline1->points->npoints - 1 && j < lwline2->points->npoints - 1)
2828  {
2829  changed = LW_FALSE;
2830  const POINT2D* a1 = getPoint2d_cp(lwline1->points, i);
2831  const POINT2D* a2 = getPoint2d_cp(lwline1->points, i+1);
2832  const POINT2D* b1 = getPoint2d_cp(lwline2->points, j);
2833  const POINT2D* b2 = getPoint2d_cp(lwline2->points, j+1);
2834 
2835  geographic_point_init(a1->x, a1->y, &(e1.start));
2836  geographic_point_init(a2->x, a2->y, &(e1.end));
2837  geographic_point_init(b1->x, b1->y, &p2);
2838 
2839  /* we already know, that the last point is on line1, so we're done */
2840  if ( j == lwline2->points->npoints - 1)
2841  {
2842  return LW_TRUE;
2843  }
2844  else if (start == LW_TRUE)
2845  {
2846  /* point is on current line1 edge, check next point in line2 */
2847  if ( edge_contains_point(&e1, &p2)) {
2848  j++;
2849  changed = LW_TRUE;
2850  }
2851 
2852  geographic_point_init(a1->x, a1->y, &(e2.start));
2853  geographic_point_init(a2->x, b2->y, &(e2.end));
2854  geographic_point_init(a1->x, a1->y, &p1);
2855 
2856  /* point is on current line2 edge, check next point in line1 */
2857  if ( edge_contains_point(&e2, &p1)) {
2858  i++;
2859  changed = LW_TRUE;
2860  }
2861 
2862  /* no edge progressed -> point left one line */
2863  if ( changed == LW_FALSE )
2864  {
2865  LWDEBUG(4,"returning false, found point not covered by both lines");
2866  return LW_FALSE;
2867  }
2868  else
2869  {
2870  continue;
2871  }
2872  }
2873 
2874  /* find first edge to cover line2 */
2875  if (edge_contains_point(&e1, &p2))
2876  {
2877  start = LW_TRUE;
2878  }
2879 
2880  /* next line1 edge */
2881  i++;
2882  }
2883 
2884  /* no uncovered point found */
2885  return LW_TRUE;
2886 }
#define LW_FALSE
Definition: liblwgeom.h:94
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:93
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:2774
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:1038
#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:483
double y
Definition: liblwgeom.h:390
double x
Definition: liblwgeom.h:390
uint32_t npoints
Definition: liblwgeom.h:427

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: