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

◆ 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:181
void printPA(POINTARRAY *pa)
Definition lwgeom_api.c:447
#define FLAGS_NDIMS(flags)
Definition liblwgeom.h:193
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition lwutil.c:177
POINTARRAY * point
Definition liblwgeom.h:457
lwflags_t flags
Definition liblwgeom.h:459
int32_t srid
Definition liblwgeom.h:458

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

Here is the call graph for this function: