PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ getPoint2d_p_ro()

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

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

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 2858 of file lwgeodetic.c.

References getPoint_internal(), and LW_SUCCESS.

2859 {
2860  uint8_t *pa_ptr = NULL;
2861  assert(pa);
2862  assert(n >= 0);
2863  assert(n < pa->npoints);
2864 
2865  pa_ptr = getPoint_internal(pa, n);
2866  /* printf( "pa_ptr[0]: %g\n", *((double*)pa_ptr)); */
2867  *point = (POINT2D*)pa_ptr;
2868 
2869  return LW_SUCCESS;
2870 }
#define LW_SUCCESS
Definition: liblwgeom.h:80
uint8_t * getPoint_internal(const POINTARRAY *pa, int n)
Definition: ptarray.c:1753
unsigned char uint8_t
Definition: uthash.h:79
Here is the call graph for this function: