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