This commit is contained in:
Eva J 2019-12-18 09:14:47 +01:00
parent 358939e912
commit c40e092381
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 (