PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ encode_mpoly()

static void encode_mpoly ( mvt_agg_context ctx,
LWMPOLY lwmpoly 
)
static

Definition at line 217 of file mvt.c.

218 {
219  uint32_t i, j;
220  int32_t px = 0, py = 0;
221  size_t c = 0, offset = 0;
222  LWPOLY *poly;
223  VectorTile__Tile__Feature *feature = ctx->feature;
224  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__POLYGON;
225  for (i = 0; i < lwmpoly->ngeoms; i++)
226  for (j = 0; poly = lwmpoly->geoms[i], j < poly->nrings; j++)
227  c += 3 + ((poly->rings[j]->npoints - 1) * 2);
228  feature->geometry = palloc(sizeof(*feature->geometry) * c);
229  for (i = 0; i < lwmpoly->ngeoms; i++)
230  for (j = 0; poly = lwmpoly->geoms[i], j < poly->nrings; j++)
231  offset += encode_ptarray(ctx, MVT_RING,
232  poly->rings[j], feature->geometry + offset,
233  &px, &py);
234  feature->n_geometry = offset;
235 }
@ MVT_RING
Definition: mvt.c:65
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
uint32_t ngeoms
Definition: liblwgeom.h:580
LWPOLY ** geoms
Definition: liblwgeom.h:575
POINTARRAY ** rings
Definition: liblwgeom.h:533
uint32_t nrings
Definition: liblwgeom.h:538
uint32_t npoints
Definition: liblwgeom.h:441
VectorTile__Tile__Feature * feature
Definition: mvt.h:75

References encode_ptarray(), mvt_agg_context::feature, LWMPOLY::geoms, MVT_RING, LWMPOLY::ngeoms, POINTARRAY::npoints, LWPOLY::nrings, and LWPOLY::rings.

Referenced by encode_geometry().

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