PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwgeom_snap()

LWGEOM* lwgeom_snap ( const LWGEOM geom1,
const LWGEOM geom2,
double  tolerance 
)

Snap vertices and segments of a geometry to another using a given tolerance.

Parameters
geom1the geometry to snap
geom2the geometry to snap to
tolerancethe distance under which vertices and segments are snapped

Requires GEOS-3.3.0+

Definition at line 1529 of file liblwgeom/lwgeom_geos.c.

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

Referenced by _lwt_toposnap(), and ST_Snap().

1530 {
1531  int srid, is3d;
1532  GEOSGeometry *g1, *g2, *g3;
1533  LWGEOM* out;
1534 
1535  srid = geom1->srid;
1536  error_if_srid_mismatch(srid, (int)(geom2->srid));
1537 
1538  is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags)) ;
1539 
1540  initGEOS(lwnotice, lwgeom_geos_error);
1541 
1542  g1 = (GEOSGeometry *)LWGEOM2GEOS(geom1, 0);
1543  if ( 0 == g1 ) /* exception thrown at construction */
1544  {
1545  lwerror("First argument geometry could not be converted to GEOS: %s", lwgeom_geos_errmsg);
1546  return NULL;
1547  }
1548 
1549  g2 = (GEOSGeometry *)LWGEOM2GEOS(geom2, 0);
1550  if ( 0 == g2 ) /* exception thrown at construction */
1551  {
1552  lwerror("Second argument geometry could not be converted to GEOS: %s", lwgeom_geos_errmsg);
1553  GEOSGeom_destroy(g1);
1554  return NULL;
1555  }
1556 
1557  g3 = GEOSSnap(g1, g2, tolerance);
1558  if (g3 == NULL)
1559  {
1560  GEOSGeom_destroy(g1);
1561  GEOSGeom_destroy(g2);
1562  lwerror("GEOSSnap: %s", lwgeom_geos_errmsg);
1563  return NULL;
1564  }
1565 
1566  GEOSGeom_destroy(g1);
1567  GEOSGeom_destroy(g2);
1568 
1569  GEOSSetSRID(g3, srid);
1570  out = GEOS2LWGEOM(g3, is3d);
1571  if (out == NULL)
1572  {
1573  GEOSGeom_destroy(g3);
1574  lwerror("GEOSSnap() threw an error (result LWGEOM geometry formation)!");
1575  return NULL;
1576  }
1577  GEOSGeom_destroy(g3);
1578 
1579  return out;
1580 }
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
uint8_t flags
Definition: liblwgeom.h:397
char lwgeom_geos_errmsg[LWGEOM_GEOS_ERRMSG_MAXSIZE]
void error_if_srid_mismatch(int srid1, int srid2)
Definition: lwutil.c:371
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)
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: