PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ getPoint3dz_cp()

const POINT3DZ* getPoint3dz_cp ( const POINTARRAY pa,
int  n 
)

Returns a POINT3DZ pointer into the POINTARRAY serialized_ptlist, suitable for reading from.

This is very high performance and declared const because you aren't allowed to muck with the values, only read them.

Definition at line 387 of file lwgeom_api.c.

References POINTARRAY::flags, FLAGS_GET_Z, getPoint_internal(), lwerror(), and POINTARRAY::npoints.

Referenced by pointArray_to_geojson(), pointArray_toGML2(), pointArray_toGML3(), and ptarray_to_GEOSCoordSeq().

388 {
389  if ( ! pa ) return 0;
390 
391  if ( ! FLAGS_GET_Z(pa->flags) )
392  {
393  lwerror("getPoint3dz_cp: no Z coordinates in point array");
394  return 0; /*error */
395  }
396 
397  if ( (n<0) || (n>=pa->npoints))
398  {
399  lwerror("getPoint3dz_cp: point offset out of range");
400  return 0; /*error */
401  }
402 
403  return (const POINT3DZ*)getPoint_internal(pa, n);
404 }
int npoints
Definition: liblwgeom.h:371
uint8_t flags
Definition: liblwgeom.h:369
uint8_t * getPoint_internal(const POINTARRAY *pa, int n)
Definition: ptarray.c:1753
#define FLAGS_GET_Z(flags)
Macros for manipulating the &#39;flags&#39; byte.
Definition: liblwgeom.h:140
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
Here is the call graph for this function:
Here is the caller graph for this function: