PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ encode_line()

static void encode_line ( struct mvt_agg_context ctx,
LWLINE lwline 
)
static

Definition at line 184 of file mvt.c.

References encode_ptarray_initial(), mvt_agg_context::feature, MVT_LINE, POINTARRAY::npoints, and LWLINE::points.

Referenced by encode_geometry().

185 {
186  size_t c;
187  VectorTile__Tile__Feature *feature = ctx->feature;
188  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__LINESTRING;
189  feature->has_type = 1;
190  c = 2 + lwline->points->npoints * 2;
191  feature->geometry = palloc(sizeof(*feature->geometry) * c);
192  feature->n_geometry = encode_ptarray_initial(ctx, MVT_LINE,
193  lwline->points, feature->geometry);
194 }
int npoints
Definition: liblwgeom.h:371
Definition: mvt.c:50
static uint32_t encode_ptarray_initial(struct mvt_agg_context *ctx, enum mvt_type type, POINTARRAY *pa, uint32_t *buffer)
Definition: mvt.c:152
VectorTile__Tile__Feature * feature
Definition: mvt.h:55
POINTARRAY * points
Definition: liblwgeom.h:422
Here is the call graph for this function:
Here is the caller graph for this function: