PostGIS
2.4.9dev-r@@SVN_REVISION@@
|
#include <stdlib.h>
#include "postgres.h"
#include "utils/builtins.h"
#include "utils/array.h"
#include "utils/typcache.h"
#include "utils/lsyscache.h"
#include "catalog/pg_type.h"
#include "catalog/namespace.h"
#include "executor/executor.h"
#include "access/htup_details.h"
#include "access/htup.h"
#include "../postgis_config.h"
#include "liblwgeom.h"
#include "liblwgeom_internal.h"
#include "lwgeom_pg.h"
#include "lwgeom_log.h"
#include "vector_tile.pb-c.h"
Go to the source code of this file.
Data Structures | |
struct | mvt_agg_context |
Functions | |
LWGEOM * | mvt_geom (const LWGEOM *geom, const GBOX *bounds, uint32_t extent, uint32_t buffer, bool clip_geom) |
Transform a geometry into vector tile coordinate space. More... | |
void | mvt_agg_init_context (struct mvt_agg_context *ctx) |
Initialize aggregation context. More... | |
void | mvt_agg_transfn (struct mvt_agg_context *ctx) |
Aggregation step. More... | |
uint8_t * | mvt_agg_finalfn (struct mvt_agg_context *ctx) |
Finalize aggregation. More... | |