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

◆ asgeojson_point_buf()

static size_t asgeojson_point_buf ( const LWPOINT point,
char *  srs,
char *  output,
GBOX bbox,
int  precision 
)
static

Definition at line 187 of file lwout_geojson.c.

188{
189 char *ptr = output;
190
191 ptr += sprintf(ptr, "{\"type\":\"Point\",");
192 if (srs) ptr += asgeojson_srs_buf(ptr, srs);
193 if (bbox) ptr += asgeojson_bbox_buf(ptr, bbox, FLAGS_GET_Z(point->flags), precision);
194
195 ptr += sprintf(ptr, "\"coordinates\":");
196 if ( lwpoint_is_empty(point) )
197 ptr += sprintf(ptr, "[]");
198 ptr += pointArray_to_geojson(point->point, ptr, precision);
199 ptr += sprintf(ptr, "}");
200
201 return (ptr-output);
202}
static uint8_t precision
Definition cu_in_twkb.c:25
#define FLAGS_GET_Z(flags)
Definition liblwgeom.h:179
int lwpoint_is_empty(const LWPOINT *point)
static size_t pointArray_to_geojson(POINTARRAY *pa, char *buf, int precision)
static size_t asgeojson_srs_buf(char *output, char *srs)
static size_t asgeojson_bbox_buf(char *output, GBOX *bbox, int hasz, int precision)
POINTARRAY * point
Definition liblwgeom.h:457
lwflags_t flags
Definition liblwgeom.h:459

References asgeojson_bbox_buf(), asgeojson_srs_buf(), LWPOINT::flags, FLAGS_GET_Z, lwpoint_is_empty(), LWPOINT::point, pointArray_to_geojson(), and precision.

Referenced by asgeojson_geom_buf(), and asgeojson_point().

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