PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ encode_line()

static void encode_line ( mvt_agg_context ctx,
LWLINE lwline 
)
static

Definition at line 199 of file mvt.c.

200 {
201  size_t c;
202  VectorTile__Tile__Feature *feature = ctx->feature;
203  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__LINESTRING;
204  feature->has_type = 1;
205  c = 2 + lwline->points->npoints * 2;
206  feature->geometry = palloc(sizeof(*feature->geometry) * c);
207  feature->n_geometry = encode_ptarray_initial(ctx, MVT_LINE,
208  lwline->points, feature->geometry);
209 }
@ MVT_LINE
Definition: mvt.c:53
static uint32_t encode_ptarray_initial(mvt_agg_context *ctx, enum mvt_type type, POINTARRAY *pa, uint32_t *buffer)
Definition: mvt.c:167
POINTARRAY * points
Definition: liblwgeom.h:425
uint32_t npoints
Definition: liblwgeom.h:374
VectorTile__Tile__Feature * feature
Definition: mvt.h:65

References encode_ptarray_initial(), mvt_agg_context::feature, MVT_LINE, 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: