PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ _lwt_InitEdgeEndByLine()

static int _lwt_InitEdgeEndByLine ( edgeend fee,
edgeend lee,
LWLINE edge,
POINT2D fp,
POINT2D lp 
)
static

Definition at line 1478 of file lwgeom_topo.c.

1480 {
1481  POINTARRAY *pa = edge->points;
1482  POINT2D pt;
1483 
1484  fee->nextCW = fee->nextCCW =
1485  lee->nextCW = lee->nextCCW = 0;
1486  fee->cwFace = fee->ccwFace =
1487  lee->cwFace = lee->ccwFace = -1;
1488 
1489  /* Compute azimuth of first edge end */
1490  LWDEBUG(1, "computing azimuth of first edge end");
1491  if ( ! _lwt_FirstDistinctVertex2D(pa, fp, 0, 1, &pt) )
1492  {
1493  lwerror("Invalid edge (no two distinct vertices exist)");
1494  return -1;
1495  }
1496  if ( ! azimuth_pt_pt(fp, &pt, &(fee->myaz)) ) {
1497  lwerror("error computing azimuth of first edgeend [%.15g %.15g,%.15g %.15g]",
1498  fp->x, fp->y, pt.x, pt.y);
1499  return -2;
1500  }
1501  LWDEBUGF(1, "azimuth of first edge end [%.15g %.15g,%.15g %.15g] is %g",
1502  fp->x, fp->y, pt.x, pt.y, fee->myaz);
1503 
1504  /* Compute azimuth of second edge end */
1505  LWDEBUG(1, "computing azimuth of second edge end");
1506  if ( ! _lwt_FirstDistinctVertex2D(pa, lp, pa->npoints-1, -1, &pt) )
1507  {
1508  lwerror("Invalid edge (no two distinct vertices exist)");
1509  return -1;
1510  }
1511  if ( ! azimuth_pt_pt(lp, &pt, &(lee->myaz)) ) {
1512  lwerror("error computing azimuth of last edgeend [%.15g %.15g,%.15g %.15g]",
1513  lp->x, lp->y, pt.x, pt.y);
1514  return -2;
1515  }
1516  LWDEBUGF(1, "azimuth of last edge end [%.15g %.15g,%.15g %.15g] is %g",
1517  lp->x, lp->y, pt.x, pt.y, lee->myaz);
1518 
1519  return 0;
1520 }
int azimuth_pt_pt(const POINT2D *p1, const POINT2D *p2, double *ret)
Compute the azimuth of segment AB in radians.
Definition: measures.c:2509
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static int _lwt_FirstDistinctVertex2D(const POINTARRAY *pa, POINT2D *ref, int from, int dir, POINT2D *op)
Definition: lwgeom_topo.c:1439
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
double myaz
Definition: lwgeom_topo.c:1426
LWT_ELEMID nextCCW
Definition: lwgeom_topo.c:1422
LWT_ELEMID ccwFace
Definition: lwgeom_topo.c:1424
LWT_ELEMID cwFace
Definition: lwgeom_topo.c:1420
LWT_ELEMID nextCW
Definition: lwgeom_topo.c:1418

References _lwt_FirstDistinctVertex2D(), azimuth_pt_pt(), edgeend_t::ccwFace, edgeend_t::cwFace, LWDEBUG, LWDEBUGF, lwerror(), edgeend_t::myaz, edgeend_t::nextCCW, edgeend_t::nextCW, POINTARRAY::npoints, LWLINE::points, POINT2D::x, and POINT2D::y.

Referenced by lwt_ChangeEdgeGeom().

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