PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ printPA()

void printPA ( POINTARRAY pa)

Definition at line 440 of file lwgeom_api.c.

441 {
442  uint32_t t;
443  POINT4D pt;
444  char *mflag;
445 
446 
447  if ( FLAGS_GET_M(pa->flags) ) mflag = "M";
448  else mflag = "";
449 
450  lwnotice(" POINTARRAY%s{", mflag);
451  lwnotice(" ndims=%i, ptsize=%i",
453  lwnotice(" npoints = %i", pa->npoints);
454 
455  if (!pa)
456  {
457  lwnotice(" PTARRAY is null pointer!");
458  }
459  else
460  {
461 
462  for (t = 0; t < pa->npoints; t++)
463  {
464  getPoint4d_p(pa, t, &pt);
465  if (FLAGS_NDIMS(pa->flags) == 2)
466  lwnotice(" %i : %lf,%lf", t, pt.x, pt.y);
467  if (FLAGS_NDIMS(pa->flags) == 3)
468  lwnotice(" %i : %lf,%lf,%lf", t, pt.x, pt.y, pt.z);
469  if (FLAGS_NDIMS(pa->flags) == 4)
470  lwnotice(" %i : %lf,%lf,%lf,%lf", t, pt.x, pt.y, pt.z, pt.m);
471  }
472  }
473  lwnotice(" }");
474 }
#define FLAGS_NDIMS(flags)
Definition: liblwgeom.h:179
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:166
int getPoint4d_p(const POINTARRAY *pa, uint32_t n, POINT4D *op)
Definition: lwgeom_api.c:125
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
static size_t ptarray_point_size(const POINTARRAY *pa)
Definition: lwinline.h:58
double m
Definition: liblwgeom.h:414
double x
Definition: liblwgeom.h:414
double z
Definition: liblwgeom.h:414
double y
Definition: liblwgeom.h:414
lwflags_t flags
Definition: liblwgeom.h:431
uint32_t npoints
Definition: liblwgeom.h:427

References POINTARRAY::flags, FLAGS_GET_M, FLAGS_NDIMS, getPoint4d_p(), lwnotice(), POINT4D::m, POINTARRAY::npoints, ptarray_point_size(), POINT4D::x, POINT4D::y, and POINT4D::z.

Referenced by printLWCIRCSTRING(), printLWLINE(), printLWPOINT(), printLWPOLY(), printLWPSURFACE(), printLWTIN(), and printLWTRIANGLE().

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