]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/tables.sql
simplify name matching between boundary and place node
[nominatim.git] / lib-sql / tables.sql
1 drop table if exists import_status;
2 CREATE TABLE import_status (
3   lastimportdate timestamp with time zone NOT NULL,
4   sequence_id integer,
5   indexed boolean
6   );
7 GRANT SELECT ON import_status TO "{{config.DATABASE_WEBUSER}}" ;
8
9 drop table if exists import_osmosis_log;
10 CREATE TABLE import_osmosis_log (
11   batchend timestamp,
12   batchseq integer,
13   batchsize bigint,
14   starttime timestamp,
15   endtime timestamp,
16   event text
17   );
18
19 CREATE TABLE new_query_log (
20   type text,
21   starttime timestamp,
22   ipaddress text,
23   useragent text,
24   language text,
25   query text,
26   searchterm text,
27   endtime timestamp,
28   results integer,
29   format text,
30   secret text
31   );
32 CREATE INDEX idx_new_query_log_starttime ON new_query_log USING BTREE (starttime);
33 GRANT INSERT ON new_query_log TO "{{config.DATABASE_WEBUSER}}" ;
34 GRANT UPDATE ON new_query_log TO "{{config.DATABASE_WEBUSER}}" ;
35 GRANT SELECT ON new_query_log TO "{{config.DATABASE_WEBUSER}}" ;
36
37 GRANT SELECT ON TABLE country_name TO "{{config.DATABASE_WEBUSER}}";
38
39 DROP TABLE IF EXISTS nominatim_properties;
40 CREATE TABLE nominatim_properties (
41     property TEXT,
42     value TEXT
43 );
44 GRANT SELECT ON TABLE nominatim_properties TO "{{config.DATABASE_WEBUSER}}";
45
46 drop table IF EXISTS word;
47 CREATE TABLE word (
48   word_id INTEGER,
49   word_token text,
50   word text,
51   class text,
52   type text,
53   country_code varchar(2),
54   search_name_count INTEGER,
55   operator TEXT
56   ) {{db.tablespace.search_data}};
57 CREATE INDEX idx_word_word_token on word USING BTREE (word_token) {{db.tablespace.search_index}};
58 GRANT SELECT ON word TO "{{config.DATABASE_WEBUSER}}" ;
59 DROP SEQUENCE IF EXISTS seq_word;
60 CREATE SEQUENCE seq_word start 1;
61
62 drop table IF EXISTS location_area CASCADE;
63 CREATE TABLE location_area (
64   place_id BIGINT,
65   keywords INTEGER[],
66   partition SMALLINT,
67   rank_search SMALLINT NOT NULL,
68   rank_address SMALLINT NOT NULL,
69   country_code VARCHAR(2),
70   isguess BOOL,
71   postcode TEXT,
72   centroid GEOMETRY(Point, 4326),
73   geometry GEOMETRY(Geometry, 4326)
74   );
75
76 CREATE TABLE location_area_large () INHERITS (location_area);
77
78 DROP TABLE IF EXISTS location_area_country;
79 CREATE TABLE location_area_country (
80   place_id BIGINT,
81   country_code varchar(2),
82   geometry GEOMETRY(Geometry, 4326)
83   ) {{db.tablespace.address_data}};
84 CREATE INDEX idx_location_area_country_geometry ON location_area_country USING GIST (geometry) {{db.tablespace.address_index}};
85
86
87 drop table IF EXISTS location_property CASCADE;
88 CREATE TABLE location_property (
89   place_id BIGINT,
90   parent_place_id BIGINT,
91   partition SMALLINT,
92   housenumber TEXT,
93   postcode TEXT,
94   centroid GEOMETRY(Point, 4326)
95   );
96
97 CREATE TABLE location_property_aux () INHERITS (location_property);
98 CREATE INDEX idx_location_property_aux_place_id ON location_property_aux USING BTREE (place_id);
99 CREATE INDEX idx_location_property_aux_parent_place_id ON location_property_aux USING BTREE (parent_place_id);
100 CREATE INDEX idx_location_property_aux_housenumber_parent_place_id ON location_property_aux USING BTREE (parent_place_id, housenumber);
101 GRANT SELECT ON location_property_aux TO "{{config.DATABASE_WEBUSER}}";
102
103 CREATE TABLE location_property_tiger (
104   place_id BIGINT,
105   parent_place_id BIGINT,
106   startnumber INTEGER,
107   endnumber INTEGER,
108   partition SMALLINT,
109   linegeo GEOMETRY,
110   interpolationtype TEXT,
111   postcode TEXT);
112 GRANT SELECT ON location_property_tiger TO "{{config.DATABASE_WEBUSER}}";
113
114 drop table if exists location_property_osmline;
115 CREATE TABLE location_property_osmline (
116     place_id BIGINT NOT NULL,
117     osm_id BIGINT,
118     parent_place_id BIGINT,
119     geometry_sector INTEGER,
120     indexed_date TIMESTAMP,
121     startnumber INTEGER,
122     endnumber INTEGER,
123     partition SMALLINT,
124     indexed_status SMALLINT,
125     linegeo GEOMETRY,
126     interpolationtype TEXT,
127     address HSTORE,
128     postcode TEXT,
129     country_code VARCHAR(2)
130   ){{db.tablespace.search_data}};
131 CREATE UNIQUE INDEX idx_osmline_place_id ON location_property_osmline USING BTREE (place_id) {{db.tablespace.search_index}};
132 CREATE INDEX idx_osmline_geometry_sector ON location_property_osmline USING BTREE (geometry_sector) {{db.tablespace.address_index}};
133 CREATE INDEX idx_osmline_linegeo ON location_property_osmline USING GIST (linegeo) {{db.tablespace.search_index}};
134 GRANT SELECT ON location_property_osmline TO "{{config.DATABASE_WEBUSER}}";
135
136 drop table IF EXISTS search_name;
137 {% if not db.reverse_only %}
138 CREATE TABLE search_name (
139   place_id BIGINT,
140   importance FLOAT,
141   search_rank SMALLINT,
142   address_rank SMALLINT,
143   name_vector integer[],
144   nameaddress_vector integer[],
145   country_code varchar(2),
146   centroid GEOMETRY(Geometry, 4326)
147   ) {{db.tablespace.search_data}};
148 CREATE INDEX idx_search_name_place_id ON search_name USING BTREE (place_id) {{db.tablespace.search_index}};
149 GRANT SELECT ON search_name to "{{config.DATABASE_WEBUSER}}" ;
150 {% endif %}
151
152 drop table IF EXISTS place_addressline;
153 CREATE TABLE place_addressline (
154   place_id BIGINT,
155   address_place_id BIGINT,
156   distance FLOAT,
157   cached_rank_address SMALLINT,
158   fromarea boolean,
159   isaddress boolean
160   ) {{db.tablespace.search_data}};
161 CREATE INDEX idx_place_addressline_place_id on place_addressline USING BTREE (place_id) {{db.tablespace.search_index}};
162
163 drop table if exists placex;
164 CREATE TABLE placex (
165   place_id BIGINT NOT NULL,
166   parent_place_id BIGINT,
167   linked_place_id BIGINT,
168   importance FLOAT,
169   indexed_date TIMESTAMP,
170   geometry_sector INTEGER,
171   rank_address SMALLINT,
172   rank_search SMALLINT,
173   partition SMALLINT,
174   indexed_status SMALLINT,
175   LIKE place INCLUDING CONSTRAINTS,
176   wikipedia TEXT, -- calculated wikipedia article name (language:title)
177   country_code varchar(2),
178   housenumber TEXT,
179   postcode TEXT,
180   centroid GEOMETRY(Geometry, 4326)
181   ) {{db.tablespace.search_data}};
182 CREATE UNIQUE INDEX idx_place_id ON placex USING BTREE (place_id) {{db.tablespace.search_index}};
183 CREATE INDEX idx_placex_osmid ON placex USING BTREE (osm_type, osm_id) {{db.tablespace.search_index}};
184 CREATE INDEX idx_placex_linked_place_id ON placex USING BTREE (linked_place_id) {{db.tablespace.address_index}} WHERE linked_place_id IS NOT NULL;
185 CREATE INDEX idx_placex_rank_search ON placex USING BTREE (rank_search, geometry_sector) {{db.tablespace.address_index}};
186 CREATE INDEX idx_placex_geometry ON placex USING GIST (geometry) {{db.tablespace.search_index}};
187 CREATE INDEX idx_placex_geometry_placenode ON placex
188   USING GIST (geometry) {{db.tablespace.search_index}}
189   WHERE osm_type = 'N' and rank_search < 26
190         and class = 'place' and type != 'postcode' and linked_place_id is null;
191 CREATE INDEX idx_placex_wikidata on placex USING BTREE ((extratags -> 'wikidata')) {{db.tablespace.address_index}} WHERE extratags ? 'wikidata' and class = 'place' and osm_type = 'N' and rank_search < 26;
192
193 DROP SEQUENCE IF EXISTS seq_place;
194 CREATE SEQUENCE seq_place start 1;
195 GRANT SELECT on placex to "{{config.DATABASE_WEBUSER}}" ;
196 GRANT SELECT on place_addressline to "{{config.DATABASE_WEBUSER}}" ;
197 GRANT SELECT ON seq_word to "{{config.DATABASE_WEBUSER}}" ;
198 GRANT SELECT ON planet_osm_ways to "{{config.DATABASE_WEBUSER}}" ;
199 GRANT SELECT ON planet_osm_rels to "{{config.DATABASE_WEBUSER}}" ;
200 GRANT SELECT on location_area to "{{config.DATABASE_WEBUSER}}" ;
201
202 -- Table for synthetic postcodes.
203 DROP TABLE IF EXISTS location_postcode;
204 CREATE TABLE location_postcode (
205   place_id BIGINT,
206   parent_place_id BIGINT,
207   rank_search SMALLINT,
208   rank_address SMALLINT,
209   indexed_status SMALLINT,
210   indexed_date TIMESTAMP,
211   country_code varchar(2),
212   postcode TEXT,
213   geometry GEOMETRY(Geometry, 4326)
214   );
215 CREATE UNIQUE INDEX idx_postcode_id ON location_postcode USING BTREE (place_id) {{db.tablespace.search_index}};
216 CREATE INDEX idx_postcode_geometry ON location_postcode USING GIST (geometry) {{db.tablespace.address_index}};
217 GRANT SELECT ON location_postcode TO "{{config.DATABASE_WEBUSER}}" ;
218
219 DROP TABLE IF EXISTS import_polygon_error;
220 CREATE TABLE import_polygon_error (
221   osm_id BIGINT,
222   osm_type CHAR(1),
223   class TEXT NOT NULL,
224   type TEXT NOT NULL,
225   name HSTORE,
226   country_code varchar(2),
227   updated timestamp,
228   errormessage text,
229   prevgeometry GEOMETRY(Geometry, 4326),
230   newgeometry GEOMETRY(Geometry, 4326)
231   );
232 CREATE INDEX idx_import_polygon_error_osmid ON import_polygon_error USING BTREE (osm_type, osm_id);
233 GRANT SELECT ON import_polygon_error TO "{{config.DATABASE_WEBUSER}}";
234
235 DROP TABLE IF EXISTS import_polygon_delete;
236 CREATE TABLE import_polygon_delete (
237   osm_id BIGINT,
238   osm_type CHAR(1),
239   class TEXT NOT NULL,
240   type TEXT NOT NULL
241   );
242 CREATE INDEX idx_import_polygon_delete_osmid ON import_polygon_delete USING BTREE (osm_type, osm_id);
243 GRANT SELECT ON import_polygon_delete TO "{{config.DATABASE_WEBUSER}}";
244
245 DROP SEQUENCE IF EXISTS file;
246 CREATE SEQUENCE file start 1;
247
248 -- null table so it won't error
249 -- deliberately no drop - importing the table is expensive and static, if it is already there better to avoid removing it
250 CREATE TABLE wikipedia_article (
251     language text NOT NULL,
252     title text NOT NULL,
253     langcount integer,
254     othercount integer,
255     totalcount integer,
256     lat double precision,
257     lon double precision,
258     importance double precision,
259     osm_type character(1),
260     osm_id bigint,
261     wd_page_title text,
262     instance_of text
263 );
264 ALTER TABLE ONLY wikipedia_article ADD CONSTRAINT wikipedia_article_pkey PRIMARY KEY (language, title);
265 CREATE INDEX idx_wikipedia_article_osm_id ON wikipedia_article USING btree (osm_type, osm_id);
266
267 CREATE TABLE wikipedia_redirect (
268     language text,
269     from_title text,
270     to_title text
271 );
272 ALTER TABLE ONLY wikipedia_redirect ADD CONSTRAINT wikipedia_redirect_pkey PRIMARY KEY (language, from_title);
273
274 -- osm2pgsql does not create indexes on the middle tables for Nominatim
275 -- Add one for lookup of associated street relations.
276 CREATE INDEX planet_osm_rels_parts_associated_idx ON planet_osm_rels USING gin(parts) WHERE tags @> ARRAY['associatedStreet'];
277
278 GRANT SELECT ON table country_osm_grid to "{{config.DATABASE_WEBUSER}}";