PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ topologypreservesimplify()

Datum topologypreservesimplify ( PG_FUNCTION_ARGS  )

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

References buffer(), GEOS2POSTGIS(), gserialized_get_srid(), gserialized_has_z(), gserialized_is_empty(), HANDLE_GEOS_ERROR, lwgeom_geos_error(), PG_FUNCTION_INFO_V1(), and POSTGIS2GEOS().

Referenced by convexhull().

800 {
801  GSERIALIZED *geom1;
802  double tolerance;
803  GEOSGeometry *g1, *g3;
804  GSERIALIZED *result;
805 
806  geom1 = PG_GETARG_GSERIALIZED_P(0);
807  tolerance = PG_GETARG_FLOAT8(1);
808 
809  /* Empty.Simplify() == Empty */
810  if ( gserialized_is_empty(geom1) )
811  PG_RETURN_POINTER(geom1);
812 
813  initGEOS(lwpgnotice, lwgeom_geos_error);
814 
815  g1 = (GEOSGeometry *)POSTGIS2GEOS(geom1);
816  if ( 0 == g1 ) /* exception thrown at construction */
817  {
818  HANDLE_GEOS_ERROR("First argument geometry could not be converted to GEOS");
819  PG_RETURN_NULL();
820  }
821 
822  g3 = GEOSTopologyPreserveSimplify(g1,tolerance);
823  GEOSGeom_destroy(g1);
824 
825  if (g3 == NULL)
826  {
827  HANDLE_GEOS_ERROR("GEOSTopologyPreserveSimplify");
828  PG_RETURN_NULL(); /* never get here */
829  }
830 
831  POSTGIS_DEBUGF(3, "result: %s", GEOSGeomToWKT(g3));
832 
833  GEOSSetSRID(g3, gserialized_get_srid(geom1));
834 
835  result = GEOS2POSTGIS(g3, gserialized_has_z(geom1));
836  GEOSGeom_destroy(g3);
837 
838  if (result == NULL)
839  {
840  elog(ERROR,"GEOS topologypreservesimplify() threw an error (result postgis geometry formation)!");
841  PG_RETURN_NULL(); /* never get here */
842  }
843 
844  PG_FREE_IF_COPY(geom1, 0);
845  PG_RETURN_POINTER(result);
846 }
int gserialized_has_z(const GSERIALIZED *gser)
Check if a GSERIALIZED has a Z ordinate.
Definition: g_serialized.c:45
int gserialized_is_empty(const GSERIALIZED *g)
Check if a GSERIALIZED is empty without deserializing first.
Definition: g_serialized.c:179
void lwgeom_geos_error(const char *fmt,...)
GEOSGeometry * POSTGIS2GEOS(GSERIALIZED *pglwgeom)
GSERIALIZED * GEOS2POSTGIS(GEOSGeom geom, char want3d)
#define HANDLE_GEOS_ERROR(label)
int32_t gserialized_get_srid(const GSERIALIZED *s)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
Definition: g_serialized.c:100
Here is the call graph for this function:
Here is the caller graph for this function: