PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ linestring_from_pa()

static LWGEOM* linestring_from_pa ( const POINTARRAY pa,
int  srid,
int  start,
int  end 
)
static

Definition at line 842 of file lwstroke.c.

References getPoint4d_p(), LWDEBUGF, lwline_as_lwgeom(), lwline_construct(), ptarray_construct(), ptarray_has_m(), ptarray_has_z(), and ptarray_set_point4d().

Referenced by geom_from_pa().

843 {
844  int i = 0, j = 0;
845  POINT4D p;
846  POINTARRAY *pao = ptarray_construct(ptarray_has_z(pa), ptarray_has_m(pa), end-start+2);
847  LWDEBUGF(4, "srid=%d, start=%d, end=%d", srid, start, end);
848  for( i = start; i < end + 2; i++ )
849  {
850  getPoint4d_p(pa, i, &p);
851  ptarray_set_point4d(pao, j++, &p);
852  }
853  return lwline_as_lwgeom(lwline_construct(srid, NULL, pao));
854 }
void ptarray_set_point4d(POINTARRAY *pa, int n, const POINT4D *p4d)
Definition: lwgeom_api.c:437
POINTARRAY * ptarray_construct(char hasz, char hasm, uint32_t npoints)
Construct an empty pointarray, allocating storage and setting the npoints, but not filling in any inf...
Definition: ptarray.c:62
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:298
LWLINE * lwline_construct(int srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
int ptarray_has_m(const POINTARRAY *pa)
Definition: ptarray.c:43
int ptarray_has_z(const POINTARRAY *pa)
Definition: ptarray.c:36
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
int getPoint4d_p(const POINTARRAY *pa, int n, POINT4D *point)
Definition: lwgeom_api.c:122
Here is the call graph for this function:
Here is the caller graph for this function: