PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ _lwt_CheckFacesExist()

static int _lwt_CheckFacesExist ( LWT_TOPOLOGY topo)
static

Definition at line 6758 of file lwgeom_topo.c.

6759{
6760 LWT_ISO_FACE *faces;
6761 int fields = LWT_COL_FACE_FACE_ID;
6762 uint64_t nelems = 1;
6763 GBOX qbox;
6764
6765 qbox.xmin = qbox.ymin = -DBL_MAX;
6766 qbox.xmax = qbox.ymax = DBL_MAX;
6767 faces = lwt_be_getFaceWithinBox2D( topo, &qbox, &nelems, fields, 1);
6768 if (nelems == UINT64_MAX)
6769 {
6770 lwerror("Backend error: %s", lwt_be_lastErrorMessage(topo->be_iface));
6771 return -1;
6772 }
6773 if ( faces ) _lwt_release_faces(faces, nelems);
6774 return nelems;
6775}
#define LWT_COL_FACE_FACE_ID
Face fields.
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition lwutil.c:190
static LWT_ISO_FACE * lwt_be_getFaceWithinBox2D(const LWT_TOPOLOGY *topo, const GBOX *box, uint64_t *numelems, int fields, uint64_t limit)
static void _lwt_release_faces(LWT_ISO_FACE *faces, int num_faces)
const char * lwt_be_lastErrorMessage(const LWT_BE_IFACE *be)
double ymax
Definition liblwgeom.h:343
double xmax
Definition liblwgeom.h:341
double ymin
Definition liblwgeom.h:342
double xmin
Definition liblwgeom.h:340
const LWT_BE_IFACE * be_iface

References _lwt_release_faces(), LWT_TOPOLOGY_T::be_iface, lwerror(), lwt_be_getFaceWithinBox2D(), lwt_be_lastErrorMessage(), LWT_COL_FACE_FACE_ID, GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Referenced by lwt_Polygonize().

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