Add place=quarter to city subdivisions (#1065)

This adds `place=quarter` which was introduced in 2011 as a subdivision
of villages/towns/cities as a value that sits between `place=suburb` and
`place=neighbourhood`. It has by now been used over 40,000 times and is
rendered in the OSM-Carto.
This commit is contained in:
Jeroen Hoek
2021-01-18 14:47:25 +01:00
committed by GitHub
parent c4c3089f40
commit 295688eb80
7 changed files with 6 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ DO
$$
BEGIN
IF NOT EXISTS(SELECT 1 FROM pg_type WHERE typname = 'city_place') THEN
CREATE TYPE city_place AS enum ('city', 'town', 'village', 'hamlet', 'suburb', 'neighbourhood', 'isolated_dwelling');
CREATE TYPE city_place AS enum ('city', 'town', 'village', 'hamlet', 'suburb', 'quarter', 'neighbourhood', 'isolated_dwelling');
END IF;
END
$$;