PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ _lwt_InitEdgeEndByLine()

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

Definition at line 1434 of file lwgeom_topo.c.

1436 {
1437  POINTARRAY *pa = edge->points;
1438  POINT2D pt;
1439 
1440  fee->nextCW = fee->nextCCW =
1441  lee->nextCW = lee->nextCCW = 0;
1442  fee->cwFace = fee->ccwFace =
1443  lee->cwFace = lee->ccwFace = -1;
1444 
1445  /* Compute azimuth of first edge end */
1446  LWDEBUG(1, "computing azimuth of first edge end");
1447  if ( ! _lwt_FirstDistinctVertex2D(pa, fp, 0, 1, &pt) )
1448  {
1449  lwerror("Invalid edge (no two distinct vertices exist)");
1450  return -1;
1451  }
1452  if ( ! azimuth_pt_pt(fp, &pt, &(fee->myaz)) ) {
1453  lwerror("error computing azimuth of first edgeend [%.15g %.15g,%.15g %.15g]",
1454  fp->x, fp->y, pt.x, pt.y);
1455  return -2;
1456  }
1457  LWDEBUGF(1, "azimuth of first edge end [%.15g %.15g,%.15g %.15g] is %g",
1458  fp->x, fp->y, pt.x, pt.y, fee->myaz);
1459 
1460  /* Compute azimuth of second edge end */
1461  LWDEBUG(1, "computing azimuth of second edge end");
1462  if ( ! _lwt_FirstDistinctVertex2D(pa, lp, pa->npoints-1, -1, &pt) )
1463  {
1464  lwerror("Invalid edge (no two distinct vertices exist)");
1465  return -1;
1466  }
1467  if ( ! azimuth_pt_pt(lp, &pt, &(lee->myaz)) ) {
1468  lwerror("error computing azimuth of last edgeend [%.15g %.15g,%.15g %.15g]",
1469  lp->x, lp->y, pt.x, pt.y);
1470  return -2;
1471  }
1472  LWDEBUGF(1, "azimuth of last edge end [%.15g %.15g,%.15g %.15g] is %g",
1473  lp->x, lp->y, pt.x, pt.y, lee->myaz);
1474 
1475  return 0;
1476 }
int azimuth_pt_pt(const POINT2D *p1, const POINT2D *p2, double *ret)
Compute the azimuth of segment AB in radians.
Definition: measures.c:2417
#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:1395
POINTARRAY * points
Definition: liblwgeom.h:425
double y
Definition: liblwgeom.h:331
double x
Definition: liblwgeom.h:331
uint32_t npoints
Definition: liblwgeom.h:374
double myaz
Definition: lwgeom_topo.c:1382
LWT_ELEMID nextCCW
Definition: lwgeom_topo.c:1378
LWT_ELEMID ccwFace
Definition: lwgeom_topo.c:1380
LWT_ELEMID cwFace
Definition: lwgeom_topo.c:1376
LWT_ELEMID nextCW
Definition: lwgeom_topo.c:1374

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: