Timvt

Latest version: v0.7.0

Safety actively analyzes 714815 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 3

0.5.0

* switch to `pyproject.toml` and repo cleanup

0.4.1

* update viewer

0.4.0

* Refactor Function Registry to be hosted in the application state (`app.state.function_catalog) as the Table catalog.
* move `timvt.function.Registry` to `timvt.layer.FunctionRegistry`

0.3.0

* update settings management from starlette to pydantic and use `TIMVT_` prefix

0.2.1

* update FastAPI version requirement to allow `>=0.73`

0.2.0

* Faster and cleaner SQL code
* Compare Tile and Table geometries in Table CRS (speedup)
* Allow non-epsg based TileMatrixSet
* update morecantile requirement to `>=3.0.2`
* add `geometry_srid` in Table metadata
* refactor `Function` layers.

**breaking changes**

* Function layer signature change
sql
-- before
CREATE FUNCTION name(
-- bounding box
xmin float,
ymin float,
xmax float,
ymax float,
-- EPSG (SRID) of the bounding box coordinates
epsg integer,
-- additional parameters
value0 int,
value1 int
)
RETURNS bytea

-- now
CREATE FUNCTION name(
-- bounding box
xmin float,
ymin float,
xmax float,
ymax float,
-- EPSG (SRID) of the bounding box coordinates
epsg integer,
-- additional parameters
query_params json
)
RETURNS bytea

Page 2 of 3

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.