PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ _lwt_FindNextRingEdge()

static int _lwt_FindNextRingEdge ( const POINTARRAY ring,
int  from,
const LWT_ISO_EDGE edges,
int  numedges 
)
static

Definition at line 2859 of file lwgeom_topo.c.

2861 {
2862  int i;
2863  POINT2D p1;
2864 
2865  /* Get starting ring point */
2866  getPoint2d_p(ring, from, &p1);
2867 
2868  LWDEBUGF(1, "Ring's 'from' point (%d) is %g,%g", from, p1.x, p1.y);
2869 
2870  /* find the edges defining the next portion of ring starting from
2871  * vertex "from" */
2872  for ( i=0; i<numedges; ++i )
2873  {
2874  const LWT_ISO_EDGE *isoe = &(edges[i]);
2875  LWLINE *edge = isoe->geom;
2876  POINTARRAY *epa = edge->points;
2877  POINT2D p2, pt;
2878  int match = 0;
2879  uint32_t j;
2880 
2881  /* Skip if the edge is a dangling one */
2882  if ( isoe->face_left == isoe->face_right )
2883  {
2884  LWDEBUGF(3, "_lwt_FindNextRingEdge: edge %" LWTFMT_ELEMID
2885  " has same face (%" LWTFMT_ELEMID
2886  ") on both sides, skipping",
2887  isoe->edge_id, isoe->face_left);
2888  continue;
2889  }
2890 
2891  if (epa->npoints < 2)
2892  {
2893  LWDEBUGF(3, "_lwt_FindNextRingEdge: edge %" LWTFMT_ELEMID
2894  " has only %"PRIu32" points",
2895  isoe->edge_id, epa->npoints);
2896  continue;
2897  }
2898 
2899 #if 0
2900  size_t sz;
2901  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " is %s",
2902  isoe->edge_id,
2903  lwgeom_to_wkt(lwline_as_lwgeom(edge), WKT_EXTENDED, 2, &sz));
2904 #endif
2905 
2906  /* ptarray_remove_repeated_points ? */
2907 
2908  getPoint2d_p(epa, 0, &p2);
2909  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " 'first' point is %g,%g",
2910  isoe->edge_id, p2.x, p2.y);
2911  LWDEBUGF(1, "Rings's 'from' point is still %g,%g", p1.x, p1.y);
2912  if ( p2d_same(&p1, &p2) )
2913  {
2914  LWDEBUG(1, "p2d_same(p1,p2) returned true");
2915  LWDEBUGF(1, "First point of edge %" LWTFMT_ELEMID
2916  " matches ring vertex %d", isoe->edge_id, from);
2917  /* first point matches, let's check next non-equal one */
2918  for ( j=1; j<epa->npoints; ++j )
2919  {
2920  getPoint2d_p(epa, j, &p2);
2921  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " 'next' point %d is %g,%g",
2922  isoe->edge_id, j, p2.x, p2.y);
2923  /* we won't check duplicated edge points */
2924  if ( p2d_same(&p1, &p2) ) continue;
2925  /* we assume there are no duplicated points in ring */
2926  getPoint2d_p(ring, from+1, &pt);
2927  LWDEBUGF(1, "Ring's point %d is %g,%g",
2928  from+1, pt.x, pt.y);
2929  match = p2d_same(&pt, &p2);
2930  break; /* we want to check a single non-equal next vertex */
2931  }
2932 #if POSTGIS_DEBUG_LEVEL > 0
2933  if ( match ) {
2934  LWDEBUGF(1, "Prev point of edge %" LWTFMT_ELEMID
2935  " matches ring vertex %d", isoe->edge_id, from+1);
2936  } else {
2937  LWDEBUGF(1, "Prev point of edge %" LWTFMT_ELEMID
2938  " does not match ring vertex %d", isoe->edge_id, from+1);
2939  }
2940 #endif
2941  }
2942 
2943  if ( ! match )
2944  {
2945  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " did not match as forward",
2946  isoe->edge_id);
2947  getPoint2d_p(epa, epa->npoints-1, &p2);
2948  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " 'last' point is %g,%g",
2949  isoe->edge_id, p2.x, p2.y);
2950  if ( p2d_same(&p1, &p2) )
2951  {
2952  LWDEBUGF(1, "Last point of edge %" LWTFMT_ELEMID
2953  " matches ring vertex %d", isoe->edge_id, from);
2954  /* last point matches, let's check next non-equal one */
2955  for ( j=2; j<=epa->npoints; j++ )
2956  {
2957  getPoint2d_p(epa, epa->npoints - j, &p2);
2958  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " 'prev' point %d is %g,%g",
2959  isoe->edge_id, epa->npoints - j, p2.x, p2.y);
2960  /* we won't check duplicated edge points */
2961  if ( p2d_same(&p1, &p2) ) continue;
2962  /* we assume there are no duplicated points in ring */
2963  getPoint2d_p(ring, from+1, &pt);
2964  LWDEBUGF(1, "Ring's point %d is %g,%g",
2965  from+1, pt.x, pt.y);
2966  match = p2d_same(&pt, &p2);
2967  break; /* we want to check a single non-equal next vertex */
2968  }
2969  }
2970 #if POSTGIS_DEBUG_LEVEL > 0
2971  if ( match ) {
2972  LWDEBUGF(1, "Prev point of edge %" LWTFMT_ELEMID
2973  " matches ring vertex %d", isoe->edge_id, from+1);
2974  } else {
2975  LWDEBUGF(1, "Prev point of edge %" LWTFMT_ELEMID
2976  " does not match ring vertex %d", isoe->edge_id, from+1);
2977  }
2978 #endif
2979  }
2980 
2981  if ( match ) return i;
2982 
2983  }
2984 
2985  return -1;
2986 }
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:330
#define WKT_EXTENDED
Definition: liblwgeom.h:2077
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition: lwgeom_api.c:348
char * lwgeom_to_wkt(const LWGEOM *geom, uint8_t variant, int precision, size_t *size_out)
WKT emitter function.
Definition: lwout_wkt.c:676
int p2d_same(const POINT2D *p1, const POINT2D *p2)
Definition: lwalgorithm.c:49
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
#define LWTFMT_ELEMID
Definition: lwgeom_topo.c:44
POINTARRAY * points
Definition: liblwgeom.h:425
LWT_ELEMID face_right
LWT_ELEMID face_left
LWLINE * geom
LWT_ELEMID edge_id
double y
Definition: liblwgeom.h:331
double x
Definition: liblwgeom.h:331
uint32_t npoints
Definition: liblwgeom.h:374
unsigned int uint32_t
Definition: uthash.h:78

References LWT_ISO_EDGE::edge_id, LWT_ISO_EDGE::face_left, LWT_ISO_EDGE::face_right, LWT_ISO_EDGE::geom, getPoint2d_p(), LWDEBUG, LWDEBUGF, lwgeom_to_wkt(), lwline_as_lwgeom(), LWTFMT_ELEMID, POINTARRAY::npoints, p2d_same(), LWLINE::points, WKT_EXTENDED, POINT2D::x, and POINT2D::y.

Referenced by lwt_GetFaceEdges().

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