PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ POSTGIS2GEOS()

GEOSGeometry* POSTGIS2GEOS ( GSERIALIZED pglwgeom)

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

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

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

2955 {
2956  GEOSGeometry *ret;
2957  LWGEOM *lwgeom = lwgeom_from_gserialized(pglwgeom);
2958  if ( ! lwgeom )
2959  {
2960  lwpgerror("POSTGIS2GEOS: unable to deserialize input");
2961  return NULL;
2962  }
2963  ret = LWGEOM2GEOS(lwgeom, 0);
2964  lwgeom_free(lwgeom);
2965  if ( ! ret )
2966  {
2967  /* lwpgerror("POSTGIS2GEOS conversion failed"); */
2968  return NULL;
2969  }
2970  return ret;
2971 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, int autofix)
Here is the call graph for this function:
Here is the caller graph for this function: