PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ encode_point()

static void encode_point ( mvt_agg_context ctx,
LWPOINT point 
)
static

Definition at line 181 of file mvt.c.

182 {
183  VectorTile__Tile__Feature *feature = ctx->feature;
184  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__POINT;
185  feature->has_type = 1;
186  feature->n_geometry = 3;
187  feature->geometry = palloc(sizeof(*feature->geometry) * 3);
188  encode_ptarray_initial(ctx, MVT_POINT, point->point, feature->geometry);
189 }
@ MVT_POINT
Definition: mvt.c:58
static uint32_t encode_ptarray_initial(mvt_agg_context *ctx, enum mvt_type type, POINTARRAY *pa, uint32_t *buffer)
Definition: mvt.c:173
POINTARRAY * point
Definition: liblwgeom.h:457
VectorTile__Tile__Feature * feature
Definition: mvt.h:66

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

Referenced by encode_geometry().

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