PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ _lwt_FaceByEdges()

static LWGEOM* _lwt_FaceByEdges ( LWT_TOPOLOGY topo,
LWT_ISO_EDGE edges,
int  numfaceedges 
)
static

Definition at line 2739 of file lwgeom_topo.c.

2740 {
2741  LWGEOM *outg;
2742  LWCOLLECTION *bounds;
2743  LWGEOM **geoms = lwalloc( sizeof(LWGEOM*) * numfaceedges );
2744  int i, validedges = 0;
2745 
2746  for ( i=0; i<numfaceedges; ++i )
2747  {
2748  /* NOTE: skipping edges with same face on both sides, although
2749  * correct, results in a failure to build faces from
2750  * invalid topologies as expected by legacy tests.
2751  * TODO: update legacy tests expectances/unleash this skipping ?
2752  */
2753  /* if ( edges[i].face_left == edges[i].face_right ) continue; */
2754  geoms[validedges++] = lwline_as_lwgeom(edges[i].geom);
2755  }
2756  if ( ! validedges )
2757  {
2758  /* Face has no valid boundary edges, we'll return EMPTY, see
2759  * https://trac.osgeo.org/postgis/ticket/3221 */
2760  if ( numfaceedges ) lwfree(geoms);
2761  LWDEBUG(1, "_lwt_FaceByEdges returning empty polygon");
2762  return lwpoly_as_lwgeom(
2763  lwpoly_construct_empty(topo->srid, topo->hasZ, 0)
2764  );
2765  }
2767  topo->srid,
2768  NULL, /* gbox */
2769  validedges,
2770  geoms);
2771  outg = lwgeom_buildarea( lwcollection_as_lwgeom(bounds) );
2772  lwcollection_release(bounds);
2773  lwfree(geoms);
2774 #if 0
2775  {
2776  size_t sz;
2777  char *wkt = lwgeom_to_wkt(outg, WKT_EXTENDED, 2, &sz);
2778  LWDEBUGF(1, "_lwt_FaceByEdges returning area: %s", wkt);
2779  lwfree(wkt);
2780  }
2781 #endif
2782  return outg;
2783 }
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:330
LWGEOM * lwcollection_as_lwgeom(const LWCOLLECTION *obj)
Definition: lwgeom.c:300
#define MULTILINETYPE
Definition: liblwgeom.h:89
#define WKT_EXTENDED
Definition: liblwgeom.h:2077
LWGEOM * lwpoly_as_lwgeom(const LWPOLY *obj)
Definition: lwgeom.c:320
void lwfree(void *mem)
Definition: lwutil.c:244
LWGEOM * lwgeom_buildarea(const LWGEOM *geom)
Take a geometry and return an areal geometry (Polygon or MultiPolygon).
void lwcollection_release(LWCOLLECTION *lwcollection)
Definition: lwcollection.c:36
char * lwgeom_to_wkt(const LWGEOM *geom, uint8_t variant, int precision, size_t *size_out)
WKT emitter function.
Definition: lwout_wkt.c:676
LWCOLLECTION * lwcollection_construct(uint8_t type, int srid, GBOX *bbox, uint32_t ngeoms, LWGEOM **geoms)
Definition: lwcollection.c:43
void * lwalloc(size_t size)
Definition: lwutil.c:229
LWPOLY * lwpoly_construct_empty(int srid, char hasz, char hasm)
Definition: lwpoly.c:161
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88

References LWT_TOPOLOGY_T::hasZ, lwalloc(), lwcollection_as_lwgeom(), lwcollection_construct(), lwcollection_release(), LWDEBUG, LWDEBUGF, lwfree(), lwgeom_buildarea(), lwgeom_to_wkt(), lwline_as_lwgeom(), lwpoly_as_lwgeom(), lwpoly_construct_empty(), MULTILINETYPE, LWT_TOPOLOGY_T::srid, and WKT_EXTENDED.

Referenced by lwt_GetFaceEdges(), and lwt_GetFaceGeometry().

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