PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ encode_point()

static void encode_point ( struct mvt_agg_context ctx,
LWPOINT point 
)
static

Definition at line 160 of file mvt.c.

References encode_ptarray_initial(), mvt_agg_context::feature, MVT_POINT, and LWPOINT::point.

Referenced by encode_geometry().

161 {
162  VectorTile__Tile__Feature *feature = ctx->feature;
163  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__POINT;
164  feature->has_type = 1;
165  feature->n_geometry = 3;
166  feature->geometry = palloc(sizeof(*feature->geometry) * 3);
167  encode_ptarray_initial(ctx, MVT_POINT, point->point, feature->geometry);
168 }
Definition: mvt.c:49
POINTARRAY * point
Definition: liblwgeom.h:411
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
Here is the call graph for this function:
Here is the caller graph for this function: