PostGIS  3.1.6dev-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 2918 of file lwgeom_topo.c.

2920 {
2921  int i;
2922  POINT2D p1;
2923 
2924  /* Get starting ring point */
2925  getPoint2d_p(ring, from, &p1);
2926 
2927  LWDEBUGF(1, "Ring's 'from' point (%d) is %g,%g", from, p1.x, p1.y);
2928 
2929  /* find the edges defining the next portion of ring starting from
2930  * vertex "from" */
2931  for ( i=0; i<numedges; ++i )
2932  {
2933  const LWT_ISO_EDGE *isoe = &(edges[i]);
2934  LWLINE *edge = isoe->geom;
2935  POINTARRAY *epa = edge->points;
2936  POINT2D p2, pt;
2937  int match = 0;
2938  uint32_t j;
2939 
2940  /* Skip if the edge is a dangling one */
2941  if ( isoe->face_left == isoe->face_right )
2942  {
2943  LWDEBUGF(3, "_lwt_FindNextRingEdge: edge %" LWTFMT_ELEMID
2944  " has same face (%" LWTFMT_ELEMID
2945  ") on both sides, skipping",
2946  isoe->edge_id, isoe->face_left);
2947  continue;
2948  }
2949 
2950  if (epa->npoints < 2)
2951  {
2952  LWDEBUGF(3, "_lwt_FindNextRingEdge: edge %" LWTFMT_ELEMID
2953  " has only %"PRIu32" points",
2954  isoe->edge_id, epa->npoints);
2955  continue;
2956  }
2957 
2958 #if 0
2959  size_t sz;
2960  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " is %s",
2961  isoe->edge_id,
2962  lwgeom_to_wkt(lwline_as_lwgeom(edge), WKT_EXTENDED, 2, &sz));
2963 #endif
2964 
2965  /* ptarray_remove_repeated_points ? */
2966 
2967  getPoint2d_p(epa, 0, &p2);
2968  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " 'first' point is %g,%g",
2969  isoe->edge_id, p2.x, p2.y);
2970  LWDEBUGF(1, "Rings's 'from' point is still %g,%g", p1.x, p1.y);
2971  if ( p2d_same(&p1, &p2) )
2972  {
2973  LWDEBUG(1, "p2d_same(p1,p2) returned true");
2974  LWDEBUGF(1, "First point of edge %" LWTFMT_ELEMID
2975  " matches ring vertex %d", isoe->edge_id, from);
2976  /* first point matches, let's check next non-equal one */
2977  for ( j=1; j<epa->npoints; ++j )
2978  {
2979  getPoint2d_p(epa, j, &p2);
2980  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " 'next' point %d is %g,%g",
2981  isoe->edge_id, j, p2.x, p2.y);
2982  /* we won't check duplicated edge points */
2983  if ( p2d_same(&p1, &p2) ) continue;
2984  /* we assume there are no duplicated points in ring */
2985  getPoint2d_p(ring, from+1, &pt);
2986  LWDEBUGF(1, "Ring's point %d is %g,%g",
2987  from+1, pt.x, pt.y);
2988  match = p2d_same(&pt, &p2);
2989  break; /* we want to check a single non-equal next vertex */
2990  }
2991 #if POSTGIS_DEBUG_LEVEL > 0
2992  if ( match ) {
2993  LWDEBUGF(1, "Prev point of edge %" LWTFMT_ELEMID
2994  " matches ring vertex %d", isoe->edge_id, from+1);
2995  } else {
2996  LWDEBUGF(1, "Prev point of edge %" LWTFMT_ELEMID
2997  " does not match ring vertex %d", isoe->edge_id, from+1);
2998  }
2999 #endif
3000  }
3001 
3002  if ( ! match )
3003  {
3004  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " did not match as forward",
3005  isoe->edge_id);
3006  getPoint2d_p(epa, epa->npoints-1, &p2);
3007  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " 'last' point is %g,%g",
3008  isoe->edge_id, p2.x, p2.y);
3009  if ( p2d_same(&p1, &p2) )
3010  {
3011  LWDEBUGF(1, "Last point of edge %" LWTFMT_ELEMID
3012  " matches ring vertex %d", isoe->edge_id, from);
3013  /* last point matches, let's check next non-equal one */
3014  for ( j=2; j<=epa->npoints; j++ )
3015  {
3016  getPoint2d_p(epa, epa->npoints - j, &p2);
3017  LWDEBUGF(1, "Edge %" LWTFMT_ELEMID " 'prev' point %d is %g,%g",
3018  isoe->edge_id, epa->npoints - j, p2.x, p2.y);
3019  /* we won't check duplicated edge points */
3020  if ( p2d_same(&p1, &p2) ) continue;
3021  /* we assume there are no duplicated points in ring */
3022  getPoint2d_p(ring, from+1, &pt);
3023  LWDEBUGF(1, "Ring's point %d is %g,%g",
3024  from+1, pt.x, pt.y);
3025  match = p2d_same(&pt, &p2);
3026  break; /* we want to check a single non-equal next vertex */
3027  }
3028  }
3029 #if POSTGIS_DEBUG_LEVEL > 0
3030  if ( match ) {
3031  LWDEBUGF(1, "Prev point of edge %" LWTFMT_ELEMID
3032  " matches ring vertex %d", isoe->edge_id, from+1);
3033  } else {
3034  LWDEBUGF(1, "Prev point of edge %" LWTFMT_ELEMID
3035  " does not match ring vertex %d", isoe->edge_id, from+1);
3036  }
3037 #endif
3038  }
3039 
3040  if ( match ) return i;
3041 
3042  }
3043 
3044  return -1;
3045 }
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:322
#define WKT_EXTENDED
Definition: liblwgeom.h:2157
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition: lwgeom_api.c:343
char * lwgeom_to_wkt(const LWGEOM *geom, uint8_t variant, int precision, size_t *size_out)
WKT emitter function.
Definition: lwout_wkt.c:704
int p2d_same(const POINT2D *p1, const POINT2D *p2)
Definition: lwalgorithm.c:50
#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:43
POINTARRAY * points
Definition: liblwgeom.h:497
LWT_ELEMID face_right
LWT_ELEMID face_left
LWLINE * geom
LWT_ELEMID edge_id
double y
Definition: liblwgeom.h:404
double x
Definition: liblwgeom.h:404
uint32_t npoints
Definition: liblwgeom.h:441

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: