25 #include "../postgis_config.h"
79 lwerror(
"lwgeom_collect_endpoints: invalid type %s",
113 gepu = GEOSUnaryUnion(gepall);
115 GEOSGeom_destroy(gepall);
119 GEOSGeom_destroy(gepall);
122 GEOSGeom_destroy(gepu);
124 lwerror(
"Error during GEOS2LWGEOM");
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 lwmpoint_free(LWMPOINT *mpt)
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)
const LWGEOM * lwcollection_getsubgeom(LWCOLLECTION *col, uint32_t gnum)
LWMPOINT * lwmpoint_add_lwpoint(LWMPOINT *mobj, const LWPOINT *obj)
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 ...
LWMPOINT * lwmpoint_construct_empty(int32_t srid, char hasz, char hasm)
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int32_t srid, char hasz, char hasm)
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
#define FLAGS_GET_M(flags)
void lwcollection_free(LWCOLLECTION *col)
LWCOLLECTION * lwgeom_as_lwcollection(const LWGEOM *lwgeom)
#define SRID_UNKNOWN
Unknown SRID value.
LWPOINT * lwline_get_lwpoint(const LWLINE *line, uint32_t where)
Returns freshly allocated LWPOINT that corresponds to the index where.
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 LWMPOINT * lwgeom_extract_endpoints(const LWGEOM *lwg)
static const LWGEOM * lwgeom_subgeom(const LWGEOM *g, int n)
LWGEOM * lwgeom_node(const LWGEOM *lwgeom_in)
static int lwgeom_ngeoms(const LWGEOM *n)
static void lwgeom_collect_endpoints(const LWGEOM *lwg, LWMPOINT *col)
void void lwerror(const char *fmt,...) __attribute__((format(printf
Write a notice out to the error handler.