kopia lustrzana https://github.com/openmaptiles/openmaptiles
Add primary to zoom 7, and fix index for gen3 & 6 (#213)
rodzic
75dd026e17
commit
0ccd2f8673
|
@ -57,19 +57,19 @@ CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen3_geometry_idx
|
||||||
ON osm_transportation_merge_linestring_gen3 USING gist(geometry);
|
ON osm_transportation_merge_linestring_gen3 USING gist(geometry);
|
||||||
CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen3_highway_partial_idx
|
CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen3_highway_partial_idx
|
||||||
ON osm_transportation_merge_linestring_gen3(highway)
|
ON osm_transportation_merge_linestring_gen3(highway)
|
||||||
WHERE highway IN ('motorway', 'trunk');
|
WHERE highway IN ('motorway','trunk', 'primary');
|
||||||
|
|
||||||
-- etldoc: osm_transportation_merge_linestring_gen3 -> osm_transportation_merge_linestring_gen4
|
-- etldoc: osm_transportation_merge_linestring_gen3 -> osm_transportation_merge_linestring_gen4
|
||||||
CREATE MATERIALIZED VIEW osm_transportation_merge_linestring_gen4 AS (
|
CREATE MATERIALIZED VIEW osm_transportation_merge_linestring_gen4 AS (
|
||||||
SELECT ST_Simplify(geometry, 200) AS geometry, osm_id, highway, z_order
|
SELECT ST_Simplify(geometry, 200) AS geometry, osm_id, highway, z_order
|
||||||
FROM osm_transportation_merge_linestring_gen3
|
FROM osm_transportation_merge_linestring_gen3
|
||||||
WHERE highway IN ('motorway','trunk') AND ST_Length(geometry) > 50
|
WHERE highway IN ('motorway','trunk', 'primary') AND ST_Length(geometry) > 50
|
||||||
);
|
);
|
||||||
CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen4_geometry_idx
|
CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen4_geometry_idx
|
||||||
ON osm_transportation_merge_linestring_gen4 USING gist(geometry);
|
ON osm_transportation_merge_linestring_gen4 USING gist(geometry);
|
||||||
CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen4_highway_partial_idx
|
CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen4_highway_partial_idx
|
||||||
ON osm_transportation_merge_linestring_gen4(highway)
|
ON osm_transportation_merge_linestring_gen4(highway)
|
||||||
WHERE highway IN ('motorway', 'trunk');
|
WHERE highway IN ('motorway','trunk', 'primary');
|
||||||
|
|
||||||
-- etldoc: osm_transportation_merge_linestring_gen4 -> osm_transportation_merge_linestring_gen5
|
-- etldoc: osm_transportation_merge_linestring_gen4 -> osm_transportation_merge_linestring_gen5
|
||||||
CREATE MATERIALIZED VIEW osm_transportation_merge_linestring_gen5 AS (
|
CREATE MATERIALIZED VIEW osm_transportation_merge_linestring_gen5 AS (
|
||||||
|
@ -93,7 +93,7 @@ CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen6_geometry_idx
|
||||||
ON osm_transportation_merge_linestring_gen6 USING gist(geometry);
|
ON osm_transportation_merge_linestring_gen6 USING gist(geometry);
|
||||||
CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen6_highway_partial_idx
|
CREATE INDEX IF NOT EXISTS osm_transportation_merge_linestring_gen6_highway_partial_idx
|
||||||
ON osm_transportation_merge_linestring_gen6(highway)
|
ON osm_transportation_merge_linestring_gen6(highway)
|
||||||
WHERE highway IN ('motorway');
|
WHERE highway IN ('motorway','trunk');
|
||||||
|
|
||||||
-- etldoc: osm_transportation_merge_linestring_gen6 -> osm_transportation_merge_linestring_gen7
|
-- etldoc: osm_transportation_merge_linestring_gen6 -> osm_transportation_merge_linestring_gen7
|
||||||
CREATE MATERIALIZED VIEW osm_transportation_merge_linestring_gen7 AS (
|
CREATE MATERIALIZED VIEW osm_transportation_merge_linestring_gen7 AS (
|
||||||
|
|
Ładowanie…
Reference in New Issue