PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ printLWPOINT()

void printLWPOINT ( LWPOINT point)
extern

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:167
void printPA(POINTARRAY *pa)
Definition lwgeom_api.c:440
#define FLAGS_NDIMS(flags)
Definition liblwgeom.h:179
void lwnotice(const char *fmt,...) __attribute__((format(printf
Write a notice out to the notice handler.
POINTARRAY * point
Definition liblwgeom.h:471
lwflags_t flags
Definition liblwgeom.h:473
int32_t srid
Definition liblwgeom.h:472

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

Here is the call graph for this function: