PostGIS  2.4.9dev-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 1504 of file liblwgeom/lwgeom_geos.c.

References LWGEOM::flags, FLAGS_GET_Z, GEOS2LWGEOM(), lwerror(), LWGEOM2GEOS(), lwgeom_geos_errmsg, lwgeom_geos_error(), and lwnotice().

Referenced by test_geos_noop().

1505 {
1506  GEOSGeometry *geosgeom;
1507  LWGEOM* geom_out;
1508 
1509  int is3d = FLAGS_GET_Z(geom_in->flags);
1510 
1511  initGEOS(lwnotice, lwgeom_geos_error);
1512  geosgeom = LWGEOM2GEOS(geom_in, 0);
1513  if ( ! geosgeom ) {
1514  lwerror("Geometry could not be converted to GEOS: %s",
1516  return NULL;
1517  }
1518  geom_out = GEOS2LWGEOM(geosgeom, is3d);
1519  GEOSGeom_destroy(geosgeom);
1520  if ( ! geom_out ) {
1521  lwerror("GEOS Geometry could not be converted to LWGEOM: %s",
1523  }
1524  return geom_out;
1525 
1526 }
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
char lwgeom_geos_errmsg[LWGEOM_GEOS_ERRMSG_MAXSIZE]
void lwgeom_geos_error(const char *fmt,...)
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, int autofix)
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, char want3d)
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
Here is the call graph for this function:
Here is the caller graph for this function: