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