Exclude small hamlets

pull/24/head
lukasmartinelli 2016-10-25 14:55:05 +02:00
rodzic 8fb9c45fc1
commit e3800bdb5a
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -45,10 +45,12 @@ CREATE OR REPLACE VIEW place_z10 AS (
CREATE OR REPLACE VIEW place_z11 AS (
SELECT osm_id, geometry, name, name_en, place, NULL::integer AS scalerank, population FROM osm_place_point
WHERE place IN ('city', 'town', 'village', 'suburb')
);
CREATE OR REPLACE VIEW place_z13 AS (
SELECT osm_id, geometry, name, name_en, place, NULL::integer AS scalerank, population FROM osm_place_point
WHERE place IN ('city', 'town', 'village', 'suburb')
);
CREATE OR REPLACE FUNCTION layer_place(bbox geometry, zoom_level int, pixel_width numeric)