Try to use OSM source data for countries and states
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
DO $$
|
||||
BEGIN
|
||||
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'place_subclass') THEN
|
||||
CREATE TYPE place_subclass AS ENUM ('city', 'town', 'village', 'hamlet', 'suburb', 'neighbourhood', 'isolated_dwelling');
|
||||
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'city_class') THEN
|
||||
CREATE TYPE city_class AS ENUM ('city', 'town', 'village', 'hamlet', 'suburb', 'neighbourhood', 'isolated_dwelling');
|
||||
END IF;
|
||||
END
|
||||
$$;
|
||||
|
||||
ALTER TABLE osm_place_point ALTER COLUMN place TYPE place_subclass USING place::place_subclass;
|
||||
ALTER TABLE osm_city_point ALTER COLUMN place TYPE city_class USING place::city_class;
|
||||
|
||||
Reference in New Issue
Block a user