Merge pull request #747 from eva-j/water_z4

Change NE source of lakes in zoom 4
This commit is contained in:
Eva Jelinkova 2019-12-19 11:31:12 +01:00 committed by GitHub
commit 9f00db0245
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 276 KiB

After

Width:  |  Height:  |  Size: 274 KiB

View File

@ -81,13 +81,13 @@ CREATE OR REPLACE VIEW water_z4 AS (
NULL::boolean AS is_tunnel
FROM ne_50m_ocean
UNION ALL
-- etldoc: ne_50m_lakes -> water_z4
-- etldoc: ne_10m_lakes -> water_z4
SELECT geometry,
'lake'::text AS class,
NULL::boolean AS is_intermittent,
NULL::boolean AS is_bridge,
NULL::boolean AS is_tunnel
FROM ne_50m_lakes
FROM ne_10m_lakes
);
CREATE OR REPLACE VIEW water_z5 AS (