]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/functions/placex_triggers.sql
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / lib-sql / functions / placex_triggers.sql
1 -- SPDX-License-Identifier: GPL-2.0-only
2 --
3 -- This file is part of Nominatim. (https://nominatim.org)
4 --
5 -- Copyright (C) 2024 by the Nominatim developer community.
6 -- For a full list of authors see the git log.
7
8 -- Trigger functions for the placex table.
9
10 -- Information returned by update preparation.
11 DROP TYPE IF EXISTS prepare_update_info CASCADE;
12 CREATE TYPE prepare_update_info AS (
13   name HSTORE,
14   address HSTORE,
15   rank_address SMALLINT,
16   country_code TEXT,
17   class TEXT,
18   type TEXT,
19   linked_place_id BIGINT,
20   centroid_x float,
21   centroid_y float
22 );
23
24 -- Retrieve the data needed by the indexer for updating the place.
25 CREATE OR REPLACE FUNCTION placex_indexing_prepare(p placex)
26   RETURNS prepare_update_info
27   AS $$
28 DECLARE
29   location RECORD;
30   result prepare_update_info;
31   extra_names HSTORE;
32 BEGIN
33   IF not p.address ? '_inherited' THEN
34     result.address := p.address;
35   END IF;
36
37   -- For POI nodes, check if the address should be derived from a surrounding
38   -- building.
39   IF p.rank_search = 30 AND p.osm_type = 'N' THEN
40     IF p.address is null THEN
41         -- The additional && condition works around the misguided query
42         -- planner of postgis 3.0.
43         SELECT placex.address || hstore('_inherited', '') INTO result.address
44           FROM placex
45          WHERE ST_Covers(geometry, p.centroid)
46                and geometry && p.centroid
47                and placex.address is not null
48                and (placex.address ? 'housenumber' or placex.address ? 'street' or placex.address ? 'place')
49                and rank_search = 30 AND ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon')
50          LIMIT 1;
51     ELSE
52       -- See if we can inherit additional address tags from an interpolation.
53       -- These will become permanent.
54       FOR location IN
55         SELECT (address - 'interpolation'::text - 'housenumber'::text) as address
56           FROM place, planet_osm_ways w
57           WHERE place.osm_type = 'W' and place.address ? 'interpolation'
58                 and place.geometry && p.geometry
59                 and place.osm_id = w.id
60                 and p.osm_id = any(w.nodes)
61       LOOP
62         result.address := location.address || result.address;
63       END LOOP;
64     END IF;
65   END IF;
66
67   -- remove internal and derived names
68   result.address := result.address - '_unlisted_place'::TEXT;
69   SELECT hstore(array_agg(key), array_agg(value)) INTO result.name
70     FROM each(p.name) WHERE key not like '\_%';
71
72   result.class := p.class;
73   result.type := p.type;
74   result.country_code := p.country_code;
75   result.rank_address := p.rank_address;
76   result.centroid_x := ST_X(p.centroid);
77   result.centroid_y := ST_Y(p.centroid);
78
79   -- Names of linked places need to be merged in, so search for a linkable
80   -- place already here.
81   SELECT * INTO location FROM find_linked_place(p);
82
83   IF location.place_id is not NULL THEN
84     result.linked_place_id := location.place_id;
85
86     IF location.name is not NULL THEN
87       {% if debug %}RAISE WARNING 'Names original: %, location: %', result.name, location.name;{% endif %}
88       -- Add all names from the place nodes that deviate from the name
89       -- in the relation with the prefix '_place_'. Deviation means that
90       -- either the value is different or a given key is missing completely
91       IF result.name is null THEN
92         SELECT hstore(array_agg('_place_' || key), array_agg(value))
93           INTO result.name
94           FROM each(location.name);
95       ELSE
96         SELECT hstore(array_agg('_place_' || key), array_agg(value)) INTO extra_names
97           FROM each(location.name - result.name);
98         {% if debug %}RAISE WARNING 'Extra names: %', extra_names;{% endif %}
99
100         IF extra_names is not null THEN
101             result.name := result.name || extra_names;
102         END IF;
103       END IF;
104
105       {% if debug %}RAISE WARNING 'Final names: %', result.name;{% endif %}
106     END IF;
107   END IF;
108
109   RETURN result;
110 END;
111 $$
112 LANGUAGE plpgsql STABLE;
113
114
115 CREATE OR REPLACE FUNCTION find_associated_street(poi_osm_type CHAR(1),
116                                                   poi_osm_id BIGINT,
117                                                   bbox GEOMETRY)
118   RETURNS BIGINT
119   AS $$
120 DECLARE
121   location RECORD;
122   member JSONB;
123   parent RECORD;
124   result BIGINT;
125   distance FLOAT;
126   new_distance FLOAT;
127   waygeom GEOMETRY;
128 BEGIN
129 {% if db.middle_db_format == '1' %}
130   FOR location IN
131     SELECT members FROM planet_osm_rels
132     WHERE parts @> ARRAY[poi_osm_id]
133           and members @> ARRAY[lower(poi_osm_type) || poi_osm_id]
134           and tags @> ARRAY['associatedStreet']
135   LOOP
136     FOR i IN 1..array_upper(location.members, 1) BY 2 LOOP
137       IF location.members[i+1] = 'street' THEN
138         FOR parent IN
139           SELECT place_id, geometry
140            FROM placex
141            WHERE osm_type = upper(substring(location.members[i], 1, 1))::char(1)
142                  and osm_id = substring(location.members[i], 2)::bigint
143                  and name is not null
144                  and rank_search between 26 and 27
145         LOOP
146           -- Find the closest 'street' member.
147           -- Avoid distance computation for the frequent case where there is
148           -- only one street member.
149           IF waygeom is null THEN
150             result := parent.place_id;
151             waygeom := parent.geometry;
152           ELSE
153             distance := coalesce(distance, ST_Distance(waygeom, bbox));
154             new_distance := ST_Distance(parent.geometry, bbox);
155             IF new_distance < distance THEN
156               distance := new_distance;
157               result := parent.place_id;
158               waygeom := parent.geometry;
159             END IF;
160           END IF;
161         END LOOP;
162       END IF;
163     END LOOP;
164   END LOOP;
165
166 {% else %}
167   FOR member IN
168     SELECT value FROM planet_osm_rels r, LATERAL jsonb_array_elements(members)
169     WHERE planet_osm_member_ids(members, poi_osm_type::char(1)) && ARRAY[poi_osm_id]
170           and tags->>'type' = 'associatedStreet'
171           and value->>'role' = 'street'
172   LOOP
173     FOR parent IN
174       SELECT place_id, geometry
175        FROM placex
176        WHERE osm_type = (member->>'type')::char(1)
177              and osm_id = (member->>'ref')::bigint
178              and name is not null
179              and rank_search between 26 and 27
180     LOOP
181       -- Find the closest 'street' member.
182       -- Avoid distance computation for the frequent case where there is
183       -- only one street member.
184       IF waygeom is null THEN
185         result := parent.place_id;
186         waygeom := parent.geometry;
187       ELSE
188         distance := coalesce(distance, ST_Distance(waygeom, bbox));
189         new_distance := ST_Distance(parent.geometry, bbox);
190         IF new_distance < distance THEN
191           distance := new_distance;
192           result := parent.place_id;
193           waygeom := parent.geometry;
194         END IF;
195       END IF;
196     END LOOP;
197   END LOOP;
198 {% endif %}
199
200   RETURN result;
201 END;
202 $$
203 LANGUAGE plpgsql STABLE;
204
205
206 -- Find the parent road of a POI.
207 --
208 -- \returns Place ID of parent object or NULL if none
209 --
210 -- Copy data from linked items (POIs on ways, addr:street links, relations).
211 --
212 CREATE OR REPLACE FUNCTION find_parent_for_poi(poi_osm_type CHAR(1),
213                                                poi_osm_id BIGINT,
214                                                poi_partition SMALLINT,
215                                                bbox GEOMETRY,
216                                                token_info JSONB,
217                                                is_place_addr BOOLEAN)
218   RETURNS BIGINT
219   AS $$
220 DECLARE
221   parent_place_id BIGINT DEFAULT NULL;
222   location RECORD;
223 BEGIN
224   {% if debug %}RAISE WARNING 'finding street for % %', poi_osm_type, poi_osm_id;{% endif %}
225
226   -- Is this object part of an associatedStreet relation?
227   parent_place_id := find_associated_street(poi_osm_type, poi_osm_id, bbox);
228
229   IF parent_place_id is null THEN
230     parent_place_id := find_parent_for_address(token_info, poi_partition, bbox);
231   END IF;
232
233   IF parent_place_id is null and poi_osm_type = 'N' THEN
234     FOR location IN
235       SELECT p.place_id, p.osm_id, p.rank_search, p.address,
236              coalesce(p.centroid, ST_Centroid(p.geometry)) as centroid
237         FROM placex p, planet_osm_ways w
238        WHERE p.osm_type = 'W' and p.rank_search >= 26
239              and p.geometry && bbox
240              and w.id = p.osm_id and poi_osm_id = any(w.nodes)
241     LOOP
242       {% if debug %}RAISE WARNING 'Node is part of way % ', location.osm_id;{% endif %}
243
244       -- Way IS a road then we are on it - that must be our road
245       IF location.rank_search < 28 THEN
246         {% if debug %}RAISE WARNING 'node in way that is a street %',location;{% endif %}
247         RETURN location.place_id;
248       END IF;
249
250       parent_place_id := find_associated_street('W', location.osm_id, bbox);
251     END LOOP;
252   END IF;
253
254   IF parent_place_id is NULL THEN
255     IF is_place_addr THEN
256       -- The address is attached to a place we don't know.
257       -- Instead simply use the containing area with the largest rank.
258       FOR location IN
259         SELECT place_id FROM placex
260          WHERE bbox && geometry AND _ST_Covers(geometry, ST_Centroid(bbox))
261                AND rank_address between 5 and 25
262                AND ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon')
263          ORDER BY rank_address desc
264       LOOP
265         RETURN location.place_id;
266       END LOOP;
267     ELSEIF ST_Area(bbox) < 0.005 THEN
268       -- for smaller features get the nearest road
269       SELECT getNearestRoadPlaceId(poi_partition, bbox) INTO parent_place_id;
270       {% if debug %}RAISE WARNING 'Checked for nearest way (%)', parent_place_id;{% endif %}
271     ELSE
272       -- for larger features simply find the area with the largest rank that
273       -- contains the bbox, only use addressable features
274       FOR location IN
275         SELECT place_id FROM placex
276          WHERE bbox && geometry AND _ST_Covers(geometry, ST_Centroid(bbox))
277                AND rank_address between 5 and 25
278                AND ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon')
279         ORDER BY rank_address desc
280       LOOP
281         RETURN location.place_id;
282       END LOOP;
283     END IF;
284   END IF;
285
286   RETURN parent_place_id;
287 END;
288 $$
289 LANGUAGE plpgsql STABLE;
290
291 -- Try to find a linked place for the given object.
292 CREATE OR REPLACE FUNCTION find_linked_place(bnd placex)
293   RETURNS placex
294   AS $$
295 DECLARE
296 {% if db.middle_db_format == '1' %}
297   relation_members TEXT[];
298 {% else %}
299   relation_members JSONB;
300 {% endif %}
301   rel_member RECORD;
302   linked_placex placex%ROWTYPE;
303   bnd_name TEXT;
304 BEGIN
305   IF bnd.rank_search >= 26 or bnd.rank_address = 0
306      or ST_GeometryType(bnd.geometry) NOT IN ('ST_Polygon','ST_MultiPolygon')
307      or bnd.type IN ('postcode', 'postal_code')
308   THEN
309     RETURN NULL;
310   END IF;
311
312   IF bnd.osm_type = 'R' THEN
313     -- see if we have any special relation members
314     SELECT members FROM planet_osm_rels WHERE id = bnd.osm_id INTO relation_members;
315     {% if debug %}RAISE WARNING 'Got relation members';{% endif %}
316
317     -- Search for relation members with role 'lable'.
318     IF relation_members IS NOT NULL THEN
319       FOR rel_member IN
320         SELECT get_rel_node_members(relation_members, ARRAY['label']) as member
321       LOOP
322         {% if debug %}RAISE WARNING 'Found label member %', rel_member.member;{% endif %}
323
324         FOR linked_placex IN
325           SELECT * from placex
326           WHERE osm_type = 'N' and osm_id = rel_member.member
327             and class = 'place'
328         LOOP
329           {% if debug %}RAISE WARNING 'Linked label member';{% endif %}
330           RETURN linked_placex;
331         END LOOP;
332
333       END LOOP;
334     END IF;
335   END IF;
336
337   IF bnd.name ? 'name' THEN
338     bnd_name := lower(bnd.name->'name');
339     IF bnd_name = '' THEN
340       bnd_name := NULL;
341     END IF;
342   END IF;
343
344   -- If extratags has a place tag, look for linked nodes by their place type.
345   -- Area and node still have to have the same name.
346   IF bnd.extratags ? 'place' and bnd.extratags->'place' != 'postcode'
347      and bnd_name is not null
348   THEN
349     FOR linked_placex IN
350       SELECT * FROM placex
351       WHERE (position(lower(name->'name') in bnd_name) > 0
352              OR position(bnd_name in lower(name->'name')) > 0)
353         AND placex.class = 'place' AND placex.type = bnd.extratags->'place'
354         AND placex.osm_type = 'N'
355         AND (placex.linked_place_id is null or placex.linked_place_id = bnd.place_id)
356         AND placex.rank_search < 26 -- needed to select the right index
357         AND ST_Covers(bnd.geometry, placex.geometry)
358     LOOP
359       {% if debug %}RAISE WARNING 'Found type-matching place node %', linked_placex.osm_id;{% endif %}
360       RETURN linked_placex;
361     END LOOP;
362   END IF;
363
364   IF bnd.extratags ? 'wikidata' THEN
365     FOR linked_placex IN
366       SELECT * FROM placex
367       WHERE placex.class = 'place' AND placex.osm_type = 'N'
368         AND placex.extratags ? 'wikidata' -- needed to select right index
369         AND placex.extratags->'wikidata' = bnd.extratags->'wikidata'
370         AND (placex.linked_place_id is null or placex.linked_place_id = bnd.place_id)
371         AND placex.rank_search < 26
372         AND _st_covers(bnd.geometry, placex.geometry)
373       ORDER BY lower(name->'name') = bnd_name desc
374     LOOP
375       {% if debug %}RAISE WARNING 'Found wikidata-matching place node %', linked_placex.osm_id;{% endif %}
376       RETURN linked_placex;
377     END LOOP;
378   END IF;
379
380   -- Name searches can be done for ways as well as relations
381   IF bnd_name is not null THEN
382     {% if debug %}RAISE WARNING 'Looking for nodes with matching names';{% endif %}
383     FOR linked_placex IN
384       SELECT placex.* from placex
385       WHERE lower(name->'name') = bnd_name
386         AND ((bnd.rank_address > 0
387               and bnd.rank_address = (compute_place_rank(placex.country_code,
388                                                          'N', placex.class,
389                                                          placex.type, 15::SMALLINT,
390                                                          false, placex.postcode)).address_rank)
391              OR (bnd.rank_address = 0 and placex.rank_search = bnd.rank_search))
392         AND placex.osm_type = 'N'
393         AND placex.class = 'place'
394         AND (placex.linked_place_id is null or placex.linked_place_id = bnd.place_id)
395         AND placex.rank_search < 26 -- needed to select the right index
396         AND placex.type != 'postcode'
397         AND ST_Covers(bnd.geometry, placex.geometry)
398     LOOP
399       {% if debug %}RAISE WARNING 'Found matching place node %', linked_placex.osm_id;{% endif %}
400       RETURN linked_placex;
401     END LOOP;
402   END IF;
403
404   RETURN NULL;
405 END;
406 $$
407 LANGUAGE plpgsql STABLE;
408
409
410 CREATE OR REPLACE FUNCTION create_poi_search_terms(obj_place_id BIGINT,
411                                                    in_partition SMALLINT,
412                                                    parent_place_id BIGINT,
413                                                    is_place_addr BOOLEAN,
414                                                    country TEXT,
415                                                    token_info JSONB,
416                                                    geometry GEOMETRY,
417                                                    OUT name_vector INTEGER[],
418                                                    OUT nameaddress_vector INTEGER[])
419   AS $$
420 DECLARE
421   parent_name_vector INTEGER[];
422   parent_address_vector INTEGER[];
423   addr_place_ids INTEGER[];
424   hnr_vector INTEGER[];
425
426   addr_item RECORD;
427   addr_place RECORD;
428   parent_address_place_ids BIGINT[];
429 BEGIN
430   nameaddress_vector := '{}'::INTEGER[];
431
432   SELECT s.name_vector, s.nameaddress_vector
433     INTO parent_name_vector, parent_address_vector
434     FROM search_name s
435     WHERE s.place_id = parent_place_id;
436
437   FOR addr_item IN
438     SELECT ranks.*, key,
439            token_get_address_search_tokens(token_info, key) as search_tokens
440       FROM token_get_address_keys(token_info) as key,
441            LATERAL get_addr_tag_rank(key, country) as ranks
442       WHERE not token_get_address_search_tokens(token_info, key) <@ parent_address_vector
443   LOOP
444     addr_place := get_address_place(in_partition, geometry,
445                                     addr_item.from_rank, addr_item.to_rank,
446                                     addr_item.extent, token_info, addr_item.key);
447
448     IF addr_place is null THEN
449       -- No place found in OSM that matches. Make it at least searchable.
450       nameaddress_vector := array_merge(nameaddress_vector, addr_item.search_tokens);
451     ELSE
452       IF parent_address_place_ids is null THEN
453         SELECT array_agg(parent_place_id) INTO parent_address_place_ids
454           FROM place_addressline
455           WHERE place_id = parent_place_id;
456       END IF;
457
458       -- If the parent already lists the place in place_address line, then we
459       -- are done. Otherwise, add its own place_address line.
460       IF not parent_address_place_ids @> ARRAY[addr_place.place_id] THEN
461         nameaddress_vector := array_merge(nameaddress_vector, addr_place.keywords);
462
463         INSERT INTO place_addressline (place_id, address_place_id, fromarea,
464                                        isaddress, distance, cached_rank_address)
465           VALUES (obj_place_id, addr_place.place_id, not addr_place.isguess,
466                     true, addr_place.distance, addr_place.rank_address);
467       END IF;
468     END IF;
469   END LOOP;
470
471   name_vector := token_get_name_search_tokens(token_info);
472
473   -- Check if the parent covers all address terms.
474   -- If not, create a search name entry with the house number as the name.
475   -- This is unusual for the search_name table but prevents that the place
476   -- is returned when we only search for the street/place.
477
478   hnr_vector := token_get_housenumber_search_tokens(token_info);
479
480   IF hnr_vector is not null and not nameaddress_vector <@ parent_address_vector THEN
481     name_vector := array_merge(name_vector, hnr_vector);
482   END IF;
483
484   -- Cheating here by not recomputing all terms but simply using the ones
485   -- from the parent object.
486   nameaddress_vector := array_merge(nameaddress_vector, parent_name_vector);
487   nameaddress_vector := array_merge(nameaddress_vector, parent_address_vector);
488
489   -- make sure addr:place terms are always searchable
490   IF is_place_addr THEN
491     addr_place_ids := token_addr_place_search_tokens(token_info);
492     IF hnr_vector is not null AND not addr_place_ids <@ parent_name_vector
493     THEN
494       name_vector := array_merge(name_vector, hnr_vector);
495     END IF;
496     nameaddress_vector := array_merge(nameaddress_vector, addr_place_ids);
497   END IF;
498 END;
499 $$
500 LANGUAGE plpgsql;
501
502
503 -- Insert address of a place into the place_addressline table.
504 --
505 -- \param obj_place_id  Place_id of the place to compute the address for.
506 -- \param partition     Partition number where the place is in.
507 -- \param maxrank       Rank of the place. All address features must have
508 --                      a search rank lower than the given rank.
509 -- \param address       Address terms for the place.
510 -- \param geometry      Geometry to which the address objects should be close.
511 --
512 -- \retval parent_place_id  Place_id of the address object that is the direct
513 --                          ancestor.
514 -- \retval postcode         Postcode computed from the address. This is the
515 --                          addr:postcode of one of the address objects. If
516 --                          more than one of has a postcode, the highest ranking
517 --                          one is used. May be NULL.
518 -- \retval nameaddress_vector  Search terms for the address. This is the sum
519 --                             of name terms of all address objects.
520 CREATE OR REPLACE FUNCTION insert_addresslines(obj_place_id BIGINT,
521                                                partition SMALLINT,
522                                                maxrank SMALLINT,
523                                                token_info JSONB,
524                                                geometry GEOMETRY,
525                                                centroid GEOMETRY,
526                                                country TEXT,
527                                                OUT parent_place_id BIGINT,
528                                                OUT postcode TEXT,
529                                                OUT nameaddress_vector INT[])
530   AS $$
531 DECLARE
532   address_havelevel BOOLEAN[];
533
534   location_isaddress BOOLEAN;
535   current_boundary GEOMETRY := NULL;
536   current_node_area GEOMETRY := NULL;
537
538   parent_place_rank INT := 0;
539   addr_place_ids BIGINT[] := '{}'::int[];
540   new_address_vector INT[];
541
542   location RECORD;
543 BEGIN
544   parent_place_id := 0;
545   nameaddress_vector := '{}'::int[];
546
547   address_havelevel := array_fill(false, ARRAY[maxrank]);
548
549   FOR location IN
550     SELECT apl.*, key
551       FROM (SELECT extra.*, key
552               FROM token_get_address_keys(token_info) as key,
553                    LATERAL get_addr_tag_rank(key, country) as extra) x,
554            LATERAL get_address_place(partition, geometry, from_rank, to_rank,
555                               extent, token_info, key) as apl
556       ORDER BY rank_address, distance, isguess desc
557   LOOP
558     IF location.place_id is null THEN
559       {% if not db.reverse_only %}
560       nameaddress_vector := array_merge(nameaddress_vector,
561                                         token_get_address_search_tokens(token_info,
562                                                                         location.key));
563       {% endif %}
564     ELSE
565       {% if not db.reverse_only %}
566       nameaddress_vector := array_merge(nameaddress_vector, location.keywords::INTEGER[]);
567       {% endif %}
568
569       location_isaddress := not address_havelevel[location.rank_address];
570       IF not address_havelevel[location.rank_address] THEN
571         address_havelevel[location.rank_address] := true;
572         IF parent_place_rank < location.rank_address THEN
573           parent_place_id := location.place_id;
574           parent_place_rank := location.rank_address;
575         END IF;
576       END IF;
577
578       INSERT INTO place_addressline (place_id, address_place_id, fromarea,
579                                      isaddress, distance, cached_rank_address)
580         VALUES (obj_place_id, location.place_id, not location.isguess,
581                 true, location.distance, location.rank_address);
582
583       addr_place_ids := addr_place_ids || location.place_id;
584     END IF;
585   END LOOP;
586
587   FOR location IN
588     SELECT * FROM getNearFeatures(partition, geometry, centroid, maxrank)
589     WHERE not addr_place_ids @> ARRAY[place_id]
590     ORDER BY rank_address, isguess asc,
591              distance *
592                CASE WHEN rank_address = 16 AND rank_search = 15 THEN 0.2
593                     WHEN rank_address = 16 AND rank_search = 16 THEN 0.25
594                     WHEN rank_address = 16 AND rank_search = 18 THEN 0.5
595                     ELSE 1 END ASC
596   LOOP
597     -- Ignore all place nodes that do not fit in a lower level boundary.
598     CONTINUE WHEN location.isguess
599                   and current_boundary is not NULL
600                   and not ST_Contains(current_boundary, location.centroid);
601
602     -- If this is the first item in the rank, then assume it is the address.
603     location_isaddress := not address_havelevel[location.rank_address];
604
605     -- Further sanity checks to ensure that the address forms a sane hierarchy.
606     IF location_isaddress THEN
607       IF location.isguess and current_node_area is not NULL THEN
608         location_isaddress := ST_Contains(current_node_area, location.centroid);
609       END IF;
610       IF not location.isguess and current_boundary is not NULL
611          and location.rank_address != 11 AND location.rank_address != 5 THEN
612         location_isaddress := ST_Contains(current_boundary, location.centroid);
613       END IF;
614     END IF;
615
616     IF location_isaddress THEN
617       address_havelevel[location.rank_address] := true;
618       parent_place_id := location.place_id;
619
620       -- Set postcode if we have one.
621       -- (Returned will be the highest ranking one.)
622       IF location.postcode is not NULL THEN
623         postcode = location.postcode;
624       END IF;
625
626       -- Recompute the areas we need for hierarchy sanity checks.
627       IF location.rank_address != 11 AND location.rank_address != 5 THEN
628         IF location.isguess THEN
629           current_node_area := place_node_fuzzy_area(location.centroid,
630                                                      location.rank_search);
631         ELSE
632           current_node_area := NULL;
633           SELECT p.geometry FROM placex p
634               WHERE p.place_id = location.place_id INTO current_boundary;
635         END IF;
636       END IF;
637     END IF;
638
639     -- Add it to the list of search terms
640     {% if not db.reverse_only %}
641       nameaddress_vector := array_merge(nameaddress_vector,
642                                         location.keywords::integer[]);
643     {% endif %}
644
645     INSERT INTO place_addressline (place_id, address_place_id, fromarea,
646                                      isaddress, distance, cached_rank_address)
647         VALUES (obj_place_id, location.place_id, not location.isguess,
648                 location_isaddress, location.distance, location.rank_address);
649   END LOOP;
650 END;
651 $$
652 LANGUAGE plpgsql;
653
654
655 CREATE OR REPLACE FUNCTION placex_insert()
656   RETURNS TRIGGER
657   AS $$
658 DECLARE
659   postcode TEXT;
660   result BOOLEAN;
661   is_area BOOLEAN;
662   country_code VARCHAR(2);
663   diameter FLOAT;
664   classtable TEXT;
665 BEGIN
666   {% if debug %}RAISE WARNING '% % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;{% endif %}
667
668   NEW.place_id := nextval('seq_place');
669   NEW.indexed_status := 1; --STATUS_NEW
670
671   NEW.centroid := ST_PointOnSurface(NEW.geometry);
672   NEW.country_code := lower(get_country_code(NEW.centroid));
673
674   NEW.partition := get_partition(NEW.country_code);
675   NEW.geometry_sector := geometry_sector(NEW.partition, NEW.centroid);
676
677   IF NEW.osm_type = 'X' THEN
678     -- E'X'ternal records should already be in the right format so do nothing
679   ELSE
680     is_area := ST_GeometryType(NEW.geometry) IN ('ST_Polygon','ST_MultiPolygon');
681
682     IF NEW.class in ('place','boundary')
683        AND NEW.type in ('postcode','postal_code')
684     THEN
685       IF NEW.address IS NULL OR NOT NEW.address ? 'postcode' THEN
686           -- most likely just a part of a multipolygon postcode boundary, throw it away
687           RETURN NULL;
688       END IF;
689
690       NEW.name := hstore('ref', NEW.address->'postcode');
691
692     ELSEIF NEW.class = 'highway' AND is_area AND NEW.name is null
693            AND NEW.extratags ? 'area' AND NEW.extratags->'area' = 'yes'
694     THEN
695         RETURN NULL;
696     ELSEIF NEW.class = 'boundary' AND NOT is_area
697     THEN
698         RETURN NULL;
699     ELSEIF NEW.class = 'boundary' AND NEW.type = 'administrative'
700            AND NEW.admin_level <= 4 AND NEW.osm_type = 'W'
701     THEN
702         RETURN NULL;
703     END IF;
704
705     SELECT * INTO NEW.rank_search, NEW.rank_address
706       FROM compute_place_rank(NEW.country_code,
707                               CASE WHEN is_area THEN 'A' ELSE NEW.osm_type END,
708                               NEW.class, NEW.type, NEW.admin_level,
709                               (NEW.extratags->'capital') = 'yes',
710                               NEW.address->'postcode');
711
712     -- a country code make no sense below rank 4 (country)
713     IF NEW.rank_search < 4 THEN
714       NEW.country_code := NULL;
715     END IF;
716
717     -- Simplify polygons with a very large memory footprint when they
718     -- do not take part in address computation.
719     IF NEW.rank_address = 0 THEN
720       NEW.geometry := simplify_large_polygons(NEW.geometry);
721     END IF;
722
723   END IF;
724
725   {% if debug %}RAISE WARNING 'placex_insert:END: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;{% endif %}
726
727 {% if not disable_diff_updates %}
728   -- The following is not needed until doing diff updates, and slows the main index process down
729
730   IF NEW.rank_address > 0 THEN
731     IF (ST_GeometryType(NEW.geometry) in ('ST_Polygon','ST_MultiPolygon') AND ST_IsValid(NEW.geometry)) THEN
732       -- Performance: We just can't handle re-indexing for country level changes
733       IF st_area(NEW.geometry) < 1 THEN
734         -- mark items within the geometry for re-indexing
735   --    RAISE WARNING 'placex poly insert: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
736
737         UPDATE placex SET indexed_status = 2
738          WHERE ST_Intersects(NEW.geometry, placex.geometry)
739                and indexed_status = 0
740                and ((rank_address = 0 and rank_search > NEW.rank_address)
741                     or rank_address > NEW.rank_address
742                     or (class = 'place' and osm_type = 'N')
743                    )
744                and (rank_search < 28
745                     or name is not null
746                     or (NEW.rank_address >= 16 and address ? 'place'));
747       END IF;
748     ELSE
749       -- mark nearby items for re-indexing, where 'nearby' depends on the features rank_search and is a complete guess :(
750       diameter := update_place_diameter(NEW.rank_search);
751       IF diameter > 0 THEN
752   --      RAISE WARNING 'placex point insert: % % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type,diameter;
753         IF NEW.rank_search >= 26 THEN
754           -- roads may cause reparenting for >27 rank places
755           update placex set indexed_status = 2 where indexed_status = 0 and rank_search > NEW.rank_search and ST_DWithin(placex.geometry, NEW.geometry, diameter);
756           -- reparenting also for OSM Interpolation Lines (and for Tiger?)
757           update location_property_osmline set indexed_status = 2 where indexed_status = 0 and startnumber is not null and ST_DWithin(location_property_osmline.linegeo, NEW.geometry, diameter);
758         ELSEIF NEW.rank_search >= 16 THEN
759           -- up to rank 16, street-less addresses may need reparenting
760           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');
761         ELSE
762           -- for all other places the search terms may change as well
763           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);
764         END IF;
765       END IF;
766     END IF;
767   END IF;
768
769
770    -- add to tables for special search
771    -- Note: won't work on initial import because the classtype tables
772    -- do not yet exist. It won't hurt either.
773   classtable := 'place_classtype_' || NEW.class || '_' || NEW.type;
774   SELECT count(*)>0 FROM pg_tables WHERE tablename = classtable and schemaname = current_schema() INTO result;
775   IF result THEN
776     EXECUTE 'INSERT INTO ' || classtable::regclass || ' (place_id, centroid) VALUES ($1,$2)' 
777     USING NEW.place_id, ST_Centroid(NEW.geometry);
778   END IF;
779
780 {% endif %} -- not disable_diff_updates
781
782   RETURN NEW;
783
784 END;
785 $$
786 LANGUAGE plpgsql;
787
788 CREATE OR REPLACE FUNCTION placex_update()
789   RETURNS TRIGGER
790   AS $$
791 DECLARE
792   i INTEGER;
793   location RECORD;
794 {% if db.middle_db_format == '1' %}
795   relation_members TEXT[];
796 {% else %}
797   relation_member JSONB;
798 {% endif %}
799
800   geom GEOMETRY;
801   parent_address_level SMALLINT;
802   place_address_level SMALLINT;
803
804   max_rank SMALLINT;
805
806   name_vector INTEGER[];
807   nameaddress_vector INTEGER[];
808   addr_nameaddress_vector INTEGER[];
809
810   linked_place BIGINT;
811
812   linked_node_id BIGINT;
813   linked_importance FLOAT;
814   linked_wikipedia TEXT;
815
816   is_place_address BOOLEAN;
817   result BOOLEAN;
818 BEGIN
819   -- deferred delete
820   IF OLD.indexed_status = 100 THEN
821     {% if debug %}RAISE WARNING 'placex_update delete % %',NEW.osm_type,NEW.osm_id;{% endif %}
822     delete from placex where place_id = OLD.place_id;
823     RETURN NULL;
824   END IF;
825
826   IF NEW.indexed_status != 0 OR OLD.indexed_status = 0 THEN
827     RETURN NEW;
828   END IF;
829
830   {% if debug %}RAISE WARNING 'placex_update % % (%)',NEW.osm_type,NEW.osm_id,NEW.place_id;{% endif %}
831
832   NEW.indexed_date = now();
833
834   {% if 'search_name' in db.tables %}
835     DELETE from search_name WHERE place_id = NEW.place_id;
836   {% endif %}
837   result := deleteSearchName(NEW.partition, NEW.place_id);
838   DELETE FROM place_addressline WHERE place_id = NEW.place_id;
839   result := deleteRoad(NEW.partition, NEW.place_id);
840   result := deleteLocationArea(NEW.partition, NEW.place_id, NEW.rank_search);
841
842   NEW.extratags := NEW.extratags - 'linked_place'::TEXT;
843   IF NEW.extratags = ''::hstore THEN
844     NEW.extratags := NULL;
845   END IF;
846
847   -- NEW.linked_place_id contains the precomputed linkee. Save this and restore
848   -- the previous link status.
849   linked_place := NEW.linked_place_id;
850   NEW.linked_place_id := OLD.linked_place_id;
851
852   -- Remove linkage, if we have computed a different new linkee.
853   UPDATE placex SET linked_place_id = null, indexed_status = 2
854     WHERE linked_place_id = NEW.place_id
855           and (linked_place is null or linked_place_id != linked_place);
856   -- update not necessary for osmline, cause linked_place_id does not exist
857
858   -- Postcodes are just here to compute the centroids. They are not searchable
859   -- unless they are a boundary=postal_code.
860   -- There was an error in the style so that boundary=postal_code used to be
861   -- imported as place=postcode. That's why relations are allowed to pass here.
862   -- This can go away in a couple of versions.
863   IF NEW.class = 'place'  and NEW.type = 'postcode' and NEW.osm_type != 'R' THEN
864     NEW.token_info := null;
865     RETURN NEW;
866   END IF;
867
868   -- Compute a preliminary centroid.
869   NEW.centroid := ST_PointOnSurface(NEW.geometry);
870
871     -- recalculate country and partition
872   IF NEW.rank_search = 4 AND NEW.address is not NULL AND NEW.address ? 'country' THEN
873     -- for countries, believe the mapped country code,
874     -- so that we remain in the right partition if the boundaries
875     -- suddenly expand.
876     NEW.country_code := lower(NEW.address->'country');
877     NEW.partition := get_partition(lower(NEW.country_code));
878     IF NEW.partition = 0 THEN
879       NEW.country_code := lower(get_country_code(NEW.centroid));
880       NEW.partition := get_partition(NEW.country_code);
881     END IF;
882   ELSE
883     IF NEW.rank_search >= 4 THEN
884       NEW.country_code := lower(get_country_code(NEW.centroid));
885     ELSE
886       NEW.country_code := NULL;
887     END IF;
888     NEW.partition := get_partition(NEW.country_code);
889   END IF;
890   {% if debug %}RAISE WARNING 'Country updated: "%"', NEW.country_code;{% endif %}
891
892
893   -- recompute the ranks, they might change when linking changes
894   SELECT * INTO NEW.rank_search, NEW.rank_address
895     FROM compute_place_rank(NEW.country_code,
896                             CASE WHEN ST_GeometryType(NEW.geometry)
897                                         IN ('ST_Polygon','ST_MultiPolygon')
898                             THEN 'A' ELSE NEW.osm_type END,
899                             NEW.class, NEW.type, NEW.admin_level,
900                             (NEW.extratags->'capital') = 'yes',
901                             NEW.address->'postcode');
902
903   -- Short-cut out for linked places. Note that this must happen after the
904   -- address rank has been recomputed. The linking might nullify a shift in
905   -- address rank.
906   IF NEW.linked_place_id is not null THEN
907     NEW.token_info := null;
908     {% if debug %}RAISE WARNING 'place already linked to %', OLD.linked_place_id;{% endif %}
909     RETURN NEW;
910   END IF;
911
912   -- We must always increase the address level relative to the admin boundary.
913   IF NEW.class = 'boundary' and NEW.type = 'administrative'
914      and NEW.osm_type = 'R' and NEW.rank_address > 0
915   THEN
916     -- First, check that admin boundaries do not overtake each other rank-wise.
917     parent_address_level := 3;
918     FOR location IN
919       SELECT rank_address,
920              (CASE WHEN extratags ? 'wikidata' and NEW.extratags ? 'wikidata'
921                         and extratags->'wikidata' = NEW.extratags->'wikidata'
922                    THEN ST_Equals(geometry, NEW.geometry)
923                    ELSE false END) as is_same
924       FROM placex
925       WHERE osm_type = 'R' and class = 'boundary' and type = 'administrative'
926             and admin_level < NEW.admin_level and admin_level > 3
927             and rank_address between 1 and 25 -- for index selection
928             and ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') -- for index selection
929             and geometry && NEW.centroid and _ST_Covers(geometry, NEW.centroid)
930       ORDER BY admin_level desc LIMIT 1
931     LOOP
932       IF location.is_same THEN
933         -- Looks like the same boundary is replicated on multiple admin_levels.
934         -- Usual tagging in Poland. Remove our boundary from addresses.
935         NEW.rank_address := 0;
936       ELSE
937         parent_address_level := location.rank_address;
938         IF location.rank_address >= NEW.rank_address THEN
939           IF location.rank_address >= 24 THEN
940             NEW.rank_address := 25;
941           ELSE
942             NEW.rank_address := location.rank_address + 2;
943           END IF;
944         END IF;
945       END IF;
946     END LOOP;
947
948     IF NEW.rank_address > 9 THEN
949         -- Second check that the boundary is not completely contained in a
950         -- place area with a equal or higher address rank.
951         FOR location IN
952           SELECT rank_address
953           FROM placex,
954                LATERAL compute_place_rank(country_code, 'A', class, type,
955                                           admin_level, False, null) prank
956           WHERE class = 'place' and rank_address between 1 and 23
957                 and prank.address_rank >= NEW.rank_address
958                 and ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') -- select right index
959                 and geometry && NEW.geometry
960                 and geometry ~ NEW.geometry -- needed because ST_Relate does not do bbox cover test
961                 and ST_Relate(geometry, NEW.geometry, 'T*T***FF*') -- contains but not equal
962           ORDER BY prank.address_rank desc LIMIT 1
963         LOOP
964           NEW.rank_address := location.rank_address + 2;
965         END LOOP;
966     END IF;
967   ELSEIF NEW.class = 'place'
968          and ST_GeometryType(NEW.geometry) in ('ST_Polygon', 'ST_MultiPolygon')
969          and NEW.rank_address between 16 and 23
970   THEN
971     -- For place areas make sure they are not completely contained in an area
972     -- with a equal or higher address rank.
973     FOR location IN
974           SELECT rank_address
975           FROM placex,
976                LATERAL compute_place_rank(country_code, 'A', class, type,
977                                           admin_level, False, null) prank
978           WHERE prank.address_rank < 24
979                 and rank_address between 1 and 25 -- select right index
980                 and ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') -- select right index
981                 and prank.address_rank >= NEW.rank_address
982                 and geometry && NEW.geometry
983                 and geometry ~ NEW.geometry -- needed because ST_Relate does not do bbox cover test
984                 and ST_Relate(geometry, NEW.geometry, 'T*T***FF*') -- contains but not equal
985           ORDER BY prank.address_rank desc LIMIT 1
986         LOOP
987           NEW.rank_address := location.rank_address + 2;
988         END LOOP;
989   ELSEIF NEW.class = 'place' and NEW.osm_type = 'N'
990          and NEW.rank_address between 16 and 23
991   THEN
992     -- If a place node is contained in an admin or place boundary with the same
993     -- address level and has not been linked, then make the node a subpart
994     -- by increasing the address rank (city level and above).
995     FOR location IN
996         SELECT rank_address
997         FROM placex,
998              LATERAL compute_place_rank(country_code, 'A', class, type,
999                                         admin_level, False, null) prank
1000         WHERE osm_type = 'R'
1001               and rank_address between 1 and 25 -- select right index
1002               and ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') -- select right index
1003               and ((class = 'place' and prank.address_rank = NEW.rank_address)
1004                    or (class = 'boundary' and rank_address = NEW.rank_address))
1005               and geometry && NEW.centroid and _ST_Covers(geometry, NEW.centroid)
1006         LIMIT 1
1007     LOOP
1008       NEW.rank_address = NEW.rank_address + 2;
1009     END LOOP;
1010   ELSE
1011     parent_address_level := 3;
1012   END IF;
1013
1014   NEW.housenumber := token_normalized_housenumber(NEW.token_info);
1015
1016   NEW.postcode := null;
1017
1018   -- waterway ways are linked when they are part of a relation and have the same class/type
1019   IF NEW.osm_type = 'R' and NEW.class = 'waterway' THEN
1020 {% if db.middle_db_format == '1' %}
1021       FOR relation_members IN select members from planet_osm_rels r where r.id = NEW.osm_id and r.parts != array[]::bigint[]
1022       LOOP
1023           FOR i IN 1..array_upper(relation_members, 1) BY 2 LOOP
1024               IF relation_members[i+1] in ('', 'main_stream', 'side_stream') AND substring(relation_members[i],1,1) = 'w' THEN
1025                 {% if debug %}RAISE WARNING 'waterway parent %, child %/%', NEW.osm_id, i, relation_members[i];{% endif %}
1026                 FOR linked_node_id IN SELECT place_id FROM placex
1027                   WHERE osm_type = 'W' and osm_id = substring(relation_members[i],2,200)::bigint
1028                   and class = NEW.class and type in ('river', 'stream', 'canal', 'drain', 'ditch')
1029                   and ( relation_members[i+1] != 'side_stream' or NEW.name->'name' = name->'name')
1030                 LOOP
1031                   UPDATE placex SET linked_place_id = NEW.place_id WHERE place_id = linked_node_id;
1032                   {% if 'search_name' in db.tables %}
1033                     DELETE FROM search_name WHERE place_id = linked_node_id;
1034                   {% endif %}
1035                 END LOOP;
1036               END IF;
1037           END LOOP;
1038       END LOOP;
1039 {% else %}
1040     FOR relation_member IN
1041       SELECT value FROM planet_osm_rels r, LATERAL jsonb_array_elements(r.members)
1042       WHERE r.id = NEW.osm_id
1043     LOOP
1044       IF relation_member->>'role' IN ('', 'main_stream', 'side_stream')
1045          and relation_member->>'type' = 'W'
1046       THEN
1047         {% if debug %}RAISE WARNING 'waterway parent %, child %', NEW.osm_id, relation_member;{% endif %}
1048         FOR linked_node_id IN
1049           SELECT place_id FROM placex
1050           WHERE osm_type = 'W' and osm_id = (relation_member->>'ref')::bigint
1051                 and class = NEW.class and type in ('river', 'stream', 'canal', 'drain', 'ditch')
1052                 and (relation_member->>'role' != 'side_stream' or NEW.name->'name' = name->'name')
1053         LOOP
1054           UPDATE placex SET linked_place_id = NEW.place_id WHERE place_id = linked_node_id;
1055           {% if 'search_name' in db.tables %}
1056             DELETE FROM search_name WHERE place_id = linked_node_id;
1057           {% endif %}
1058         END LOOP;
1059       END IF;
1060     END LOOP;
1061 {% endif %}
1062       {% if debug %}RAISE WARNING 'Waterway processed';{% endif %}
1063   END IF;
1064
1065   NEW.importance := null;
1066   SELECT wikipedia, importance
1067     FROM compute_importance(NEW.extratags, NEW.country_code, NEW.rank_search, NEW.centroid)
1068     INTO NEW.wikipedia,NEW.importance;
1069
1070 {% if debug %}RAISE WARNING 'Importance computed from wikipedia: %', NEW.importance;{% endif %}
1071
1072   -- ---------------------------------------------------------------------------
1073   -- For low level elements we inherit from our parent road
1074   IF NEW.rank_search > 27 THEN
1075
1076     {% if debug %}RAISE WARNING 'finding street for % %', NEW.osm_type, NEW.osm_id;{% endif %}
1077     NEW.parent_place_id := null;
1078     is_place_address := not token_is_street_address(NEW.token_info);
1079
1080     -- We have to find our parent road.
1081     NEW.parent_place_id := find_parent_for_poi(NEW.osm_type, NEW.osm_id,
1082                                                NEW.partition,
1083                                                ST_Envelope(NEW.geometry),
1084                                                NEW.token_info,
1085                                                is_place_address);
1086
1087     -- If we found the road take a shortcut here.
1088     -- Otherwise fall back to the full address getting method below.
1089     IF NEW.parent_place_id is not null THEN
1090
1091       -- Get the details of the parent road
1092       SELECT p.country_code, p.postcode, p.name FROM placex p
1093        WHERE p.place_id = NEW.parent_place_id INTO location;
1094
1095       IF is_place_address and NEW.address ? 'place' THEN
1096         -- Check if the addr:place tag is part of the parent name
1097         SELECT count(*) INTO i
1098           FROM svals(location.name) AS pname WHERE pname = NEW.address->'place';
1099         IF i = 0 THEN
1100           NEW.address = NEW.address || hstore('_unlisted_place', NEW.address->'place');
1101         END IF;
1102       END IF;
1103
1104       NEW.country_code := location.country_code;
1105       {% if debug %}RAISE WARNING 'Got parent details from search name';{% endif %}
1106
1107       -- determine postcode
1108       NEW.postcode := coalesce(token_get_postcode(NEW.token_info),
1109                                location.postcode,
1110                                get_nearest_postcode(NEW.country_code, NEW.centroid));
1111
1112       IF NEW.name is not NULL THEN
1113           NEW.name := add_default_place_name(NEW.country_code, NEW.name);
1114       END IF;
1115
1116       {% if not db.reverse_only %}
1117       IF NEW.name is not NULL OR NEW.address is not NULL THEN
1118         SELECT * INTO name_vector, nameaddress_vector
1119           FROM create_poi_search_terms(NEW.place_id,
1120                                        NEW.partition, NEW.parent_place_id,
1121                                        is_place_address, NEW.country_code,
1122                                        NEW.token_info, NEW.centroid);
1123
1124         IF array_length(name_vector, 1) is not NULL THEN
1125           INSERT INTO search_name (place_id, search_rank, address_rank,
1126                                    importance, country_code, name_vector,
1127                                    nameaddress_vector, centroid)
1128                  VALUES (NEW.place_id, NEW.rank_search, NEW.rank_address,
1129                          NEW.importance, NEW.country_code, name_vector,
1130                          nameaddress_vector, NEW.centroid);
1131           {% if debug %}RAISE WARNING 'Place added to search table';{% endif %}
1132         END IF;
1133       END IF;
1134       {% endif %}
1135
1136       NEW.token_info := token_strip_info(NEW.token_info);
1137
1138       RETURN NEW;
1139     END IF;
1140
1141   END IF;
1142
1143   -- ---------------------------------------------------------------------------
1144   -- Full indexing
1145   {% if debug %}RAISE WARNING 'Using full index mode for % %', NEW.osm_type, NEW.osm_id;{% endif %}
1146   IF linked_place is not null THEN
1147     -- Recompute the ranks here as the ones from the linked place might
1148     -- have been shifted to accommodate surrounding boundaries.
1149     SELECT place_id, osm_id, class, type, extratags, rank_search,
1150            centroid, geometry,
1151            (compute_place_rank(country_code, osm_type, class, type, admin_level,
1152                               (extratags->'capital') = 'yes', null)).*
1153       INTO location
1154       FROM placex WHERE place_id = linked_place;
1155
1156     {% if debug %}RAISE WARNING 'Linked %', location;{% endif %}
1157
1158     -- Use the linked point as the centre point of the geometry,
1159     -- but only if it is within the area of the boundary.
1160     geom := coalesce(location.centroid, ST_Centroid(location.geometry));
1161     IF geom is not NULL AND ST_Within(geom, NEW.geometry) THEN
1162         NEW.centroid := geom;
1163     END IF;
1164
1165     {% if debug %}RAISE WARNING 'parent address: % rank address: %', parent_address_level, location.address_rank;{% endif %}
1166     IF location.address_rank > parent_address_level
1167        and location.address_rank < 26
1168     THEN
1169       NEW.rank_address := location.address_rank;
1170     END IF;
1171
1172     -- merge in extra tags
1173     NEW.extratags := hstore('linked_' || location.class, location.type)
1174                      || coalesce(location.extratags, ''::hstore)
1175                      || coalesce(NEW.extratags, ''::hstore);
1176
1177     -- mark the linked place (excludes from search results)
1178     -- Force reindexing to remove any traces from the search indexes and
1179     -- reset the address rank if necessary.
1180     UPDATE placex set linked_place_id = NEW.place_id, indexed_status = 2
1181       WHERE place_id = location.place_id;
1182     -- ensure that those places are not found anymore
1183     {% if 'search_name' in db.tables %}
1184       DELETE FROM search_name WHERE place_id = location.place_id;
1185     {% endif %}
1186     PERFORM deleteLocationArea(NEW.partition, location.place_id, NEW.rank_search);
1187
1188     SELECT wikipedia, importance
1189       FROM compute_importance(location.extratags, NEW.country_code,
1190                               location.rank_search, NEW.centroid)
1191       INTO linked_wikipedia,linked_importance;
1192
1193     -- Use the maximum importance if one could be computed from the linked object.
1194     IF linked_importance is not null AND
1195        (NEW.importance is null or NEW.importance < linked_importance)
1196     THEN
1197       NEW.importance = linked_importance;
1198     END IF;
1199   ELSE
1200     -- No linked place? As a last resort check if the boundary is tagged with
1201     -- a place type and adapt the rank address.
1202     IF NEW.rank_address between 4 and 25 and NEW.extratags ? 'place' THEN
1203       SELECT address_rank INTO place_address_level
1204         FROM compute_place_rank(NEW.country_code, 'A', 'place',
1205                                 NEW.extratags->'place', 0::SMALLINT, False, null);
1206       IF place_address_level > parent_address_level and
1207          place_address_level < 26 THEN
1208         NEW.rank_address := place_address_level;
1209       END IF;
1210     END IF;
1211   END IF;
1212
1213   {% if not disable_diff_updates %}
1214   IF OLD.rank_address != NEW.rank_address THEN
1215     -- After a rank shift all addresses containing us must be updated.
1216     UPDATE placex p SET indexed_status = 2 FROM place_addressline pa
1217       WHERE pa.address_place_id = NEW.place_id and p.place_id = pa.place_id
1218             and p.indexed_status = 0 and p.rank_address between 4 and 25;
1219   END IF;
1220   {% endif %}
1221
1222   IF NEW.admin_level = 2
1223      AND NEW.class = 'boundary' AND NEW.type = 'administrative'
1224      AND NEW.country_code IS NOT NULL AND NEW.osm_type = 'R'
1225   THEN
1226     -- Update the list of country names.
1227     -- Only take the name from the largest area for the given country code
1228     -- in the hope that this is the authoritative one.
1229     -- Also replace any old names so that all mapping mistakes can
1230     -- be fixed through regular OSM updates.
1231     FOR location IN
1232       SELECT osm_id FROM placex
1233        WHERE rank_search = 4 and osm_type = 'R'
1234              and country_code = NEW.country_code
1235        ORDER BY ST_Area(geometry) desc
1236        LIMIT 1
1237     LOOP
1238       IF location.osm_id = NEW.osm_id THEN
1239         {% if debug %}RAISE WARNING 'Updating names for country '%' with: %', NEW.country_code, NEW.name;{% endif %}
1240         UPDATE country_name SET derived_name = NEW.name WHERE country_code = NEW.country_code;
1241       END IF;
1242     END LOOP;
1243   END IF;
1244
1245   -- For linear features we need the full geometry for determining the address
1246   -- because they may go through several administrative entities. Otherwise use
1247   -- the centroid for performance reasons.
1248   IF ST_GeometryType(NEW.geometry) in ('ST_LineString', 'ST_MultiLineString') THEN
1249     geom := NEW.geometry;
1250   ELSE
1251     geom := NEW.centroid;
1252   END IF;
1253
1254   IF NEW.rank_address = 0 THEN
1255     max_rank := geometry_to_rank(NEW.rank_search, NEW.geometry, NEW.country_code);
1256     -- Rank 0 features may also span multiple administrative areas (e.g. lakes)
1257     -- so use the geometry here too. Just make sure the areas don't become too
1258     -- large.
1259     IF NEW.class = 'natural' or max_rank > 10 THEN
1260       geom := NEW.geometry;
1261     END IF;
1262   ELSEIF NEW.rank_address > 25 THEN
1263     max_rank := 25;
1264   ELSEIF NEW.class in ('place','boundary') and NEW.type in ('postcode','postal_code') THEN
1265     max_rank := NEW.rank_search;
1266   ELSE
1267     max_rank := NEW.rank_address;
1268   END IF;
1269
1270   SELECT * FROM insert_addresslines(NEW.place_id, NEW.partition, max_rank,
1271                                     NEW.token_info, geom, NEW.centroid,
1272                                     NEW.country_code)
1273     INTO NEW.parent_place_id, NEW.postcode, nameaddress_vector;
1274
1275   {% if debug %}RAISE WARNING 'RETURN insert_addresslines: %, %, %', NEW.parent_place_id, NEW.postcode, nameaddress_vector;{% endif %}
1276
1277   NEW.postcode := coalesce(token_get_postcode(NEW.token_info), NEW.postcode);
1278
1279   -- if we have a name add this to the name search table
1280   IF NEW.name IS NOT NULL THEN
1281     -- Initialise the name vector using our name
1282     NEW.name := add_default_place_name(NEW.country_code, NEW.name);
1283     name_vector := token_get_name_search_tokens(NEW.token_info);
1284
1285     IF NEW.rank_search <= 25 and NEW.rank_address > 0 THEN
1286       result := add_location(NEW.place_id, NEW.country_code, NEW.partition,
1287                              name_vector, NEW.rank_search, NEW.rank_address,
1288                              NEW.postcode, NEW.geometry, NEW.centroid);
1289       {% if debug %}RAISE WARNING 'added to location (full)';{% endif %}
1290     END IF;
1291
1292     IF NEW.rank_search between 26 and 27 and NEW.class = 'highway' THEN
1293       result := insertLocationRoad(NEW.partition, NEW.place_id, NEW.country_code, NEW.geometry);
1294       {% if debug %}RAISE WARNING 'insert into road location table (full)';{% endif %}
1295     END IF;
1296
1297     IF NEW.rank_address between 16 and 27 THEN
1298       result := insertSearchName(NEW.partition, NEW.place_id,
1299                                  token_get_name_match_tokens(NEW.token_info),
1300                                  NEW.rank_search, NEW.rank_address, NEW.geometry);
1301     END IF;
1302     {% if debug %}RAISE WARNING 'added to search name (full)';{% endif %}
1303
1304     {% if not db.reverse_only %}
1305         INSERT INTO search_name (place_id, search_rank, address_rank,
1306                                  importance, country_code, name_vector,
1307                                  nameaddress_vector, centroid)
1308                VALUES (NEW.place_id, NEW.rank_search, NEW.rank_address,
1309                        NEW.importance, NEW.country_code, name_vector,
1310                        nameaddress_vector, NEW.centroid);
1311     {% endif %}
1312   END IF;
1313
1314   IF NEW.postcode is null AND NEW.rank_search > 8
1315      AND (NEW.rank_address > 0
1316           OR ST_GeometryType(NEW.geometry) not in ('ST_LineString','ST_MultiLineString')
1317           OR ST_Length(NEW.geometry) < 0.02)
1318   THEN
1319     NEW.postcode := get_nearest_postcode(NEW.country_code,
1320                                          CASE WHEN NEW.rank_address > 25
1321                                               THEN NEW.centroid ELSE NEW.geometry END);
1322   END IF;
1323
1324   {% if debug %}RAISE WARNING 'place update % % finished.', NEW.osm_type, NEW.osm_id;{% endif %}
1325
1326   NEW.token_info := token_strip_info(NEW.token_info);
1327   RETURN NEW;
1328 END;
1329 $$
1330 LANGUAGE plpgsql;
1331
1332
1333 CREATE OR REPLACE FUNCTION placex_delete()
1334   RETURNS TRIGGER
1335   AS $$
1336 DECLARE
1337   b BOOLEAN;
1338   classtable TEXT;
1339 BEGIN
1340   -- RAISE WARNING 'placex_delete % %',OLD.osm_type,OLD.osm_id;
1341
1342   IF OLD.linked_place_id is null THEN
1343     update placex set linked_place_id = null, indexed_status = 2 where linked_place_id = OLD.place_id and indexed_status = 0;
1344     {% if debug %}RAISE WARNING 'placex_delete:01 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1345     update placex set linked_place_id = null where linked_place_id = OLD.place_id;
1346     {% if debug %}RAISE WARNING 'placex_delete:02 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1347   ELSE
1348     update placex set indexed_status = 2 where place_id = OLD.linked_place_id and indexed_status = 0;
1349   END IF;
1350
1351   IF OLD.rank_address < 30 THEN
1352
1353     -- mark everything linked to this place for re-indexing
1354     {% if debug %}RAISE WARNING 'placex_delete:03 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1355     UPDATE placex set indexed_status = 2 from place_addressline where address_place_id = OLD.place_id 
1356       and placex.place_id = place_addressline.place_id and indexed_status = 0 and place_addressline.isaddress;
1357
1358     {% if debug %}RAISE WARNING 'placex_delete:04 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1359     DELETE FROM place_addressline where address_place_id = OLD.place_id;
1360
1361     {% if debug %}RAISE WARNING 'placex_delete:05 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1362     b := deleteRoad(OLD.partition, OLD.place_id);
1363
1364     {% if debug %}RAISE WARNING 'placex_delete:06 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1365     update placex set indexed_status = 2 where parent_place_id = OLD.place_id and indexed_status = 0;
1366     {% if debug %}RAISE WARNING 'placex_delete:07 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1367     -- reparenting also for OSM Interpolation Lines (and for Tiger?)
1368     update location_property_osmline set indexed_status = 2 where indexed_status = 0 and parent_place_id = OLD.place_id;
1369
1370   END IF;
1371
1372   {% if debug %}RAISE WARNING 'placex_delete:08 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1373
1374   IF OLD.rank_address < 26 THEN
1375     b := deleteLocationArea(OLD.partition, OLD.place_id, OLD.rank_search);
1376   END IF;
1377
1378   {% if debug %}RAISE WARNING 'placex_delete:09 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1379
1380   IF OLD.name is not null THEN
1381     {% if 'search_name' in db.tables %}
1382       DELETE from search_name WHERE place_id = OLD.place_id;
1383     {% endif %}
1384     b := deleteSearchName(OLD.partition, OLD.place_id);
1385   END IF;
1386
1387   {% if debug %}RAISE WARNING 'placex_delete:10 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1388
1389   DELETE FROM place_addressline where place_id = OLD.place_id;
1390
1391   {% if debug %}RAISE WARNING 'placex_delete:11 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1392
1393   -- remove from tables for special search
1394   classtable := 'place_classtype_' || OLD.class || '_' || OLD.type;
1395   SELECT count(*)>0 FROM pg_tables WHERE tablename = classtable and schemaname = current_schema() INTO b;
1396   IF b THEN
1397     EXECUTE 'DELETE FROM ' || classtable::regclass || ' WHERE place_id = $1' USING OLD.place_id;
1398   END IF;
1399
1400   {% if debug %}RAISE WARNING 'placex_delete:12 % %',OLD.osm_type,OLD.osm_id;{% endif %}
1401
1402   RETURN OLD;
1403
1404 END;
1405 $$
1406 LANGUAGE plpgsql;