PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ encode_line()

static Data__Geometry* encode_line ( struct geobuf_agg_context ctx,
LWLINE lwline 
)
static

Definition at line 236 of file geobuf.c.

238 {
239  POINTARRAY *pa;
240  Data__Geometry *geometry;
241 
242  geometry = galloc(DATA__GEOMETRY__TYPE__LINESTRING);
243 
244  pa = lwline->points;
245 
246  if (pa->npoints == 0)
247  return geometry;
248 
249  geometry->n_coords = (size_t)pa->npoints * ctx->dimensions;
250  geometry->coords = encode_coords(ctx, pa, NULL, pa->npoints, 0);
251 
252  return geometry;
253 }
static Data__Geometry * galloc(Data__Geometry__Type type)
Definition: geobuf.c:36
static int64_t * encode_coords(struct geobuf_agg_context *ctx, POINTARRAY *pa, int64_t *coords, int len, int offset)
Definition: geobuf.c:161
POINTARRAY * points
Definition: liblwgeom.h:483
uint32_t npoints
Definition: liblwgeom.h:427
uint32_t dimensions
Definition: geobuf.h:61

References geobuf_agg_context::dimensions, encode_coords(), galloc(), POINTARRAY::npoints, and LWLINE::points.

Referenced by encode_geometry().

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