PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwmcurve_linearize()

static LWMLINE* lwmcurve_linearize ( const LWMCURVE mcurve,
double  tol,
LW_LINEARIZE_TOLERANCE_TYPE  type,
int  flags 
)
static
Parameters
mcurveinput compound curve
toltolerance, semantic driven by tolerance_type
tolerance_typesee LW_LINEARIZE_TOLERANCE_TYPE
flagssee flags in lwarc_linearize
Returns
a newly allocated LWMLINE

Definition at line 600 of file lwstroke.c.

603 {
604  LWMLINE *ogeom;
605  LWGEOM **lines;
606  uint32_t i;
607 
608  LWDEBUGF(2, "lwmcurve_linearize called, geoms=%d, dim=%d.", mcurve->ngeoms, FLAGS_NDIMS(mcurve->flags));
609 
610  lines = lwalloc(sizeof(LWGEOM *)*mcurve->ngeoms);
611 
612  for (i = 0; i < mcurve->ngeoms; i++)
613  {
614  const LWGEOM *tmp = mcurve->geoms[i];
615  if (tmp->type == CIRCSTRINGTYPE)
616  {
617  lines[i] = (LWGEOM *)lwcircstring_linearize((LWCIRCSTRING *)tmp, tol, type, flags);
618  }
619  else if (tmp->type == LINETYPE)
620  {
621  lines[i] = (LWGEOM *)lwline_construct(mcurve->srid, NULL, ptarray_clone_deep(((LWLINE *)tmp)->points));
622  }
623  else if (tmp->type == COMPOUNDTYPE)
624  {
625  lines[i] = (LWGEOM *)lwcompound_linearize((LWCOMPOUND *)tmp, tol, type, flags);
626  }
627  else
628  {
629  lwerror("Unsupported geometry found in MultiCurve.");
630  return NULL;
631  }
632  }
633 
634  ogeom = (LWMLINE *)lwcollection_construct(MULTILINETYPE, mcurve->srid, NULL, mcurve->ngeoms, lines);
635  return ogeom;
636 }
#define COMPOUNDTYPE
Definition: liblwgeom.h:93
#define MULTILINETYPE
Definition: liblwgeom.h:89
#define LINETYPE
Definition: liblwgeom.h:86
POINTARRAY * ptarray_clone_deep(const POINTARRAY *ptarray)
Deep clone a pointarray (also clones serialized pointlist)
Definition: ptarray.c:628
#define FLAGS_NDIMS(flags)
Definition: liblwgeom.h:152
#define CIRCSTRINGTYPE
Definition: liblwgeom.h:92
LWCOLLECTION * lwcollection_construct(uint8_t type, int srid, GBOX *bbox, uint32_t ngeoms, LWGEOM **geoms)
Definition: lwcollection.c:43
void * lwalloc(size_t size)
Definition: lwutil.c:229
LWLINE * lwline_construct(int srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
#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
static LWLINE * lwcircstring_linearize(const LWCIRCSTRING *icurve, double tol, LW_LINEARIZE_TOLERANCE_TYPE tolerance_type, int flags)
Definition: lwstroke.c:413
static LWLINE * lwcompound_linearize(const LWCOMPOUND *icompound, double tol, LW_LINEARIZE_TOLERANCE_TYPE tolerance_type, int flags)
Definition: lwstroke.c:473
type
Definition: ovdump.py:41
uint8_t type
Definition: liblwgeom.h:399
LWGEOM ** geoms
Definition: liblwgeom.h:551
uint8_t flags
Definition: liblwgeom.h:546
uint32_t ngeoms
Definition: liblwgeom.h:549
int32_t srid
Definition: liblwgeom.h:548
unsigned int uint32_t
Definition: uthash.h:78

References CIRCSTRINGTYPE, COMPOUNDTYPE, LWMCURVE::flags, FLAGS_NDIMS, LWMCURVE::geoms, LINETYPE, lwalloc(), lwcircstring_linearize(), lwcollection_construct(), lwcompound_linearize(), LWDEBUGF, lwerror(), lwline_construct(), MULTILINETYPE, LWMCURVE::ngeoms, ptarray_clone_deep(), LWMCURVE::srid, LWGEOM::type, and ovdump::type.

Referenced by lwcurve_linearize().

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