]> git.openstreetmap.org Git - nominatim.git/blob - sql/functions/placex_triggers.sql
overhaul address computation
[nominatim.git] / sql / functions / placex_triggers.sql
1 -- Trigger functions for the placex table.
2
3 -- Find the parent road of a POI.
4 --
5 -- \returns Place ID of parent object or NULL if none
6 --
7 -- Copy data from linked items (POIs on ways, addr:street links, relations).
8 --
9 CREATE OR REPLACE FUNCTION find_parent_for_poi(poi_osm_type CHAR(1),
10                                                poi_osm_id BIGINT,
11                                                poi_partition SMALLINT,
12                                                bbox GEOMETRY,
13                                                addr_street TEXT,
14                                                addr_place TEXT,
15                                                fallback BOOL = true)
16   RETURNS BIGINT
17   AS $$
18 DECLARE
19   parent_place_id BIGINT DEFAULT NULL;
20   location RECORD;
21   parent RECORD;
22 BEGIN
23     --DEBUG: RAISE WARNING 'finding street for % %', poi_osm_type, poi_osm_id;
24
25     -- Is this object part of an associatedStreet relation?
26     FOR location IN
27       SELECT members FROM planet_osm_rels
28       WHERE parts @> ARRAY[poi_osm_id]
29         and members @> ARRAY[lower(poi_osm_type) || poi_osm_id]
30         and tags @> ARRAY['associatedStreet']
31     LOOP
32       FOR i IN 1..array_upper(location.members, 1) BY 2 LOOP
33         IF location.members[i+1] = 'street' THEN
34           FOR parent IN
35             SELECT place_id from placex
36              WHERE osm_type = 'W' and osm_id = substring(location.members[i],2)::bigint
37                and name is not null
38                and rank_search between 26 and 27
39           LOOP
40             RETURN parent.place_id;
41           END LOOP;
42         END IF;
43       END LOOP;
44     END LOOP;
45
46     parent_place_id := find_parent_for_address(addr_street, addr_place,
47                                                poi_partition, bbox);
48     IF parent_place_id is not null THEN
49       RETURN parent_place_id;
50     END IF;
51
52     IF poi_osm_type = 'N' THEN
53       -- Is this node part of an interpolation?
54       FOR parent IN
55         SELECT q.parent_place_id
56           FROM location_property_osmline q, planet_osm_ways x
57          WHERE q.linegeo && bbox and x.id = q.osm_id
58                and poi_osm_id = any(x.nodes)
59          LIMIT 1
60       LOOP
61         --DEBUG: RAISE WARNING 'Get parent from interpolation: %', parent.parent_place_id;
62         RETURN parent.parent_place_id;
63       END LOOP;
64
65       -- Is this node part of any other way?
66       FOR location IN
67         SELECT p.place_id, p.osm_id, p.rank_search, p.address,
68                coalesce(p.centroid, ST_Centroid(p.geometry)) as centroid
69           FROM placex p, planet_osm_ways w
70          WHERE p.osm_type = 'W' and p.rank_search >= 26
71                and p.geometry && bbox
72                and w.id = p.osm_id and poi_osm_id = any(w.nodes)
73       LOOP
74         --DEBUG: RAISE WARNING 'Node is part of way % ', location.osm_id;
75
76         -- Way IS a road then we are on it - that must be our road
77         IF location.rank_search < 28 THEN
78           --DEBUG: RAISE WARNING 'node in way that is a street %',location;
79           return location.place_id;
80         END IF;
81
82         SELECT find_parent_for_poi('W', location.osm_id, poi_partition,
83                                    location.centroid,
84                                    location.address->'street',
85                                    location.address->'place',
86                                    false)
87           INTO parent_place_id;
88         IF parent_place_id is not null THEN
89           RETURN parent_place_id;
90         END IF;
91       END LOOP;
92     END IF;
93
94     IF fallback THEN
95       IF addr_street is null and addr_place is not null THEN
96         -- The address is attached to a place we don't know.
97         -- Instead simply use the containing area with the largest rank.
98         FOR location IN
99           SELECT place_id FROM placex
100             WHERE bbox @ geometry AND _ST_Covers(geometry, ST_Centroid(bbox))
101                   AND rank_address between 5 and 25
102             ORDER BY rank_address desc
103         LOOP
104             RETURN location.place_id;
105         END LOOP;
106       ELSEIF ST_Area(bbox) < 0.005 THEN
107         -- for smaller features get the nearest road
108         SELECT getNearestRoadPlaceId(poi_partition, bbox) INTO parent_place_id;
109         --DEBUG: RAISE WARNING 'Checked for nearest way (%)', parent_place_id;
110       ELSE
111         -- for larger features simply find the area with the largest rank that
112         -- contains the bbox, only use addressable features
113         FOR location IN
114           SELECT place_id FROM placex
115             WHERE bbox @ geometry AND _ST_Covers(geometry, ST_Centroid(bbox))
116                   AND rank_address between 5 and 25
117             ORDER BY rank_address desc
118         LOOP
119             RETURN location.place_id;
120         END LOOP;
121       END IF;
122     END IF;
123
124     RETURN parent_place_id;
125 END;
126 $$
127 LANGUAGE plpgsql STABLE;
128
129 -- Try to find a linked place for the given object.
130 CREATE OR REPLACE FUNCTION find_linked_place(bnd placex)
131   RETURNS placex
132   AS $$
133 DECLARE
134   relation_members TEXT[];
135   rel_member RECORD;
136   linked_placex placex%ROWTYPE;
137   bnd_name TEXT;
138 BEGIN
139   IF bnd.rank_search >= 26 or bnd.rank_address = 0
140      or ST_GeometryType(bnd.geometry) NOT IN ('ST_Polygon','ST_MultiPolygon')
141   THEN
142     RETURN NULL;
143   END IF;
144
145   IF bnd.osm_type = 'R' THEN
146     -- see if we have any special relation members
147     SELECT members FROM planet_osm_rels WHERE id = bnd.osm_id INTO relation_members;
148     --DEBUG: RAISE WARNING 'Got relation members';
149
150     -- Search for relation members with role 'lable'.
151     IF relation_members IS NOT NULL THEN
152       FOR rel_member IN
153         SELECT get_rel_node_members(relation_members, ARRAY['label']) as member
154       LOOP
155         --DEBUG: RAISE WARNING 'Found label member %', rel_member.member;
156
157         FOR linked_placex IN
158           SELECT * from placex
159           WHERE osm_type = 'N' and osm_id = rel_member.member
160             and class = 'place'
161         LOOP
162           --DEBUG: RAISE WARNING 'Linked label member';
163           RETURN linked_placex;
164         END LOOP;
165
166       END LOOP;
167     END IF;
168   END IF;
169
170   IF bnd.name ? 'name' THEN
171     bnd_name := make_standard_name(bnd.name->'name');
172     IF bnd_name = '' THEN
173       bnd_name := NULL;
174     END IF;
175   END IF;
176
177   -- If extratags has a place tag, look for linked nodes by their place type.
178   -- Area and node still have to have the same name.
179   IF bnd.extratags ? 'place' and bnd_name is not null THEN
180     FOR linked_placex IN
181       SELECT * FROM placex
182       WHERE make_standard_name(name->'name') = bnd_name
183         AND placex.class = 'place' AND placex.type = bnd.extratags->'place'
184         AND placex.osm_type = 'N'
185         AND placex.rank_search < 26 -- needed to select the right index
186         AND _st_covers(bnd.geometry, placex.geometry)
187     LOOP
188       --DEBUG: RAISE WARNING 'Found type-matching place node %', linked_placex.osm_id;
189       RETURN linked_placex;
190     END LOOP;
191   END IF;
192
193   IF bnd.extratags ? 'wikidata' THEN
194     FOR linked_placex IN
195       SELECT * FROM placex
196       WHERE placex.class = 'place' AND placex.osm_type = 'N'
197         AND placex.extratags ? 'wikidata' -- needed to select right index
198         AND placex.extratags->'wikidata' = bnd.extratags->'wikidata'
199         AND placex.rank_search < 26
200         AND _st_covers(bnd.geometry, placex.geometry)
201       ORDER BY make_standard_name(name->'name') = bnd_name desc
202     LOOP
203       --DEBUG: RAISE WARNING 'Found wikidata-matching place node %', linked_placex.osm_id;
204       RETURN linked_placex;
205     END LOOP;
206   END IF;
207
208   -- Name searches can be done for ways as well as relations
209   IF bnd_name is not null THEN
210     --DEBUG: RAISE WARNING 'Looking for nodes with matching names';
211     FOR linked_placex IN
212       SELECT placex.* from placex
213       WHERE make_standard_name(name->'name') = bnd_name
214         AND ((bnd.rank_address > 0
215               and bnd.rank_address = (compute_place_rank(placex.country_code,
216                                                          'N', placex.class,
217                                                          placex.type, 15::SMALLINT,
218                                                          false, placex.postcode)).address_rank)
219              OR (bnd.rank_address = 0 and placex.rank_search = bnd.rank_search))
220         AND placex.osm_type = 'N'
221         AND placex.rank_search < 26 -- needed to select the right index
222         AND _st_covers(bnd.geometry, placex.geometry)
223     LOOP
224       --DEBUG: RAISE WARNING 'Found matching place node %', linked_placex.osm_id;
225       RETURN linked_placex;
226     END LOOP;
227   END IF;
228
229   RETURN NULL;
230 END;
231 $$
232 LANGUAGE plpgsql STABLE;
233
234
235 -- Insert address of a place into the place_addressline table.
236 --
237 -- \param obj_place_id  Place_id of the place to compute the address for.
238 -- \param partition     Partition number where the place is in.
239 -- \param maxrank       Rank of the place. All address features must have
240 --                      a search rank lower than the given rank.
241 -- \param address       Address terms for the place.
242 -- \param geometry      Geometry to which the address objects should be close.
243 --
244 -- \retval parent_place_id  Place_id of the address object that is the direct
245 --                          ancestor.
246 -- \retval postcode         Postcode computed from the address. This is the
247 --                          addr:postcode of one of the address objects. If
248 --                          more than one of has a postcode, the highest ranking
249 --                          one is used. May be NULL.
250 -- \retval nameaddress_vector  Search terms for the address. This is the sum
251 --                             of name terms of all address objects.
252 CREATE OR REPLACE FUNCTION insert_addresslines(obj_place_id BIGINT,
253                                                partition SMALLINT,
254                                                maxrank SMALLINT,
255                                                address HSTORE,
256                                                geometry GEOMETRY,
257                                                OUT parent_place_id BIGINT,
258                                                OUT postcode TEXT,
259                                                OUT nameaddress_vector INT[])
260   AS $$
261 DECLARE
262   address_havelevel BOOLEAN[];
263
264   location_isaddress BOOLEAN;
265   current_boundary GEOMETRY := NULL;
266   current_node_area GEOMETRY := NULL;
267
268   location RECORD;
269   addr_item RECORD;
270
271   isin_tokens INT[];
272 BEGIN
273   parent_place_id := 0;
274   nameaddress_vector := '{}'::int[];
275   isin_tokens := '{}'::int[];
276
277   ---- convert address store to array of tokenids
278   IF address IS NOT NULL THEN
279     FOR addr_item IN SELECT * FROM each(address)
280     LOOP
281       IF addr_item.key IN ('city', 'tiger:county', 'state', 'suburb', 'province',
282                            'district', 'region', 'county', 'municipality',
283                            'hamlet', 'village', 'subdistrict', 'town',
284                            'neighbourhood', 'quarter', 'parish')
285       THEN
286         isin_tokens := array_merge(isin_tokens,
287                                    word_ids_from_name(addr_item.value));
288         IF NOT %REVERSE-ONLY% THEN
289           nameaddress_vector := array_merge(nameaddress_vector,
290                                             addr_ids_from_name(addr_item.value));
291         END IF;
292       END IF;
293     END LOOP;
294   END IF;
295   IF NOT %REVERSE-ONLY% THEN
296     nameaddress_vector := array_merge(nameaddress_vector, isin_tokens);
297   END IF;
298
299   ---- now compute the address terms
300   FOR i IN 1..maxrank LOOP
301     address_havelevel[i] := false;
302   END LOOP;
303
304   FOR location IN
305     SELECT * FROM getNearFeatures(partition, geometry, maxrank)
306     ORDER BY rank_address, isin_tokens && keywords desc, isguess asc,
307              distance *
308                CASE WHEN rank_address = 16 AND rank_search = 15 THEN 0.2
309                     WHEN rank_address = 16 AND rank_search = 16 THEN 0.25
310                     WHEN rank_address = 16 AND rank_search = 18 THEN 0.5
311                     ELSE 1 END ASC
312   LOOP
313     -- Ignore all place nodes that do not fit in a lower level boundary.
314     CONTINUE WHEN location.isguess
315                   and current_boundary is not NULL
316                   and not ST_Contains(current_boundary, location.centroid);
317
318     -- If this is the first item in the rank, then assume it is the address.
319     location_isaddress := not address_havelevel[location.rank_address];
320
321     -- Further sanity checks to ensure that the address forms a sane hierarchy.
322     IF location_isaddress THEN
323       IF location.isguess and current_node_area is not NULL THEN
324         location_isaddress := ST_Contains(current_node_area, location.centroid);
325       END IF;
326       IF not location.isguess and current_boundary is not NULL
327          and location.rank_address != 11 AND location.rank_address != 5 THEN
328         location_isaddress := ST_Contains(current_boundary, location.centroid);
329       END IF;
330     END IF;
331
332     IF location_isaddress THEN
333       address_havelevel[location.rank_address] := true;
334       parent_place_id := location.place_id;
335
336       -- Set postcode if we have one.
337       -- (Returned will be the highest ranking one.)
338       IF location.postcode is not NULL THEN
339         postcode = location.postcode;
340       END IF;
341
342       -- Recompute the areas we need for hierarchy sanity checks.
343       IF location.rank_address != 11 AND location.rank_address != 5 THEN
344         IF location.isguess THEN
345           current_node_area := place_node_fuzzy_area(location.centroid,
346                                                      location.rank_search);
347         ELSE
348           current_node_area := NULL;
349           SELECT p.geometry FROM placex p
350               WHERE p.place_id = location.place_id INTO current_boundary;
351         END IF;
352       END IF;
353     END IF;
354
355     -- Add it to the list of search terms
356     IF NOT %REVERSE-ONLY% THEN
357       nameaddress_vector := array_merge(nameaddress_vector,
358                                         location.keywords::integer[]);
359     END IF;
360
361     INSERT INTO place_addressline (place_id, address_place_id, fromarea,
362                                      isaddress, distance, cached_rank_address)
363         VALUES (obj_place_id, location.place_id, true,
364                 location_isaddress, location.distance, location.rank_address);
365   END LOOP;
366 END;
367 $$
368 LANGUAGE plpgsql;
369
370
371 CREATE OR REPLACE FUNCTION placex_insert()
372   RETURNS TRIGGER
373   AS $$
374 DECLARE
375   postcode TEXT;
376   result BOOLEAN;
377   is_area BOOLEAN;
378   country_code VARCHAR(2);
379   diameter FLOAT;
380   classtable TEXT;
381 BEGIN
382   --DEBUG: RAISE WARNING '% % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
383
384   NEW.place_id := nextval('seq_place');
385   NEW.indexed_status := 1; --STATUS_NEW
386
387   NEW.country_code := lower(get_country_code(NEW.geometry));
388
389   NEW.partition := get_partition(NEW.country_code);
390   NEW.geometry_sector := geometry_sector(NEW.partition, NEW.geometry);
391
392   IF NEW.osm_type = 'X' THEN
393     -- E'X'ternal records should already be in the right format so do nothing
394   ELSE
395     is_area := ST_GeometryType(NEW.geometry) IN ('ST_Polygon','ST_MultiPolygon');
396
397     IF NEW.class in ('place','boundary')
398        AND NEW.type in ('postcode','postal_code')
399     THEN
400       IF NEW.address IS NULL OR NOT NEW.address ? 'postcode' THEN
401           -- most likely just a part of a multipolygon postcode boundary, throw it away
402           RETURN NULL;
403       END IF;
404
405       NEW.name := hstore('ref', NEW.address->'postcode');
406
407     ELSEIF NEW.class = 'highway' AND is_area AND NEW.name is null
408            AND NEW.extratags ? 'area' AND NEW.extratags->'area' = 'yes'
409     THEN
410         RETURN NULL;
411     ELSEIF NEW.class = 'boundary' AND NOT is_area
412     THEN
413         RETURN NULL;
414     ELSEIF NEW.class = 'boundary' AND NEW.type = 'administrative'
415            AND NEW.admin_level <= 4 AND NEW.osm_type = 'W'
416     THEN
417         RETURN NULL;
418     END IF;
419
420     SELECT * INTO NEW.rank_search, NEW.rank_address
421       FROM compute_place_rank(NEW.country_code,
422                               CASE WHEN is_area THEN 'A' ELSE NEW.osm_type END,
423                               NEW.class, NEW.type, NEW.admin_level,
424                               (NEW.extratags->'capital') = 'yes',
425                               NEW.address->'postcode');
426
427     -- a country code make no sense below rank 4 (country)
428     IF NEW.rank_search < 4 THEN
429       NEW.country_code := NULL;
430     END IF;
431
432   END IF;
433
434   --DEBUG: RAISE WARNING 'placex_insert:END: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
435
436   RETURN NEW; -- %DIFFUPDATES% The following is not needed until doing diff updates, and slows the main index process down
437
438   IF NEW.osm_type = 'N' and NEW.rank_search > 28 THEN
439       -- might be part of an interpolation
440       result := osmline_reinsert(NEW.osm_id, NEW.geometry);
441   ELSEIF NEW.rank_address > 0 THEN
442     IF (ST_GeometryType(NEW.geometry) in ('ST_Polygon','ST_MultiPolygon') AND ST_IsValid(NEW.geometry)) THEN
443       -- Performance: We just can't handle re-indexing for country level changes
444       IF st_area(NEW.geometry) < 1 THEN
445         -- mark items within the geometry for re-indexing
446   --    RAISE WARNING 'placex poly insert: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
447
448         UPDATE placex SET indexed_status = 2
449          WHERE ST_Intersects(NEW.geometry, placex.geometry)
450                and indexed_status = 0
451                and ((rank_address = 0 and rank_search > NEW.rank_address)
452                     or rank_address > NEW.rank_address
453                     or (class = 'place' and osm_type = 'N')
454                    )
455                and (rank_search < 28
456                     or name is not null
457                     or (NEW.rank_address >= 16 and address ? 'place'));
458       END IF;
459     ELSE
460       -- mark nearby items for re-indexing, where 'nearby' depends on the features rank_search and is a complete guess :(
461       diameter := update_place_diameter(NEW.rank_search);
462       IF diameter > 0 THEN
463   --      RAISE WARNING 'placex point insert: % % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type,diameter;
464         IF NEW.rank_search >= 26 THEN
465           -- roads may cause reparenting for >27 rank places
466           update placex set indexed_status = 2 where indexed_status = 0 and rank_search > NEW.rank_search and ST_DWithin(placex.geometry, NEW.geometry, diameter);
467           -- reparenting also for OSM Interpolation Lines (and for Tiger?)
468           update location_property_osmline set indexed_status = 2 where indexed_status = 0 and ST_DWithin(location_property_osmline.linegeo, NEW.geometry, diameter);
469         ELSEIF NEW.rank_search >= 16 THEN
470           -- up to rank 16, street-less addresses may need reparenting
471           update placex set indexed_status = 2 where indexed_status = 0 and rank_search > NEW.rank_search and ST_DWithin(placex.geometry, NEW.geometry, diameter) and (rank_search < 28 or name is not null or address ? 'place');
472         ELSE
473           -- for all other places the search terms may change as well
474           update placex set indexed_status = 2 where indexed_status = 0 and rank_search > NEW.rank_search and ST_DWithin(placex.geometry, NEW.geometry, diameter) and (rank_search < 28 or name is not null);
475         END IF;
476       END IF;
477     END IF;
478   END IF;
479
480
481    -- add to tables for special search
482    -- Note: won't work on initial import because the classtype tables
483    -- do not yet exist. It won't hurt either.
484   classtable := 'place_classtype_' || NEW.class || '_' || NEW.type;
485   SELECT count(*)>0 FROM pg_tables WHERE tablename = classtable and schemaname = current_schema() INTO result;
486   IF result THEN
487     EXECUTE 'INSERT INTO ' || classtable::regclass || ' (place_id, centroid) VALUES ($1,$2)' 
488     USING NEW.place_id, ST_Centroid(NEW.geometry);
489   END IF;
490
491   RETURN NEW;
492
493 END;
494 $$
495 LANGUAGE plpgsql;
496
497 CREATE OR REPLACE FUNCTION get_parent_address_level(geom GEOMETRY, in_level SMALLINT)
498   RETURNS SMALLINT
499   AS $$
500 DECLARE
501   address_rank SMALLINT;
502 BEGIN
503   IF in_level <= 3 or in_level > 15 THEN
504     address_rank := 3;
505   ELSE
506     SELECT rank_address INTO address_rank
507       FROM placex
508       WHERE osm_type = 'R' and class = 'boundary' and type = 'administrative'
509             and admin_level < in_level
510             and geometry && geom and ST_Covers(geometry, geom)
511       ORDER BY admin_level desc LIMIT 1;
512   END IF;
513
514   IF address_rank is NULL or address_rank <= 3 THEN
515     RETURN 3;
516   END IF;
517
518   RETURN address_rank;
519 END;
520 $$
521 LANGUAGE plpgsql;
522
523
524 CREATE OR REPLACE FUNCTION placex_update()
525   RETURNS TRIGGER
526   AS $$
527 DECLARE
528   i INTEGER;
529   location RECORD;
530   relation_members TEXT[];
531
532   centroid GEOMETRY;
533   parent_address_level SMALLINT;
534   place_address_level SMALLINT;
535
536   addr_street TEXT;
537   addr_place TEXT;
538
539   name_vector INTEGER[];
540   nameaddress_vector INTEGER[];
541   addr_nameaddress_vector INTEGER[];
542
543   inherited_address HSTORE;
544
545   linked_node_id BIGINT;
546   linked_importance FLOAT;
547   linked_wikipedia TEXT;
548
549   result BOOLEAN;
550 BEGIN
551   -- deferred delete
552   IF OLD.indexed_status = 100 THEN
553     --DEBUG: RAISE WARNING 'placex_update delete % %',NEW.osm_type,NEW.osm_id;
554     delete from placex where place_id = OLD.place_id;
555     RETURN NULL;
556   END IF;
557
558   IF NEW.indexed_status != 0 OR OLD.indexed_status = 0 THEN
559     RETURN NEW;
560   END IF;
561
562   --DEBUG: RAISE WARNING 'placex_update % % (%)',NEW.osm_type,NEW.osm_id,NEW.place_id;
563
564   NEW.indexed_date = now();
565
566   IF NOT %REVERSE-ONLY% THEN
567     DELETE from search_name WHERE place_id = NEW.place_id;
568   END IF;
569   result := deleteSearchName(NEW.partition, NEW.place_id);
570   DELETE FROM place_addressline WHERE place_id = NEW.place_id;
571   result := deleteRoad(NEW.partition, NEW.place_id);
572   result := deleteLocationArea(NEW.partition, NEW.place_id, NEW.rank_search);
573   UPDATE placex set linked_place_id = null, indexed_status = 2
574          where linked_place_id = NEW.place_id;
575   -- update not necessary for osmline, cause linked_place_id does not exist
576
577   NEW.extratags := NEW.extratags - 'linked_place'::TEXT;
578   NEW.address := NEW.address - '_unlisted_place'::TEXT;
579
580   IF NEW.linked_place_id is not null THEN
581     --DEBUG: RAISE WARNING 'place already linked to %', NEW.linked_place_id;
582     RETURN NEW;
583   END IF;
584
585   -- Postcodes are just here to compute the centroids. They are not searchable
586   -- unless they are a boundary=postal_code.
587   -- There was an error in the style so that boundary=postal_code used to be
588   -- imported as place=postcode. That's why relations are allowed to pass here.
589   -- This can go away in a couple of versions.
590   IF NEW.class = 'place'  and NEW.type = 'postcode' and NEW.osm_type != 'R' THEN
591     RETURN NEW;
592   END IF;
593
594   -- Speed up searches - just use the centroid of the feature
595   -- cheaper but less acurate
596   NEW.centroid := ST_PointOnSurface(NEW.geometry);
597   --DEBUG: RAISE WARNING 'Computing preliminary centroid at %',ST_AsText(NEW.centroid);
598
599   -- recompute the ranks, they might change when linking changes
600   SELECT * INTO NEW.rank_search, NEW.rank_address
601     FROM compute_place_rank(NEW.country_code,
602                             CASE WHEN ST_GeometryType(NEW.geometry)
603                                         IN ('ST_Polygon','ST_MultiPolygon')
604                             THEN 'A' ELSE NEW.osm_type END,
605                             NEW.class, NEW.type, NEW.admin_level,
606                             (NEW.extratags->'capital') = 'yes',
607                             NEW.address->'postcode');
608   -- We must always increase the address level relative to the admin boundary.
609   IF NEW.class = 'boundary' and NEW.type = 'administrative'
610      and NEW.osm_type = 'R' and NEW.rank_address > 0
611   THEN
612     parent_address_level := get_parent_address_level(NEW.centroid, NEW.admin_level);
613     IF parent_address_level >= NEW.rank_address THEN
614       IF parent_address_level >= 24 THEN
615         NEW.rank_address := 25;
616       ELSE
617         NEW.rank_address := parent_address_level + 2;
618       END IF;
619     END IF;
620   -- If a place node is contained in a admin boundary with the same address level
621   -- and has not been linked, then make the node a subpart by increasing the
622   -- address rank (city level and above).
623   ELSEIF NEW.class = 'place' and NEW.osm_type = 'N'
624      and NEW.rank_address between 16 and 23
625   THEN
626     FOR location IN
627         SELECT rank_address FROM placex
628         WHERE osm_type = 'R' and class = 'boundary' and type = 'administrative'
629               and rank_address = NEW.rank_address
630               and geometry && NEW.centroid and _ST_Covers(geometry, NEW.centroid)
631         LIMIT 1
632     LOOP
633       NEW.rank_address = NEW.rank_address + 2;
634     END LOOP;
635   ELSE
636     parent_address_level := 3;
637   END IF;
638
639   --DEBUG: RAISE WARNING 'Copy over address tags';
640   -- housenumber is a computed field, so start with an empty value
641   NEW.housenumber := NULL;
642   IF NEW.address is not NULL THEN
643       IF NEW.address ? 'conscriptionnumber' THEN
644         i := getorcreate_housenumber_id(make_standard_name(NEW.address->'conscriptionnumber'));
645         IF NEW.address ? 'streetnumber' THEN
646             i := getorcreate_housenumber_id(make_standard_name(NEW.address->'streetnumber'));
647             NEW.housenumber := (NEW.address->'conscriptionnumber') || '/' || (NEW.address->'streetnumber');
648         ELSE
649             NEW.housenumber := NEW.address->'conscriptionnumber';
650         END IF;
651       ELSEIF NEW.address ? 'streetnumber' THEN
652         NEW.housenumber := NEW.address->'streetnumber';
653         i := getorcreate_housenumber_id(make_standard_name(NEW.address->'streetnumber'));
654       ELSEIF NEW.address ? 'housenumber' THEN
655         NEW.housenumber := NEW.address->'housenumber';
656         i := getorcreate_housenumber_id(make_standard_name(NEW.housenumber));
657       END IF;
658
659       addr_street := NEW.address->'street';
660       addr_place := NEW.address->'place';
661
662       IF NEW.address ? 'postcode' and NEW.address->'postcode' not similar to '%(:|,|;)%' THEN
663         i := getorcreate_postcode_id(NEW.address->'postcode');
664       END IF;
665   END IF;
666
667   NEW.postcode := null;
668
669   -- recalculate country and partition
670   IF NEW.rank_search = 4 AND NEW.address is not NULL AND NEW.address ? 'country' THEN
671     -- for countries, believe the mapped country code,
672     -- so that we remain in the right partition if the boundaries
673     -- suddenly expand.
674     NEW.country_code := lower(NEW.address->'country');
675     NEW.partition := get_partition(lower(NEW.country_code));
676     IF NEW.partition = 0 THEN
677       NEW.country_code := lower(get_country_code(NEW.centroid));
678       NEW.partition := get_partition(NEW.country_code);
679     END IF;
680   ELSE
681     IF NEW.rank_search >= 4 THEN
682       NEW.country_code := lower(get_country_code(NEW.centroid));
683     ELSE
684       NEW.country_code := NULL;
685     END IF;
686     NEW.partition := get_partition(NEW.country_code);
687   END IF;
688   --DEBUG: RAISE WARNING 'Country updated: "%"', NEW.country_code;
689
690   -- waterway ways are linked when they are part of a relation and have the same class/type
691   IF NEW.osm_type = 'R' and NEW.class = 'waterway' THEN
692       FOR relation_members IN select members from planet_osm_rels r where r.id = NEW.osm_id and r.parts != array[]::bigint[]
693       LOOP
694           FOR i IN 1..array_upper(relation_members, 1) BY 2 LOOP
695               IF relation_members[i+1] in ('', 'main_stream', 'side_stream') AND substring(relation_members[i],1,1) = 'w' THEN
696                 --DEBUG: RAISE WARNING 'waterway parent %, child %/%', NEW.osm_id, i, relation_members[i];
697                 FOR linked_node_id IN SELECT place_id FROM placex
698                   WHERE osm_type = 'W' and osm_id = substring(relation_members[i],2,200)::bigint
699                   and class = NEW.class and type in ('river', 'stream', 'canal', 'drain', 'ditch')
700                   and ( relation_members[i+1] != 'side_stream' or NEW.name->'name' = name->'name')
701                 LOOP
702                   UPDATE placex SET linked_place_id = NEW.place_id WHERE place_id = linked_node_id;
703                   IF NOT %REVERSE-ONLY% THEN
704                     DELETE FROM search_name WHERE place_id = linked_node_id;
705                   END IF;
706                 END LOOP;
707               END IF;
708           END LOOP;
709       END LOOP;
710       --DEBUG: RAISE WARNING 'Waterway processed';
711   END IF;
712
713   NEW.importance := null;
714   SELECT wikipedia, importance
715     FROM compute_importance(NEW.extratags, NEW.country_code, NEW.osm_type, NEW.osm_id)
716     INTO NEW.wikipedia,NEW.importance;
717
718 --DEBUG: RAISE WARNING 'Importance computed from wikipedia: %', NEW.importance;
719
720   -- ---------------------------------------------------------------------------
721   -- For low level elements we inherit from our parent road
722   IF NEW.rank_search > 27 THEN
723
724     --DEBUG: RAISE WARNING 'finding street for % %', NEW.osm_type, NEW.osm_id;
725     NEW.parent_place_id := null;
726
727     -- if we have a POI and there is no address information,
728     -- see if we can get it from a surrounding building
729     inherited_address := ''::HSTORE;
730     IF NEW.osm_type = 'N' AND addr_street IS NULL AND addr_place IS NULL
731        AND NEW.housenumber IS NULL THEN
732       FOR location IN
733         -- The additional && condition works around the misguided query
734         -- planner of postgis 3.0.
735         SELECT address from placex where ST_Covers(geometry, NEW.centroid)
736             and geometry && NEW.centroid
737             and (address ? 'housenumber' or address ? 'street' or address ? 'place')
738             and rank_search > 28 AND ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon')
739             limit 1
740       LOOP
741         NEW.housenumber := location.address->'housenumber';
742         addr_street := location.address->'street';
743         addr_place := location.address->'place';
744         inherited_address := location.address;
745       END LOOP;
746     END IF;
747
748     -- We have to find our parent road.
749     NEW.parent_place_id := find_parent_for_poi(NEW.osm_type, NEW.osm_id,
750                                                NEW.partition,
751                                                ST_Envelope(NEW.geometry),
752                                                addr_street, addr_place);
753
754     -- If we found the road take a shortcut here.
755     -- Otherwise fall back to the full address getting method below.
756     IF NEW.parent_place_id is not null THEN
757
758       -- Get the details of the parent road
759       SELECT p.country_code, p.postcode, p.name FROM placex p
760        WHERE p.place_id = NEW.parent_place_id INTO location;
761
762       IF addr_street is null and addr_place is not null THEN
763         -- Check if the addr:place tag is part of the parent name
764         SELECT count(*) INTO i
765           FROM svals(location.name) AS pname WHERE pname = addr_place;
766         IF i = 0 THEN
767           NEW.address = NEW.address || hstore('_unlisted_place', addr_place);
768         END IF;
769       END IF;
770
771       NEW.country_code := location.country_code;
772       --DEBUG: RAISE WARNING 'Got parent details from search name';
773
774       -- determine postcode
775       IF NEW.address is not null AND NEW.address ? 'postcode' THEN
776           NEW.postcode = upper(trim(NEW.address->'postcode'));
777       ELSE
778          NEW.postcode := location.postcode;
779       END IF;
780       IF NEW.postcode is null THEN
781         NEW.postcode := get_nearest_postcode(NEW.country_code, NEW.geometry);
782       END IF;
783
784       IF NEW.name is not NULL THEN
785           NEW.name := add_default_place_name(NEW.country_code, NEW.name);
786           name_vector := make_keywords(NEW.name);
787
788           IF NEW.rank_search <= 25 and NEW.rank_address > 0 THEN
789             result := add_location(NEW.place_id, NEW.country_code, NEW.partition,
790                                    name_vector, NEW.rank_search, NEW.rank_address,
791                                    upper(trim(NEW.address->'postcode')), NEW.geometry);
792             --DEBUG: RAISE WARNING 'Place added to location table';
793           END IF;
794
795       END IF;
796
797       IF NOT %REVERSE-ONLY% THEN
798         SELECT * INTO name_vector, nameaddress_vector
799           FROM create_poi_search_terms(NEW.parent_place_id,
800                                        inherited_address || NEW.address,
801                                        NEW.housenumber, name_vector);
802
803         IF array_length(name_vector, 1) is not NULL THEN
804           INSERT INTO search_name (place_id, search_rank, address_rank,
805                                    importance, country_code, name_vector,
806                                    nameaddress_vector, centroid)
807                  VALUES (NEW.place_id, NEW.rank_search, NEW.rank_address,
808                          NEW.importance, NEW.country_code, name_vector,
809                          nameaddress_vector, NEW.centroid);
810           --DEBUG: RAISE WARNING 'Place added to search table';
811         END IF;
812       END IF;
813
814       RETURN NEW;
815     END IF;
816
817   END IF;
818
819   -- ---------------------------------------------------------------------------
820   -- Full indexing
821   --DEBUG: RAISE WARNING 'Using full index mode for % %', NEW.osm_type, NEW.osm_id;
822   SELECT * INTO location FROM find_linked_place(NEW);
823   IF location.place_id is not null THEN
824     --DEBUG: RAISE WARNING 'Linked %', location;
825
826     -- Use the linked point as the centre point of the geometry,
827     -- but only if it is within the area of the boundary.
828     centroid := coalesce(location.centroid, ST_Centroid(location.geometry));
829     IF centroid is not NULL AND ST_Within(centroid, NEW.geometry) THEN
830         NEW.centroid := centroid;
831     END IF;
832
833     --DEBUG: RAISE WARNING 'parent address: % rank address: %', parent_address_level, location.rank_address;
834     IF location.rank_address > parent_address_level
835        and location.rank_address < 26
836     THEN
837       NEW.rank_address := location.rank_address;
838     END IF;
839
840     -- merge in the label name
841     IF NOT location.name IS NULL THEN
842       NEW.name := location.name || NEW.name;
843     END IF;
844
845     -- merge in extra tags
846     NEW.extratags := hstore('linked_' || location.class, location.type)
847                      || coalesce(location.extratags, ''::hstore)
848                      || coalesce(NEW.extratags, ''::hstore);
849
850     -- mark the linked place (excludes from search results)
851     UPDATE placex set linked_place_id = NEW.place_id
852       WHERE place_id = location.place_id;
853     -- ensure that those places are not found anymore
854     IF NOT %REVERSE-ONLY% THEN
855       DELETE FROM search_name WHERE place_id = location.place_id;
856     END IF;
857     PERFORM deleteLocationArea(NEW.partition, location.place_id, NEW.rank_search);
858
859     SELECT wikipedia, importance
860       FROM compute_importance(location.extratags, NEW.country_code,
861                               'N', location.osm_id)
862       INTO linked_wikipedia,linked_importance;
863
864     -- Use the maximum importance if one could be computed from the linked object.
865     IF linked_importance is not null AND
866        (NEW.importance is null or NEW.importance < linked_importance)
867     THEN
868       NEW.importance = linked_importance;
869     END IF;
870   ELSE
871     -- No linked place? As a last resort check if the boundary is tagged with
872     -- a place type and adapt the rank address.
873     IF NEW.rank_address > 0 and NEW.extratags ? 'place' THEN
874       SELECT address_rank INTO place_address_level
875         FROM compute_place_rank(NEW.country_code, 'A', 'place',
876                                 NEW.extratags->'place', 0::SMALLINT, False, null);
877       IF place_address_level > parent_address_level and
878          place_address_level < 26 THEN
879         NEW.rank_address := place_address_level;
880       END IF;
881     END IF;
882   END IF;
883
884   -- Initialise the name vector using our name
885   NEW.name := add_default_place_name(NEW.country_code, NEW.name);
886   name_vector := make_keywords(NEW.name);
887
888   -- make sure all names are in the word table
889   IF NEW.admin_level = 2
890      AND NEW.class = 'boundary' AND NEW.type = 'administrative'
891      AND NEW.country_code IS NOT NULL AND NEW.osm_type = 'R'
892   THEN
893     PERFORM create_country(NEW.name, lower(NEW.country_code));
894     --DEBUG: RAISE WARNING 'Country names updated';
895   END IF;
896
897   SELECT * FROM insert_addresslines(NEW.place_id, NEW.partition,
898                                     CASE WHEN NEW.rank_address = 0
899                                       THEN NEW.rank_search ELSE NEW.rank_address END,
900                                     NEW.address,
901                                     CASE WHEN NEW.rank_search >= 26
902                                              AND NEW.rank_search < 30
903                                       THEN NEW.geometry ELSE NEW.centroid END)
904     INTO NEW.parent_place_id, NEW.postcode, nameaddress_vector;
905
906   --DEBUG: RAISE WARNING 'RETURN insert_addresslines: %, %, %', NEW.parent_place_id, NEW.postcode, nameaddress_vector;
907
908   IF NEW.address is not null AND NEW.address ? 'postcode' 
909      AND NEW.address->'postcode' not similar to '%(,|;)%' THEN
910     NEW.postcode := upper(trim(NEW.address->'postcode'));
911   END IF;
912
913   IF NEW.postcode is null AND NEW.rank_search > 8 THEN
914     NEW.postcode := get_nearest_postcode(NEW.country_code, NEW.geometry);
915   END IF;
916
917   -- if we have a name add this to the name search table
918   IF NEW.name IS NOT NULL THEN
919
920     IF NEW.rank_search <= 25 and NEW.rank_address > 0 THEN
921       result := add_location(NEW.place_id, NEW.country_code, NEW.partition, name_vector, NEW.rank_search, NEW.rank_address, upper(trim(NEW.address->'postcode')), NEW.geometry);
922       --DEBUG: RAISE WARNING 'added to location (full)';
923     END IF;
924
925     IF NEW.rank_search between 26 and 27 and NEW.class = 'highway' THEN
926       result := insertLocationRoad(NEW.partition, NEW.place_id, NEW.country_code, NEW.geometry);
927       --DEBUG: RAISE WARNING 'insert into road location table (full)';
928     END IF;
929
930     result := insertSearchName(NEW.partition, NEW.place_id, name_vector,
931                                NEW.rank_search, NEW.rank_address, NEW.geometry);
932     --DEBUG: RAISE WARNING 'added to search name (full)';
933
934     IF NOT %REVERSE-ONLY% THEN
935         INSERT INTO search_name (place_id, search_rank, address_rank,
936                                  importance, country_code, name_vector,
937                                  nameaddress_vector, centroid)
938                VALUES (NEW.place_id, NEW.rank_search, NEW.rank_address,
939                        NEW.importance, NEW.country_code, name_vector,
940                        nameaddress_vector, NEW.centroid);
941     END IF;
942
943   END IF;
944
945   --DEBUG: RAISE WARNING 'place update % % finsihed.', NEW.osm_type, NEW.osm_id;
946
947   RETURN NEW;
948 END;
949 $$
950 LANGUAGE plpgsql;
951
952
953 CREATE OR REPLACE FUNCTION placex_delete()
954   RETURNS TRIGGER
955   AS $$
956 DECLARE
957   b BOOLEAN;
958   classtable TEXT;
959 BEGIN
960   -- RAISE WARNING 'placex_delete % %',OLD.osm_type,OLD.osm_id;
961
962   IF OLD.linked_place_id is null THEN
963     update placex set linked_place_id = null, indexed_status = 2 where linked_place_id = OLD.place_id and indexed_status = 0;
964     --DEBUG: RAISE WARNING 'placex_delete:01 % %',OLD.osm_type,OLD.osm_id;
965     update placex set linked_place_id = null where linked_place_id = OLD.place_id;
966     --DEBUG: RAISE WARNING 'placex_delete:02 % %',OLD.osm_type,OLD.osm_id;
967   ELSE
968     update placex set indexed_status = 2 where place_id = OLD.linked_place_id and indexed_status = 0;
969   END IF;
970
971   IF OLD.rank_address < 30 THEN
972
973     -- mark everything linked to this place for re-indexing
974     --DEBUG: RAISE WARNING 'placex_delete:03 % %',OLD.osm_type,OLD.osm_id;
975     UPDATE placex set indexed_status = 2 from place_addressline where address_place_id = OLD.place_id 
976       and placex.place_id = place_addressline.place_id and indexed_status = 0 and place_addressline.isaddress;
977
978     --DEBUG: RAISE WARNING 'placex_delete:04 % %',OLD.osm_type,OLD.osm_id;
979     DELETE FROM place_addressline where address_place_id = OLD.place_id;
980
981     --DEBUG: RAISE WARNING 'placex_delete:05 % %',OLD.osm_type,OLD.osm_id;
982     b := deleteRoad(OLD.partition, OLD.place_id);
983
984     --DEBUG: RAISE WARNING 'placex_delete:06 % %',OLD.osm_type,OLD.osm_id;
985     update placex set indexed_status = 2 where parent_place_id = OLD.place_id and indexed_status = 0;
986     --DEBUG: RAISE WARNING 'placex_delete:07 % %',OLD.osm_type,OLD.osm_id;
987     -- reparenting also for OSM Interpolation Lines (and for Tiger?)
988     update location_property_osmline set indexed_status = 2 where indexed_status = 0 and parent_place_id = OLD.place_id;
989
990   END IF;
991
992   --DEBUG: RAISE WARNING 'placex_delete:08 % %',OLD.osm_type,OLD.osm_id;
993
994   IF OLD.rank_address < 26 THEN
995     b := deleteLocationArea(OLD.partition, OLD.place_id, OLD.rank_search);
996   END IF;
997
998   --DEBUG: RAISE WARNING 'placex_delete:09 % %',OLD.osm_type,OLD.osm_id;
999
1000   IF OLD.name is not null THEN
1001     IF NOT %REVERSE-ONLY% THEN
1002       DELETE from search_name WHERE place_id = OLD.place_id;
1003     END IF;
1004     b := deleteSearchName(OLD.partition, OLD.place_id);
1005   END IF;
1006
1007   --DEBUG: RAISE WARNING 'placex_delete:10 % %',OLD.osm_type,OLD.osm_id;
1008
1009   DELETE FROM place_addressline where place_id = OLD.place_id;
1010
1011   --DEBUG: RAISE WARNING 'placex_delete:11 % %',OLD.osm_type,OLD.osm_id;
1012
1013   -- remove from tables for special search
1014   classtable := 'place_classtype_' || OLD.class || '_' || OLD.type;
1015   SELECT count(*)>0 FROM pg_tables WHERE tablename = classtable and schemaname = current_schema() INTO b;
1016   IF b THEN
1017     EXECUTE 'DELETE FROM ' || classtable::regclass || ' WHERE place_id = $1' USING OLD.place_id;
1018   END IF;
1019
1020   --DEBUG: RAISE WARNING 'placex_delete:12 % %',OLD.osm_type,OLD.osm_id;
1021
1022   RETURN OLD;
1023
1024 END;
1025 $$
1026 LANGUAGE plpgsql;