PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ encode_point()

static void encode_point ( mvt_agg_context ctx,
LWPOINT point 
)
static

Definition at line 148 of file mvt.c.

149 {
150  VectorTile__Tile__Feature *feature = ctx->feature;
151  feature->type = VECTOR_TILE__TILE__GEOM_TYPE__POINT;
152  feature->n_geometry = 3;
153  feature->geometry = palloc(sizeof(*feature->geometry) * 3);
154  encode_ptarray_initial(ctx, MVT_POINT, point->point, feature->geometry);
155 }
@ MVT_POINT
Definition: mvt.c:61
static uint32_t encode_ptarray_initial(mvt_agg_context *ctx, enum mvt_type type, POINTARRAY *pa, uint32_t *buffer)
Definition: mvt.c:140
POINTARRAY * point
Definition: liblwgeom.h:485
VectorTile__Tile__Feature * feature
Definition: mvt.h:75

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: