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

◆ asgeojson_line_buf()

static size_t asgeojson_line_buf ( const LWLINE line,
char *  srs,
char *  output,
GBOX bbox,
int  precision 
)
static

Definition at line 285 of file lwout_geojson.c.

286{
287 char *ptr=output;
288
289 ptr += sprintf(ptr, "{\"type\":\"LineString\",");
290 if (srs) ptr += asgeojson_srs_buf(ptr, srs);
291 if (bbox) ptr += asgeojson_bbox_buf(ptr, bbox, FLAGS_GET_Z(line->flags), precision);
292 ptr += sprintf(ptr, "\"coordinates\":[");
293 ptr += pointArray_to_geojson(line->points, ptr, precision);
294 ptr += sprintf(ptr, "]}");
295
296 return (ptr-output);
297}
static uint8_t precision
Definition cu_in_twkb.c:25
#define FLAGS_GET_Z(flags)
Definition liblwgeom.h:179
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)
lwflags_t flags
Definition liblwgeom.h:471
POINTARRAY * points
Definition liblwgeom.h:469

References asgeojson_bbox_buf(), asgeojson_srs_buf(), LWLINE::flags, FLAGS_GET_Z, pointArray_to_geojson(), LWLINE::points, and precision.

Referenced by asgeojson_geom_buf(), and asgeojson_line().

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