PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ POSTGIS2GEOS()

GEOSGeometry* POSTGIS2GEOS ( GSERIALIZED pglwgeom)

Definition at line 2655 of file postgis/lwgeom_geos.c.

2656 {
2657  GEOSGeometry *ret;
2658  LWGEOM *lwgeom = lwgeom_from_gserialized(pglwgeom);
2659  if ( ! lwgeom )
2660  {
2661  lwpgerror("POSTGIS2GEOS: unable to deserialize input");
2662  return NULL;
2663  }
2664  ret = LWGEOM2GEOS(lwgeom, 0);
2665  lwgeom_free(lwgeom);
2666 
2667  return ret;
2668 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144

References LWGEOM2GEOS(), lwgeom_free(), and lwgeom_from_gserialized().

Referenced by ARRAY2GEOS(), buffer(), contains(), containsproperly(), convexhull(), coveredby(), covers(), crosses(), disjoint(), geos_intersects(), GEOSnoop(), hausdorffdistance(), hausdorffdistancedensify(), isring(), isvaliddetail(), isvalidreason(), overlaps(), pgis_union_geometry_array(), relate_full(), relate_pattern(), ST_Equals(), ST_FrechetDistance(), ST_MinimumClearance(), ST_MinimumClearanceLine(), ST_OrientedEnvelope(), topologypreservesimplify(), and touches().

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