PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_sharedpaths()

LWGEOM* lwgeom_sharedpaths ( const LWGEOM geom1,
const LWGEOM geom2 
)

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

1324 {
1325  LWGEOM* result;
1326  int32_t srid = RESULT_SRID(geom1, geom2);
1327  uint8_t is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags));
1328  GEOSGeometry *g1, *g2, *g3;
1329 
1330  if (srid == SRID_INVALID) return NULL;
1331 
1332  initGEOS(lwnotice, lwgeom_geos_error);
1333 
1334  if (!(g1 = LWGEOM2GEOS(geom1, AUTOFIX))) GEOS_FAIL();
1335  if (!(g2 = LWGEOM2GEOS(geom2, AUTOFIX))) GEOS_FREE_AND_FAIL(g1);
1336 
1337  g3 = GEOSSharedPaths(g1, g2);
1338 
1339  if (!g3) GEOS_FREE_AND_FAIL(g1, g2);
1340  GEOSSetSRID(g3, srid);
1341 
1342  if (!(result = GEOS2LWGEOM(g3, is3d)))
1343  GEOS_FREE_AND_FAIL(g1, g2, g3);
1344 
1345  GEOS_FREE(g1, g2, g3);
1346  return result;
1347 }
#define GEOS_FREE(...)
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
#define GEOS_FREE_AND_FAIL(...)
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, uint8_t want3d)
void lwgeom_geos_error(const char *fmt,...)
#define SRID_INVALID
Definition: liblwgeom.h:192
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
uint8_t flags
Definition: liblwgeom.h:400
unsigned char uint8_t
Definition: uthash.h:79

References AUTOFIX, LWGEOM::flags, FLAGS_GET_Z, GEOS2LWGEOM(), GEOS_FAIL, GEOS_FREE, GEOS_FREE_AND_FAIL, LWGEOM2GEOS(), lwgeom_geos_error(), lwnotice(), RESULT_SRID, and SRID_INVALID.

Referenced by ST_SharedPaths().

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