Merge pull request #25 from openmaptiles/fix_water_z2

fix water_z2
This commit is contained in:
Lukas Martinelli 2016-11-15 09:12:22 +01:00 committed by GitHub
commit ed7c3369ab

View File

@ -24,8 +24,8 @@ CREATE OR REPLACE VIEW water_z2 AS (
-- etldoc: ne_50m_ocean -> water_z2
SELECT geom, 'ocean' AS class FROM ne_50m_ocean
UNION ALL
-- etldoc: ne_110m_lakes -> water_z2
SELECT geom, 'lake' AS class FROM ne_110m_lakes
-- etldoc: ne_50m_lakes -> water_z2
SELECT geom, 'lake' AS class FROM ne_50m_lakes
);
CREATE OR REPLACE VIEW water_z4 AS (