-
-
Notifications
You must be signed in to change notification settings - Fork 221
Description
Hi there, and thanks for putting this together. I hope the march towards 0.7 continues steadily.
Requested Behavior
I seek to be able to use the !ZOOM!
token before the WHERE-clause in a TOML-fed query for a given layer so that I can leverage the postGIS ST_Simplify
function with the intended result of simplifying polygons at lower zoom levels.
Use Cases
Here's where I'd employ it:
[[providers.layers]]
name = "pop_age_15_to_19_2016_ct"
geometry_fieldname = "wkb_geometry"
id_fieldname = "id"
# TODO: Same issue: Get the geometry dumbing down using the exponential function
sql = """
SELECT
ST_AsBinary(ST_Simplify(geo.wkb_geometry, (!ZOOM! * "mathy-like function", true))
AS wkb_geometry,
geo.ogc_fid
AS id,
data.total
AS total
FROM canada_ct_2016
AS geo
INNER JOIN pop_age_15_to_19_2016_ct
AS data
ON geo.ctuid = data.geo_id
WHERE
geo.wkb_geometry && !BBOX!
GROUP BY
wkb_geometry,
id,
total
"""
Current work arounds to accomplish current behaviour.
As a user, I have no workarounds at this time. For boundary polygons (Canadian Census Tracts) at zoom-level 9, the size of tiles being generate are upwards of 1MB. At zoom-level 14, they're at a manageable 20-40kb.
Thanks. If this functionality exists, I would gladly contribute to tegola-docs so that others in a similar position can carry out out.
Edit
The geographic data I used for this query can be found here