PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ encode_mline()

static void encode_mline ( mvt_agg_context ctx,
LWMLINE lwmline 
)
static

Definition at line 211 of file mvt.c.

212 {
213  uint32_t i;
214  int32_t px = 0, py = 0;
215  size_t c = 0, offset = 0;
216  VectorTile__Tile__Feature *feature = ctx->feature;
217  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__LINESTRING;
218  feature->has_type = 1;
219  for (i = 0; i < lwmline->ngeoms; i++)
220  c += 2 + lwmline->geoms[i]->points->npoints * 2;
221  feature->geometry = palloc(sizeof(*feature->geometry) * c);
222  for (i = 0; i < lwmline->ngeoms; i++)
223  offset += encode_ptarray(ctx, MVT_LINE,
224  lwmline->geoms[i]->points,
225  feature->geometry + offset, &px, &py);
226  feature->n_geometry = offset;
227 }
@ MVT_LINE
Definition: mvt.c:53
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:116
POINTARRAY * points
Definition: liblwgeom.h:425
LWLINE ** geoms
Definition: liblwgeom.h:486
uint32_t ngeoms
Definition: liblwgeom.h:484
uint32_t npoints
Definition: liblwgeom.h:374
VectorTile__Tile__Feature * feature
Definition: mvt.h:65
unsigned int uint32_t
Definition: uthash.h:78

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: