Add gates to airports (#1029)

This commit is contained in:
Tomas Pohanka
2020-10-19 11:24:16 +02:00
committed by GitHub
parent 09b68ed1c2
commit 72af34612a
5 changed files with 23 additions and 0 deletions

View File

@@ -54,6 +54,12 @@ FROM (
SELECT geometry, aeroway, ref
FROM osm_aeroway_polygon
WHERE zoom_level >= 14
UNION ALL
-- etldoc: osm_aeroway_point -> layer_aeroway:z14_
SELECT geometry, aeroway, ref
FROM osm_aeroway_point
WHERE zoom_level >= 14
) AS zoom_levels
WHERE geometry && bbox;
$$ LANGUAGE SQL STABLE