PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_merge()

POINTARRAY* ptarray_merge ( POINTARRAY pa1,
POINTARRAY pa2 
)

Merge two given POINTARRAY and returns a pointer on the new aggregate one.

Warning: this function free the two inputs POINTARRAY

Returns
POINTARRAY is newly allocated

Definition at line 599 of file ptarray.c.

References POINTARRAY::flags, FLAGS_GET_M, FLAGS_GET_Z, FLAGS_GET_ZM, getPoint_internal(), lwerror(), POINTARRAY::npoints, ptarray_construct(), ptarray_free(), and ptarray_point_size().

Referenced by parse_gml_data().

600 {
601  POINTARRAY *pa;
602  size_t ptsize = ptarray_point_size(pa1);
603 
604  if (FLAGS_GET_ZM(pa1->flags) != FLAGS_GET_ZM(pa2->flags))
605  lwerror("ptarray_cat: Mixed dimension");
606 
607  pa = ptarray_construct( FLAGS_GET_Z(pa1->flags),
608  FLAGS_GET_M(pa1->flags),
609  pa1->npoints + pa2->npoints);
610 
611  memcpy( getPoint_internal(pa, 0),
612  getPoint_internal(pa1, 0),
613  ptsize*(pa1->npoints));
614 
615  memcpy( getPoint_internal(pa, pa1->npoints),
616  getPoint_internal(pa2, 0),
617  ptsize*(pa2->npoints));
618 
619  ptarray_free(pa1);
620  ptarray_free(pa2);
621 
622  return pa;
623 }
int ptarray_point_size(const POINTARRAY *pa)
Definition: ptarray.c:54
int npoints
Definition: liblwgeom.h:371
#define FLAGS_GET_ZM(flags)
Definition: liblwgeom.h:153
uint8_t flags
Definition: liblwgeom.h:369
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
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:141
void ptarray_free(POINTARRAY *pa)
Definition: ptarray.c:330
uint8_t * getPoint_internal(const POINTARRAY *pa, int n)
Definition: ptarray.c:1753
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: