PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwt_GetEdgeByPoint()

LWT_ELEMID lwt_GetEdgeByPoint ( LWT_TOPOLOGY topo,
LWPOINT pt,
double  tol 
)

Find the edge-id of an edge that intersects a given point.

Parameters
topothe topology to operate on
pointthe point to use for query
tolmax distance around the given point to look for an intersecting edge
Returns
an edge identifier if one is found, 0 if none is found, -1 on error (multiple edges within distance). The liblwgeom error handler will be invoked in case of error.

Definition at line 4724 of file lwgeom_topo.c.

4725 {
4726  LWT_ISO_EDGE *elem;
4727  uint64_t num, i;
4728  int flds = LWT_COL_EDGE_EDGE_ID|LWT_COL_EDGE_GEOM; /* GEOM is not needed */
4729  LWT_ELEMID id = 0;
4730  LWGEOM *qp = lwpoint_as_lwgeom(pt); /* query point */
4731 
4732  if ( lwgeom_is_empty(qp) )
4733  {
4734  lwerror("Empty query point");
4735  return -1;
4736  }
4737  elem = lwt_be_getEdgeWithinDistance2D(topo, pt, tol, &num, flds, 0);
4738  if (num == UINT64_MAX)
4739  {
4740  lwerror("Backend error: %s", lwt_be_lastErrorMessage(topo->be_iface));
4741  return -1;
4742  }
4743  for (i=0; i<num;++i)
4744  {
4745  LWT_ISO_EDGE *e = &(elem[i]);
4746 #if 0
4747  LWGEOM* geom;
4748  double dist;
4749 
4750  if ( ! e->geom )
4751  {
4752  _lwt_release_edges(elem, num);
4753  lwnotice("Corrupted topology: edge %" LWTFMT_ELEMID
4754  " has null geometry", e->edge_id);
4755  continue;
4756  }
4757 
4758  /* Should we check for intersection not being on an endpoint
4759  * as documented ? */
4760  geom = lwline_as_lwgeom(e->geom);
4761  dist = lwgeom_mindistance2d_tolerance(geom, qp, tol);
4762  if ( dist > tol ) continue;
4763 #endif
4764 
4765  if ( id )
4766  {
4767  _lwt_release_edges(elem, num);
4768  lwerror("Two or more edges found");
4769  return -1;
4770  }
4771  else id = e->edge_id;
4772  }
4773 
4774  if ( num ) _lwt_release_edges(elem, num);
4775 
4776  return id;
4777 }
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:339
LWGEOM * lwpoint_as_lwgeom(const LWPOINT *obj)
Definition: lwgeom.c:344
double lwgeom_mindistance2d_tolerance(const LWGEOM *lw1, const LWGEOM *lw2, double tolerance)
Function handling min distance calculations and dwithin calculations.
Definition: measures.c:207
LWT_INT64 LWT_ELEMID
Identifier of topology element.
#define LWT_COL_EDGE_EDGE_ID
Edge fields.
#define LWT_COL_EDGE_GEOM
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
const char * lwt_be_lastErrorMessage(const LWT_BE_IFACE *be)
Definition: lwgeom_topo.c:125
#define LWTFMT_ELEMID
Definition: lwgeom_topo.c:43
static void _lwt_release_edges(LWT_ISO_EDGE *edges, int num_edges)
Definition: lwgeom_topo.c:471
LWT_ISO_EDGE * lwt_be_getEdgeWithinDistance2D(LWT_TOPOLOGY *topo, const LWPOINT *pt, double dist, uint64_t *numelems, int fields, int64_t limit)
Definition: lwgeom_topo.c:256
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition: lwinline.h:203
LWLINE * geom
LWT_ELEMID edge_id
const LWT_BE_IFACE * be_iface

References _lwt_release_edges(), LWT_TOPOLOGY_T::be_iface, LWT_ISO_EDGE::edge_id, LWT_ISO_EDGE::geom, lwerror(), lwgeom_is_empty(), lwgeom_mindistance2d_tolerance(), lwline_as_lwgeom(), lwnotice(), lwpoint_as_lwgeom(), lwt_be_getEdgeWithinDistance2D(), lwt_be_lastErrorMessage(), LWT_COL_EDGE_EDGE_ID, LWT_COL_EDGE_GEOM, and LWTFMT_ELEMID.

Here is the call graph for this function: