PostGIS  3.0.6dev-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 595 of file ptarray.c.

596 {
597  POINTARRAY *pa;
598  size_t ptsize = ptarray_point_size(pa1);
599 
600  if (FLAGS_GET_ZM(pa1->flags) != FLAGS_GET_ZM(pa2->flags))
601  lwerror("ptarray_cat: Mixed dimension");
602 
603  pa = ptarray_construct( FLAGS_GET_Z(pa1->flags),
604  FLAGS_GET_M(pa1->flags),
605  pa1->npoints + pa2->npoints);
606 
607  memcpy( getPoint_internal(pa, 0),
608  getPoint_internal(pa1, 0),
609  ptsize*(pa1->npoints));
610 
611  memcpy( getPoint_internal(pa, pa1->npoints),
612  getPoint_internal(pa2, 0),
613  ptsize*(pa2->npoints));
614 
615  ptarray_free(pa1);
616  ptarray_free(pa2);
617 
618  return pa;
619 }
#define FLAGS_GET_Z(flags)
Definition: liblwgeom.h:179
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:180
#define FLAGS_GET_ZM(flags)
Definition: liblwgeom.h:194
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static size_t ptarray_point_size(const POINTARRAY *pa)
Definition: lwinline.h:48
static uint8_t * getPoint_internal(const POINTARRAY *pa, uint32_t n)
Definition: lwinline.h:67
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:51
void ptarray_free(POINTARRAY *pa)
Definition: ptarray.c:319
lwflags_t flags
Definition: liblwgeom.h:417
uint32_t npoints
Definition: liblwgeom.h:413

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().

Here is the call graph for this function:
Here is the caller graph for this function: