PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ _lwt_InitEdgeEndByLine()

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

Definition at line 1451 of file lwgeom_topo.c.

1453 {
1454  POINTARRAY *pa = edge->points;
1455  POINT2D pt;
1456 
1457  fee->nextCW = fee->nextCCW =
1458  lee->nextCW = lee->nextCCW = 0;
1459  fee->cwFace = fee->ccwFace =
1460  lee->cwFace = lee->ccwFace = -1;
1461 
1462  /* Compute azimuth of first edge end */
1463  LWDEBUG(1, "computing azimuth of first edge end");
1464  if ( ! _lwt_FirstDistinctVertex2D(pa, fp, 0, 1, &pt) )
1465  {
1466  lwerror("Invalid edge (no two distinct vertices exist)");
1467  return -1;
1468  }
1469  if ( ! azimuth_pt_pt(fp, &pt, &(fee->myaz)) ) {
1470  lwerror("error computing azimuth of first edgeend [%.15g %.15g,%.15g %.15g]",
1471  fp->x, fp->y, pt.x, pt.y);
1472  return -2;
1473  }
1474  LWDEBUGF(1, "azimuth of first edge end [%.15g %.15g,%.15g %.15g] is %g",
1475  fp->x, fp->y, pt.x, pt.y, fee->myaz);
1476 
1477  /* Compute azimuth of second edge end */
1478  LWDEBUG(1, "computing azimuth of second edge end");
1479  if ( ! _lwt_FirstDistinctVertex2D(pa, lp, pa->npoints-1, -1, &pt) )
1480  {
1481  lwerror("Invalid edge (no two distinct vertices exist)");
1482  return -1;
1483  }
1484  if ( ! azimuth_pt_pt(lp, &pt, &(lee->myaz)) ) {
1485  lwerror("error computing azimuth of last edgeend [%.15g %.15g,%.15g %.15g]",
1486  lp->x, lp->y, pt.x, pt.y);
1487  return -2;
1488  }
1489  LWDEBUGF(1, "azimuth of last edge end [%.15g %.15g,%.15g %.15g] is %g",
1490  lp->x, lp->y, pt.x, pt.y, lee->myaz);
1491 
1492  return 0;
1493 }
int azimuth_pt_pt(const POINT2D *p1, const POINT2D *p2, double *ret)
Compute the azimuth of segment AB in radians.
Definition: measures.c:2462
#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:1412
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
double myaz
Definition: lwgeom_topo.c:1399
LWT_ELEMID nextCCW
Definition: lwgeom_topo.c:1395
LWT_ELEMID ccwFace
Definition: lwgeom_topo.c:1397
LWT_ELEMID cwFace
Definition: lwgeom_topo.c:1393
LWT_ELEMID nextCW
Definition: lwgeom_topo.c:1391

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: