PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ _lwt_split_by_nodes()

static LWGEOM* _lwt_split_by_nodes ( const LWGEOM g,
const LWGEOM nodes 
)
static

Definition at line 5507 of file lwgeom_topo.c.

5508 {
5509  LWCOLLECTION *col = lwgeom_as_lwcollection(nodes);
5510  uint32_t i;
5511  LWGEOM *bg;
5512 
5513  bg = lwgeom_clone_deep(g);
5514  if ( ! col->ngeoms ) return bg;
5515 
5516  for (i=0; i<col->ngeoms; ++i)
5517  {
5518  LWGEOM *g2;
5519  g2 = lwgeom_split(bg, col->geoms[i]);
5520  lwgeom_free(bg);
5521  bg = g2;
5522  }
5523  bg->srid = nodes->srid;
5524 
5525  return bg;
5526 }
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1138
LWGEOM * lwgeom_split(const LWGEOM *lwgeom_in, const LWGEOM *blade_in)
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition: lwgeom.c:511
LWCOLLECTION * lwgeom_as_lwcollection(const LWGEOM *lwgeom)
Definition: lwgeom.c:215
uint32_t ngeoms
Definition: liblwgeom.h:566
LWGEOM ** geoms
Definition: liblwgeom.h:561
int32_t srid
Definition: liblwgeom.h:446

References LWCOLLECTION::geoms, lwgeom_as_lwcollection(), lwgeom_clone_deep(), lwgeom_free(), lwgeom_split(), LWCOLLECTION::ngeoms, and LWGEOM::srid.

Referenced by _lwt_AddLine().

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