PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ getPoint2d_p_ro()

int getPoint2d_p_ro ( const POINTARRAY pa,
uint32_t  n,
POINT2D **  point 
)

This function can only be used on LWGEOM that is built on top of GSERIALIZED, otherwise alignment errors will ensue.

New function to read doubles directly from the double* coordinate array of an aligned lwgeom POINTARRAY (built by de-serializing a GSERIALIZED).

Definition at line 2865 of file lwgeodetic.c.

2866 {
2867  uint8_t *pa_ptr = NULL;
2868  assert(pa);
2869  assert(n < pa->npoints);
2870 
2871  pa_ptr = getPoint_internal(pa, n);
2872  /* printf( "pa_ptr[0]: %g\n", *((double*)pa_ptr)); */
2873  *point = (POINT2D*)pa_ptr;
2874 
2875  return LW_SUCCESS;
2876 }
#define LW_SUCCESS
Definition: liblwgeom.h:111
static uint8_t * getPoint_internal(const POINTARRAY *pa, uint32_t n)
Definition: lwinline.h:77

References getPoint_internal(), and LW_SUCCESS.

Here is the call graph for this function: