PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ lwgeom_linemerge_directed()

LWGEOM* lwgeom_linemerge_directed ( const LWGEOM geom,
int  directed 
)

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

758 {
759  LWGEOM* result;
760  int32_t srid = RESULT_SRID(geom);
761  uint8_t is3d = FLAGS_GET_Z(geom->flags);
762  GEOSGeometry* g1;
763  GEOSGeometry* g3;
764 
765  if (srid == SRID_INVALID) return NULL;
766 
767  /* Empty.Linemerge() == Empty */
768  if (lwgeom_is_empty(geom)) return lwgeom_clone_deep(geom); /* match empty type to linestring? */
769 
770  initGEOS(lwnotice, lwgeom_geos_error);
771 
772  if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
773 
774  if (directed)
775  {
776 #if POSTGIS_GEOS_VERSION < 31100
777  lwerror("Directed line merging requires GEOS-3.11 or higher");
778  GEOS_FREE_AND_FAIL(g1);
779  return NULL;
780 #else
781  g3 = GEOSLineMergeDirected(g1);
782 #endif
783  }
784  else
785  {
786  g3 = GEOSLineMerge(g1);
787  }
788 
789  if (!g3) GEOS_FREE_AND_FAIL(g1);
790  GEOSSetSRID(g3, srid);
791 
792  if (!(result = GEOS2LWGEOM(g3, is3d)))
793  GEOS_FREE_AND_FAIL(g1, g3);
794 
795  GEOS_FREE(g1, g3);
796 
797  return result;
798 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:267
#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:234
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition: lwgeom.c:529
#define FLAGS_GET_Z(flags)
Definition: liblwgeom.h:180
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition: lwinline.h:203
lwflags_t flags
Definition: liblwgeom.h:476

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

Referenced by linemerge(), and lwgeom_linemerge().

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