Added merged simplified transportation for zoom 7

This commit is contained in:
MartinMikita
2017-03-29 20:55:31 +02:00
committed by Jiri Kozel
parent 52933f5cfc
commit 9781a0e671
2 changed files with 17 additions and 4 deletions

View File

@@ -53,14 +53,14 @@ RETURNS TABLE(osm_id bigint, geometry geometry, class text, ramp int, oneway int
WHERE zoom_level = 6
UNION ALL
-- etldoc: osm_highway_linestring_gen4 -> layer_transportation:z7
-- etldoc: osm_transportation_merge_linestring_gen4 -> layer_transportation:z7
SELECT
osm_id, geometry, highway, NULL AS railway, NULL AS service,
NULL::boolean AS is_bridge, NULL::boolean AS is_tunnel,
NULL::boolean AS is_ford,
NULL::boolean AS is_ramp, NULL::boolean AS is_oneway,
z_order
FROM osm_highway_linestring_gen4
FROM osm_transportation_merge_linestring_gen4
WHERE zoom_level = 7
UNION ALL