PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwgeom_make_valid()

LWGEOM* lwgeom_make_valid ( LWGEOM geom)

Attempts to make an invalid geometries valid w/out losing points.

NOTE: this is only available when liblwgeom is built against GEOS 3.3.0 or higher

Definition at line 982 of file liblwgeom/lwgeom_geos_clean.c.

References LWGEOM::bbox, LWGEOM::flags, FLAGS_GET_Z, GEOS2LWGEOM(), lwalloc(), lwcollection_construct(), LWDEBUG, LWDEBUGF, lwerror(), LWGEOM2GEOS(), lwgeom_geos_errmsg, lwgeom_geos_error(), LWGEOM_GEOS_makeValid(), lwgeom_is_collection(), lwgeom_make_geos_friendly(), MULTITYPE, LWGEOM::srid, and LWGEOM::type.

Referenced by _lwt_AddLineEdge(), _lwt_EdgeMotionArea(), lwgeom_clean(), mvt_geom(), rt_raster_gdal_polygonize(), rt_raster_surface(), ST_MakeValid(), and test_lwgeom_make_valid().

983 {
984  int is3d;
985  GEOSGeom geosgeom;
986  GEOSGeometry* geosout;
987  LWGEOM *lwgeom_out;
988 
989  is3d = FLAGS_GET_Z(lwgeom_in->flags);
990 
991  /*
992  * Step 1 : try to convert to GEOS, if impossible, clean that up first
993  * otherwise (adding only duplicates of existing points)
994  */
995 
997 
998  lwgeom_out = lwgeom_in;
999  geosgeom = LWGEOM2GEOS(lwgeom_out, 0);
1000  if ( ! geosgeom )
1001  {
1002  LWDEBUGF(4,
1003  "Original geom can't be converted to GEOS (%s)"
1004  " - will try cleaning that up first",
1006 
1007 
1008  lwgeom_out = lwgeom_make_geos_friendly(lwgeom_out);
1009  if ( ! lwgeom_out )
1010  {
1011  lwerror("Could not make a valid geometry out of input");
1012  }
1013 
1014  /* try again as we did cleanup now */
1015  /* TODO: invoke LWGEOM2GEOS directly with autoclean ? */
1016  geosgeom = LWGEOM2GEOS(lwgeom_out, 0);
1017  if ( ! geosgeom )
1018  {
1019  lwerror("Couldn't convert POSTGIS geom to GEOS: %s",
1021  return NULL;
1022  }
1023 
1024  }
1025  else
1026  {
1027  LWDEBUG(4, "original geom converted to GEOS");
1028  lwgeom_out = lwgeom_in;
1029  }
1030 
1031  geosout = LWGEOM_GEOS_makeValid(geosgeom);
1032  GEOSGeom_destroy(geosgeom);
1033  if ( ! geosout )
1034  {
1035  return NULL;
1036  }
1037 
1038  lwgeom_out = GEOS2LWGEOM(geosout, is3d);
1039  GEOSGeom_destroy(geosout);
1040 
1041  if ( lwgeom_is_collection(lwgeom_in) && ! lwgeom_is_collection(lwgeom_out) )
1042  {{
1043  LWGEOM **ogeoms = lwalloc(sizeof(LWGEOM*));
1044  LWGEOM *ogeom;
1045  LWDEBUG(3, "lwgeom_make_valid: forcing multi");
1046  /* NOTE: this is safe because lwgeom_out is surely not lwgeom_in or
1047  * otherwise we couldn't have a collection and a non-collection */
1048  assert(lwgeom_in != lwgeom_out);
1049  ogeoms[0] = lwgeom_out;
1050  ogeom = (LWGEOM *)lwcollection_construct(MULTITYPE[lwgeom_out->type],
1051  lwgeom_out->srid, lwgeom_out->bbox, 1, ogeoms);
1052  lwgeom_out->bbox = NULL;
1053  lwgeom_out = ogeom;
1054  }}
1055 
1056  lwgeom_out->srid = lwgeom_in->srid;
1057  return lwgeom_out;
1058 }
GBOX * bbox
Definition: liblwgeom.h:398
int lwgeom_is_collection(const LWGEOM *lwgeom)
Determine whether a LWGEOM can contain sub-geometries or not.
Definition: lwgeom.c:1040
static LWGEOM * lwgeom_make_geos_friendly(LWGEOM *geom)
LWCOLLECTION * lwcollection_construct(uint8_t type, int srid, GBOX *bbox, uint32_t ngeoms, LWGEOM **geoms)
Definition: lwcollection.c:43
char lwgeom_geos_errmsg[LWGEOM_GEOS_ERRMSG_MAXSIZE]
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
static GEOSGeometry * LWGEOM_GEOS_makeValid(const GEOSGeometry *)
int32_t srid
Definition: liblwgeom.h:399
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)
uint8_t MULTITYPE[NUMTYPES]
Look-up for the correct MULTI* type promotion for singleton types.
Definition: lwgeom.c:313
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, char want3d)
uint8_t type
Definition: liblwgeom.h:396
void * lwalloc(size_t size)
Definition: lwutil.c:229
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
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: