PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ lwgeom_geos_noop()

LWGEOM* lwgeom_geos_noop ( const LWGEOM geom)

Convert an LWGEOM to a GEOS Geometry and convert back – for debug only.

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

1189 {
1190  LWGEOM* result;
1191  int32_t srid = RESULT_SRID(geom);
1192  uint8_t is3d = FLAGS_GET_Z(geom->flags);
1193  GEOSGeometry* g;
1194 
1195  if (srid == SRID_INVALID) return NULL;
1196 
1197  initGEOS(lwnotice, lwgeom_geos_error);
1198 
1199  if (!(g = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
1200 
1201  if (!g) GEOS_FREE_AND_FAIL(g);
1202  GEOSSetSRID(g, srid);
1203 
1204  if (!(result = GEOS2LWGEOM(g, is3d)))
1205  GEOS_FREE_AND_FAIL(g);
1206 
1207  GEOS_FREE(g);
1208 
1209  return result;
1210 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:267
#define GEOS_FREE(...)
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
#define GEOS_FREE_AND_FAIL(...)
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, uint8_t want3d)
void lwgeom_geos_error(const char *fmt,...)
#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, GEOS2LWGEOM(), GEOS_FAIL, GEOS_FREE, GEOS_FREE_AND_FAIL, LWGEOM2GEOS(), lwgeom_geos_error(), lwnotice(), result, RESULT_SRID, and SRID_INVALID.

Referenced by test_geos_noop().

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