PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ lwgeom_get_geos_coordseq_2d()

static GEOSCoordSequence* lwgeom_get_geos_coordseq_2d ( const LWGEOM g,
uint32_t  num_points 
)
static

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

2022 {
2023  uint32_t i = 0;
2024  uint8_t num_dims = 2;
2025  LWPOINTITERATOR* it;
2026  GEOSCoordSequence* coords;
2027  POINT4D tmp;
2028 
2029  coords = GEOSCoordSeq_create(num_points, num_dims);
2030  if (!coords) return NULL;
2031 
2032  it = lwpointiterator_create(g);
2033  while (lwpointiterator_next(it, &tmp))
2034  {
2035  if (i >= num_points)
2036  {
2037  lwerror("Incorrect num_points provided to lwgeom_get_geos_coordseq_2d");
2038  GEOSCoordSeq_destroy(coords);
2040  return NULL;
2041  }
2042 
2043 #if POSTGIS_GEOS_VERSION < 30800
2044  if (!GEOSCoordSeq_setX(coords, i, tmp.x) || !GEOSCoordSeq_setY(coords, i, tmp.y))
2045 #else
2046  if (!GEOSCoordSeq_setXY(coords, i, tmp.x, tmp.y))
2047 #endif
2048  {
2049  GEOSCoordSeq_destroy(coords);
2051  return NULL;
2052  }
2053  i++;
2054  }
2056 
2057  return coords;
2058 }
LWPOINTITERATOR * lwpointiterator_create(const LWGEOM *g)
Create a new LWPOINTITERATOR over supplied LWGEOM*.
Definition: lwiterator.c:242
int lwpointiterator_next(LWPOINTITERATOR *s, POINT4D *p)
Attempts to assign the next point in the iterator to p, and advances the iterator to the next point.
Definition: lwiterator.c:210
void lwpointiterator_destroy(LWPOINTITERATOR *s)
Free all memory associated with the iterator.
Definition: lwiterator.c:267
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
double x
Definition: liblwgeom.h:429
double y
Definition: liblwgeom.h:429

References lwerror(), lwpointiterator_create(), lwpointiterator_destroy(), lwpointiterator_next(), POINT4D::x, and POINT4D::y.

Referenced by lwgeom_voronoi_diagram().

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