136 GEOSGeometry *g1, *gn, *gm;
142 lwerror(
"Noding geometries of dimension != 1 is unsupported");
155 GEOSGeom_destroy(g1);
156 lwerror(
"Error extracting unique endpoints from input");
161 GEOSGeom_destroy(g1);
169 nl = GEOSGetNumGeometries(gn);
172 gm = GEOSLineMerge(gn);
173 GEOSGeom_destroy(gn);
183 GEOSGeom_destroy(gn);
186 lwerror(
"Error during GEOS2LWGEOM");
192 const GEOSGeometry *gc = GEOSGetGeometryN(gn, 0);
194 GEOSGeom_destroy(gn);
197 lwerror(
"Error during GEOS2LWGEOM");
205 GEOSGeom_destroy(gn);
208 lwerror(
"Error during GEOS2LWGEOM");
230 for (pn=0; pn<np; ++pn) {
235 for (ln=0; ln<nl; ++ln) {
char lwgeom_geos_errmsg[LWGEOM_GEOS_ERRMSG_MAXSIZE]
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
void lwgeom_geos_error(const char *fmt,...)
void(*) LWGEOM GEOS2LWGEOM)(const GEOSGeometry *geom, uint8_t want3d)
#define LWDEBUGGEOS(level, geom, msg)
void lwgeom_set_srid(LWGEOM *geom, int32_t srid)
Set the SRID on an LWGEOM For collections, only the parent gets an SRID, all the children get SRID_UN...
void lwgeom_free(LWGEOM *geom)
#define FLAGS_GET_Z(flags)
int lwgeom_dimension(const LWGEOM *geom)
For an LWGEOM, returns 0 for points, 1 for lines, 2 for polygons, 3 for volume, and the max dimension...
int lwgeom_is_collection(const LWGEOM *lwgeom)
Determine whether a LWGEOM contains sub-geometries or not This basically just checks that the struct ...
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int32_t srid, char hasz, char hasm)
#define FLAGS_GET_M(flags)
void lwcollection_free(LWCOLLECTION *col)
int lwline_split_by_point_to(const LWLINE *ln, const LWPOINT *pt, LWMLINE *to)
Split a line by a point and push components to the provided multiline.
LWCOLLECTION * lwcollection_clone_deep(const LWCOLLECTION *lwgeom)
Deep clone LWCOLLECTION object.
void lwcollection_reserve(LWCOLLECTION *col, uint32_t ngeoms)
Ensure the collection can hold at least up to ngeoms geometries.
static LWGEOM * lwgeom_extract_unique_endpoints(const LWGEOM *lwg)
static const LWGEOM * lwgeom_subgeom(const LWGEOM *g, int n)
static int lwgeom_ngeoms(const LWGEOM *n)
void void lwerror(const char *fmt,...) __attribute__((format(printf
Write a notice out to the error handler.