PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ printLWPOINT()

void printLWPOINT ( LWPOINT point)

Definition at line 224 of file lwpoint.c.

225 {
226  lwnotice("LWPOINT {");
227  lwnotice(" ndims = %i", (int)FLAGS_NDIMS(point->flags));
228  lwnotice(" BBOX = %i", FLAGS_GET_BBOX(point->flags) ? 1 : 0 );
229  lwnotice(" SRID = %i", (int)point->srid);
230  printPA(point->point);
231  lwnotice("}");
232 }
#define FLAGS_GET_BBOX(flags)
Definition: liblwgeom.h:182
void printPA(POINTARRAY *pa)
Definition: lwgeom_api.c:441
#define FLAGS_NDIMS(flags)
Definition: liblwgeom.h:194
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
POINTARRAY * point
Definition: liblwgeom.h:486
lwflags_t flags
Definition: liblwgeom.h:488
int32_t srid
Definition: liblwgeom.h:487

References LWPOINT::flags, FLAGS_GET_BBOX, FLAGS_NDIMS, lwnotice(), LWPOINT::point, printPA(), and LWPOINT::srid.

Here is the call graph for this function: