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

◆ lwgeom_reduceprecision()

LWGEOM * lwgeom_reduceprecision ( const LWGEOM geom,
double  gridSize 
)

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

971{
972#if POSTGIS_GEOS_VERSION < 30900
973 lwgeom_geos_error_minversion("Precision reduction", "3.9");
974 return NULL;
975#else
976
977 LWGEOM* result;
978 int32_t srid = RESULT_SRID(geom);
979 uint8_t is3d = FLAGS_GET_Z(geom->flags);
980 GEOSGeometry *g1, *g3;
981
982 if (srid == SRID_INVALID) return NULL;
983
984 if (lwgeom_is_empty(geom))
985 return lwgeom_clone_deep(geom);
986
987 initGEOS(lwnotice, lwgeom_geos_error);
988
989 if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
990
991 g3 = GEOSGeom_setPrecision(g1, gridSize, 0);
992
993 if (!g3) GEOS_FREE_AND_FAIL(g1);
994 GEOSSetSRID(g3, srid);
995
996 if (!(result = GEOS2LWGEOM(g3, is3d)))
998
999 GEOS_FREE(g1, g3);
1000
1001 return result;
1002#endif
1003}
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition cu_print.c:267
#define GEOS_FREE(...)
void lwgeom_geos_error_minversion(const char *functionality, const char *minver)
#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
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition lwgeom.c:557
void lwnotice(const char *fmt,...) __attribute__((format(printf
Write a notice out to the notice handler.
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition lwinline.h:199
lwflags_t flags
Definition liblwgeom.h:461

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

Referenced by ST_ReducePrecision().

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