PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ lwline_crossing_direction()

int lwline_crossing_direction ( const LWLINE l1,
const LWLINE l2 
)

Given two lines, characterize how (and if) they cross each other.

Given two lines, characterize how (and if) they cross each other.

Parameters
l1first line string
l2second line string
Returns
a CG_LINE_CROSS_TYPE LINE_NO_CROSS = 0 LINE_CROSS_LEFT = -1 LINE_CROSS_RIGHT = 1 LINE_MULTICROSS_END_LEFT = -2 LINE_MULTICROSS_END_RIGHT = 2 LINE_MULTICROSS_END_SAME_FIRST_LEFT = -3 LINE_MULTICROSS_END_SAME_FIRST_RIGHT = 3

Definition at line 470 of file lwalgorithm.c.

471 {
472  uint32_t i = 0, j = 0;
473  const POINT2D *p1, *p2, *q1, *q2;
474  POINTARRAY *pa1 = NULL, *pa2 = NULL;
475  int cross_left = 0;
476  int cross_right = 0;
477  int first_cross = 0;
478  int this_cross = 0;
479 #if POSTGIS_DEBUG_LEVEL >= 4
480  char *geom_ewkt;
481 #endif
482 
483  pa1 = (POINTARRAY*)l1->points;
484  pa2 = (POINTARRAY*)l2->points;
485 
486  /* One-point lines can't intersect (and shouldn't exist). */
487  if ( pa1->npoints < 2 || pa2->npoints < 2 )
488  return LINE_NO_CROSS;
489 
490  /* Zero length lines don't have a side. */
491  if ( ptarray_length_2d(pa1) == 0 || ptarray_length_2d(pa2) == 0 )
492  return LINE_NO_CROSS;
493 
494 
495 #if POSTGIS_DEBUG_LEVEL >= 4
496  geom_ewkt = lwgeom_to_ewkt((LWGEOM*)l1);
497  LWDEBUGF(4, "l1 = %s", geom_ewkt);
498  lwfree(geom_ewkt);
499  geom_ewkt = lwgeom_to_ewkt((LWGEOM*)l2);
500  LWDEBUGF(4, "l2 = %s", geom_ewkt);
501  lwfree(geom_ewkt);
502 #endif
503 
504  /* Initialize first point of q */
505  q1 = getPoint2d_cp(pa2, 0);
506 
507  for ( i = 1; i < pa2->npoints; i++ )
508  {
509 
510  /* Update second point of q to next value */
511  q2 = getPoint2d_cp(pa2, i);
512 
513  /* Initialize first point of p */
514  p1 = getPoint2d_cp(pa1, 0);
515 
516  for ( j = 1; j < pa1->npoints; j++ )
517  {
518 
519  /* Update second point of p to next value */
520  p2 = getPoint2d_cp(pa1, j);
521 
522  this_cross = lw_segment_intersects(p1, p2, q1, q2);
523 
524  LWDEBUGF(4, "i=%d, j=%d (%.8g %.8g, %.8g %.8g)", this_cross, i, j, p1->x, p1->y, p2->x, p2->y);
525 
526  if ( this_cross == SEG_CROSS_LEFT )
527  {
528  LWDEBUG(4,"this_cross == SEG_CROSS_LEFT");
529  cross_left++;
530  if ( ! first_cross )
531  first_cross = SEG_CROSS_LEFT;
532  }
533 
534  if ( this_cross == SEG_CROSS_RIGHT )
535  {
536  LWDEBUG(4,"this_cross == SEG_CROSS_RIGHT");
537  cross_right++;
538  if ( ! first_cross )
539  first_cross = SEG_CROSS_RIGHT;
540  }
541 
542  /*
543  ** Crossing at a co-linearity can be turned handled by extending
544  ** segment to next vertex and seeing if the end points straddle
545  ** the co-linear segment.
546  */
547  if ( this_cross == SEG_COLINEAR )
548  {
549  LWDEBUG(4,"this_cross == SEG_COLINEAR");
550  /* TODO: Add logic here and in segment_intersects()
551  continue;
552  */
553  }
554 
555  LWDEBUG(4,"this_cross == SEG_NO_INTERSECTION");
556 
557  /* Turn second point of p into first point */
558  p1 = p2;
559 
560  }
561 
562  /* Turn second point of q into first point */
563  q1 = q2;
564 
565  }
566 
567  LWDEBUGF(4, "first_cross=%d, cross_left=%d, cross_right=%d", first_cross, cross_left, cross_right);
568 
569  if ( !cross_left && !cross_right )
570  return LINE_NO_CROSS;
571 
572  if ( !cross_left && cross_right == 1 )
573  return LINE_CROSS_RIGHT;
574 
575  if ( !cross_right && cross_left == 1 )
576  return LINE_CROSS_LEFT;
577 
578  if ( cross_left - cross_right == 1 )
580 
581  if ( cross_left - cross_right == -1 )
583 
584  if ( cross_left - cross_right == 0 && first_cross == SEG_CROSS_LEFT )
586 
587  if ( cross_left - cross_right == 0 && first_cross == SEG_CROSS_RIGHT )
589 
590  return LINE_NO_CROSS;
591 
592 }
double ptarray_length_2d(const POINTARRAY *pts)
Find the 2d length of the given POINTARRAY (even if it's 3d)
Definition: ptarray.c:2099
char * lwgeom_to_ewkt(const LWGEOM *lwgeom)
Return an alloced string.
Definition: lwgeom.c:548
void lwfree(void *mem)
Definition: lwutil.c:242
@ LINE_MULTICROSS_END_RIGHT
Definition: liblwgeom.h:1669
@ LINE_MULTICROSS_END_SAME_FIRST_LEFT
Definition: liblwgeom.h:1670
@ LINE_MULTICROSS_END_LEFT
Definition: liblwgeom.h:1668
@ LINE_CROSS_LEFT
Definition: liblwgeom.h:1666
@ LINE_MULTICROSS_END_SAME_FIRST_RIGHT
Definition: liblwgeom.h:1671
@ LINE_CROSS_RIGHT
Definition: liblwgeom.h:1667
@ LINE_NO_CROSS
Definition: liblwgeom.h:1665
@ SEG_COLINEAR
@ SEG_CROSS_RIGHT
@ SEG_CROSS_LEFT
int lw_segment_intersects(const POINT2D *p1, const POINT2D *p2, const POINT2D *q1, const POINT2D *q2)
returns the kind of CG_SEGMENT_INTERSECTION_TYPE behavior of lineseg 1 (constructed from p1 and p2) a...
Definition: lwalgorithm.c:381
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
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
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 getPoint2d_cp(), LINE_CROSS_LEFT, LINE_CROSS_RIGHT, LINE_MULTICROSS_END_LEFT, LINE_MULTICROSS_END_RIGHT, LINE_MULTICROSS_END_SAME_FIRST_LEFT, LINE_MULTICROSS_END_SAME_FIRST_RIGHT, LINE_NO_CROSS, lw_segment_intersects(), LWDEBUG, LWDEBUGF, lwfree(), lwgeom_to_ewkt(), POINTARRAY::npoints, LWLINE::points, ptarray_length_2d(), SEG_COLINEAR, SEG_CROSS_LEFT, SEG_CROSS_RIGHT, POINT2D::x, and POINT2D::y.

Referenced by ST_LineCrossingDirection(), test_lwline_crossing_bugs(), test_lwline_crossing_long_lines(), and test_lwline_crossing_short_lines().

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