openmaptiles/layers/place/merge_state_rank.sql

26 wiersze
1.1 KiB
SQL

WITH important_state_point AS (
SELECT osm.geometry, osm.osm_id, osm.name, COALESCE(NULLIF(osm.name_en, ''), ne.name) AS name_en, ne.scalerank, ne.labelrank
FROM ne_10m_admin_1_states_provinces_shp AS ne, osm_state_point AS osm
WHERE
-- We only match whether the point is within the Natural Earth polygon
-- because name matching is difficult
ST_Within(osm.geometry, ne.geom)
-- We leave out leess important states
AND ne.scalerank <= 3 AND ne.labelrank <= 2
)
UPDATE osm_state_point AS osm
-- We merge the labelrank not scalerank because it is more fine grained
SET "rank" = ne.labelrank
FROM important_state_point AS ne
WHERE osm.osm_id = ne.osm_id;
UPDATE osm_state_point AS osm
SET "rank" = 6
WHERE "rank" <= 0 OR "rank" > 6;
DELETE FROM osm_state_point WHERE "rank" IS NULL;
ALTER TABLE osm_state_point DROP CONSTRAINT IF EXISTS osm_state_point_rank_constraint;
ALTER TABLE osm_state_point ADD CONSTRAINT osm_state_point_rank_constraint CHECK("rank" BETWEEN 1 AND 6);
CREATE INDEX IF NOT EXISTS osm_state_point_rank_idx ON osm_state_point("rank");