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

◆ lwgeom_normalize()

LWGEOM * lwgeom_normalize ( const LWGEOM geom)

Definition at line 661 of file liblwgeom/lwgeom_geos.c.

662{
663 LWGEOM* result;
664 int32_t srid = RESULT_SRID(geom);
665 uint8_t is3d = FLAGS_GET_Z(geom->flags);
666 GEOSGeometry* g;
667
668 if (srid == SRID_INVALID) return NULL;
669
670 initGEOS(lwnotice, lwgeom_geos_error);
671
672 if (!(g = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
673
674 if (GEOSNormalize(g) == -1) GEOS_FREE_AND_FAIL(g);
675 GEOSSetSRID(g, srid);
676
677 if (!(result = GEOS2LWGEOM(g, is3d))) GEOS_FREE_AND_FAIL(g);
678
679 GEOSGeom_destroy(g);
680 return result;
681}
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition cu_print.c:267
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
#define GEOS_FREE_AND_FAIL(...)
void lwgeom_geos_error(const char *fmt,...)
void(*) LWGEOM GEOS2LWGEOM)(const GEOSGeometry *geom, uint8_t want3d)
#define SRID_INVALID
Definition liblwgeom.h:219
#define FLAGS_GET_Z(flags)
Definition liblwgeom.h:165
void lwnotice(const char *fmt,...) __attribute__((format(printf
Write a notice out to the notice handler.
lwflags_t flags
Definition liblwgeom.h:461

References AUTOFIX, LWGEOM::flags, FLAGS_GET_Z, GEOS_FAIL, GEOS_FREE_AND_FAIL, LWGEOM2GEOS(), lwgeom_geos_error(), lwnotice(), result, RESULT_SRID, and SRID_INVALID.

Referenced by ST_Normalize(), test_geos_makevalid(), test_lwgeom_delaunay_triangulation(), test_lwgeom_remove_repeated_points(), test_lwgeom_split(), and test_lwgeom_wrapx().

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