PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ encode_mline()

static void encode_mline ( mvt_agg_context ctx,
LWMLINE lwmline 
)
static

Definition at line 183 of file mvt.c.

184 {
185  uint32_t i;
186  int32_t px = 0, py = 0;
187  size_t c = 0, offset = 0;
188  VectorTile__Tile__Feature *feature = ctx->feature;
189  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__LINESTRING;
190  for (i = 0; i < lwmline->ngeoms; i++)
191  c += 2 + lwmline->geoms[i]->points->npoints * 2;
192  feature->geometry = palloc(sizeof(*feature->geometry) * c);
193  for (i = 0; i < lwmline->ngeoms; i++)
194  offset += encode_ptarray(ctx, MVT_LINE,
195  lwmline->geoms[i]->points,
196  feature->geometry + offset, &px, &py);
197  feature->n_geometry = offset;
198 }
@ MVT_LINE
Definition: mvt.c:64
static uint32_t encode_ptarray(__attribute__((__unused__)) mvt_agg_context *ctx, enum mvt_type type, POINTARRAY *pa, uint32_t *buffer, int32_t *px, int32_t *py)
Definition: mvt.c:91
POINTARRAY * points
Definition: liblwgeom.h:497
LWLINE ** geoms
Definition: liblwgeom.h:561
uint32_t ngeoms
Definition: liblwgeom.h:566
uint32_t npoints
Definition: liblwgeom.h:441
VectorTile__Tile__Feature * feature
Definition: mvt.h:75

References encode_ptarray(), mvt_agg_context::feature, LWMLINE::geoms, MVT_LINE, LWMLINE::ngeoms, 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: