PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ lwcompound_get_lwpoint()

LWPOINT* lwcompound_get_lwpoint ( const LWCOMPOUND lwcmp,
uint32_t  where 
)

Definition at line 256 of file lwcompound.c.

257 {
258  uint32_t i;
259  uint32_t count = 0;
260  uint32_t npoints = 0;
261  if ( lwgeom_is_empty((LWGEOM*)lwcmp) )
262  return NULL;
263 
264  npoints = lwgeom_count_vertices((LWGEOM*)lwcmp);
265  if ( where >= npoints )
266  {
267  lwerror("%s: index %d is not in range of number of vertices (%d) in input", __func__, where, npoints);
268  return NULL;
269  }
270 
271  for ( i = 0; i < lwcmp->ngeoms; i++ )
272  {
273  LWGEOM* part = lwcmp->geoms[i];
274  uint32_t npoints_part = lwgeom_count_vertices(part);
275  if ( where >= count && where < count + npoints_part )
276  {
277  return lwline_get_lwpoint((LWLINE*)part, where - count);
278  }
279  else
280  {
281  count += npoints_part;
282  }
283  }
284 
285  return NULL;
286 }
uint32_t lwgeom_count_vertices(const LWGEOM *geom)
Count the total number of vertices in any LWGEOM.
Definition: lwgeom.c:1309
LWPOINT * lwline_get_lwpoint(const LWLINE *line, uint32_t where)
Returns freshly allocated LWPOINT that corresponds to the index where.
Definition: lwline.c:309
void void lwerror(const char *fmt,...) __attribute__((format(printf
Write a notice out to the error handler.
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:199
int count
Definition: genraster.py:57

References genraster::count, LWCOMPOUND::geoms, lwerror(), lwgeom_count_vertices(), lwgeom_is_empty(), lwline_get_lwpoint(), and LWCOMPOUND::ngeoms.

Referenced by lwcompound_get_startpoint(), and LWGEOM_pointn_linestring().

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