PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ encode_poly()

static void encode_poly ( mvt_agg_context ctx,
LWPOLY lwpoly 
)
static

Definition at line 235 of file mvt.c.

236 {
237  uint32_t i;
238  int32_t px = 0, py = 0;
239  size_t c = 0, offset = 0;
240  VectorTile__Tile__Feature *feature = ctx->feature;
241  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__POLYGON;
242  feature->has_type = 1;
243  for (i = 0; i < lwpoly->nrings; i++)
244  c += 3 + ((lwpoly->rings[i]->npoints - 1) * 2);
245  feature->geometry = palloc(sizeof(*feature->geometry) * c);
246  for (i = 0; i < lwpoly->nrings; i++)
247  offset += encode_ptarray(ctx, MVT_RING,
248  lwpoly->rings[i],
249  feature->geometry + offset, &px, &py);
250  feature->n_geometry = offset;
251 }
@ MVT_RING
Definition: mvt.c:60
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:122
POINTARRAY ** rings
Definition: liblwgeom.h:505
uint32_t nrings
Definition: liblwgeom.h:510
uint32_t npoints
Definition: liblwgeom.h:413
VectorTile__Tile__Feature * feature
Definition: mvt.h:66

References encode_ptarray(), mvt_agg_context::feature, MVT_RING, 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: