]> git.openstreetmap.org Git - nominatim.git/blob - sql/functions.sql
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / sql / functions.sql
1 --DROP TRIGGER IF EXISTS place_before_insert on placex;
2 --DROP TRIGGER IF EXISTS place_before_update on placex;
3 --CREATE TYPE addresscalculationtype AS (
4 --  word text,
5 --  score integer
6 --);
7
8 CREATE OR REPLACE FUNCTION getclasstypekey(c text, t text) RETURNS TEXT
9   AS $$
10 DECLARE
11 BEGIN
12   RETURN c||'|'||t;
13 END;
14 $$
15 LANGUAGE plpgsql IMMUTABLE;
16
17 CREATE OR REPLACE FUNCTION isbrokengeometry(place geometry) RETURNS BOOLEAN
18   AS $$
19 DECLARE
20   NEWgeometry geometry;
21 BEGIN
22   NEWgeometry := place;
23   IF ST_IsEmpty(NEWgeometry) OR NOT ST_IsValid(NEWgeometry) OR ST_X(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') OR ST_Y(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') THEN  
24     RETURN true;
25   END IF;
26   RETURN false;
27 END;
28 $$
29 LANGUAGE plpgsql IMMUTABLE;
30
31 CREATE OR REPLACE FUNCTION clean_geometry(place geometry) RETURNS geometry
32   AS $$
33 DECLARE
34   NEWgeometry geometry;
35 BEGIN
36   NEWgeometry := place;
37   IF ST_X(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') OR ST_Y(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') THEN  
38     NEWgeometry := ST_buffer(NEWgeometry,0);
39     IF ST_X(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') OR ST_Y(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') THEN  
40       RETURN ST_SetSRID(ST_Point(0,0),4326);
41     END IF;
42   END IF;
43   RETURN NEWgeometry;
44 END;
45 $$
46 LANGUAGE plpgsql IMMUTABLE;
47
48 CREATE OR REPLACE FUNCTION geometry_sector(partition INTEGER, place geometry) RETURNS INTEGER
49   AS $$
50 DECLARE
51   NEWgeometry geometry;
52 BEGIN
53 --  RAISE WARNING '%',place;
54   NEWgeometry := ST_PointOnSurface(place);
55 --  IF ST_IsEmpty(NEWgeometry) OR NOT ST_IsValid(NEWgeometry) OR ST_X(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') OR ST_Y(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') THEN  
56 --    NEWgeometry := ST_buffer(NEWgeometry,0);
57 --    IF ST_IsEmpty(NEWgeometry) OR NOT ST_IsValid(NEWgeometry) OR ST_X(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') OR ST_Y(ST_Centroid(NEWgeometry))::text in ('NaN','Infinity','-Infinity') THEN  
58 --      RETURN 0;
59 --    END IF;
60 --  END IF;
61   RETURN (partition*1000000) + (500-ST_X(NEWgeometry)::integer)*1000 + (500-ST_Y(NEWgeometry)::integer);
62 END;
63 $$
64 LANGUAGE plpgsql IMMUTABLE;
65
66 CREATE OR REPLACE FUNCTION transliteration(text) RETURNS text
67   AS '{modulepath}/nominatim.so', 'transliteration'
68 LANGUAGE c IMMUTABLE STRICT;
69
70 CREATE OR REPLACE FUNCTION gettokenstring(text) RETURNS text
71   AS '{modulepath}/nominatim.so', 'gettokenstring'
72 LANGUAGE c IMMUTABLE STRICT;
73
74 CREATE OR REPLACE FUNCTION make_standard_name(name TEXT) RETURNS TEXT
75   AS $$
76 DECLARE
77   o TEXT;
78 BEGIN
79   o := gettokenstring(transliteration(name));
80   RETURN trim(substr(o,1,length(o)));
81 END;
82 $$
83 LANGUAGE 'plpgsql' IMMUTABLE;
84
85 -- returns NULL if the word is too common
86 CREATE OR REPLACE FUNCTION getorcreate_word_id(lookup_word TEXT) 
87   RETURNS INTEGER
88   AS $$
89 DECLARE
90   lookup_token TEXT;
91   return_word_id INTEGER;
92   count INTEGER;
93 BEGIN
94   lookup_token := trim(lookup_word);
95   SELECT min(word_id), max(search_name_count) FROM word WHERE word_token = lookup_token and class is null and type is null into return_word_id, count;
96   IF return_word_id IS NULL THEN
97     return_word_id := nextval('seq_word');
98     INSERT INTO word VALUES (return_word_id, lookup_token, null, null, null, null, 0);
99   ELSE
100     IF count > get_maxwordfreq() THEN
101       return_word_id := NULL;
102     END IF;
103   END IF;
104   RETURN return_word_id;
105 END;
106 $$
107 LANGUAGE plpgsql;
108
109 CREATE OR REPLACE FUNCTION getorcreate_housenumber_id(lookup_word TEXT)
110   RETURNS INTEGER
111   AS $$
112 DECLARE
113   lookup_token TEXT;
114   return_word_id INTEGER;
115 BEGIN
116   lookup_token := ' '||trim(lookup_word);
117   SELECT min(word_id) FROM word WHERE word_token = lookup_token and class='place' and type='house' into return_word_id;
118   IF return_word_id IS NULL THEN
119     return_word_id := nextval('seq_word');
120     INSERT INTO word VALUES (return_word_id, lookup_token, null, 'place', 'house', null, 0);
121   END IF;
122   RETURN return_word_id;
123 END;
124 $$
125 LANGUAGE plpgsql;
126
127 CREATE OR REPLACE FUNCTION getorcreate_country(lookup_word TEXT, lookup_country_code varchar(2))
128   RETURNS INTEGER
129   AS $$
130 DECLARE
131   lookup_token TEXT;
132   return_word_id INTEGER;
133 BEGIN
134   lookup_token := ' '||trim(lookup_word);
135   SELECT min(word_id) FROM word WHERE word_token = lookup_token and country_code=lookup_country_code into return_word_id;
136   IF return_word_id IS NULL THEN
137     return_word_id := nextval('seq_word');
138     INSERT INTO word VALUES (return_word_id, lookup_token, null, null, null, lookup_country_code, 0);
139   END IF;
140   RETURN return_word_id;
141 END;
142 $$
143 LANGUAGE plpgsql;
144
145 CREATE OR REPLACE FUNCTION getorcreate_amenity(lookup_word TEXT, lookup_class text, lookup_type text)
146   RETURNS INTEGER
147   AS $$
148 DECLARE
149   lookup_token TEXT;
150   return_word_id INTEGER;
151 BEGIN
152   lookup_token := ' '||trim(lookup_word);
153   SELECT min(word_id) FROM word WHERE word_token = lookup_token and class=lookup_class and type = lookup_type into return_word_id;
154   IF return_word_id IS NULL THEN
155     return_word_id := nextval('seq_word');
156     INSERT INTO word VALUES (return_word_id, lookup_token, null, lookup_class, lookup_type, null, 0);
157   END IF;
158   RETURN return_word_id;
159 END;
160 $$
161 LANGUAGE plpgsql;
162
163 CREATE OR REPLACE FUNCTION getorcreate_tagpair(lookup_class text, lookup_type text)
164   RETURNS INTEGER
165   AS $$
166 DECLARE
167   lookup_token TEXT;
168   return_word_id INTEGER;
169 BEGIN
170   lookup_token := lookup_class||'='||lookup_type;
171   SELECT min(word_id) FROM word WHERE word_token = lookup_token into return_word_id;
172   IF return_word_id IS NULL THEN
173     return_word_id := nextval('seq_word');
174     INSERT INTO word VALUES (return_word_id, lookup_token, null, null, null, null, 0);
175   END IF;
176   RETURN return_word_id;
177 END;
178 $$
179 LANGUAGE plpgsql;
180
181 CREATE OR REPLACE FUNCTION get_tagpair(lookup_class text, lookup_type text)
182   RETURNS INTEGER
183   AS $$
184 DECLARE
185   lookup_token TEXT;
186   return_word_id INTEGER;
187 BEGIN
188   lookup_token := lookup_class||'='||lookup_type;
189   SELECT min(word_id) FROM word WHERE word_token = lookup_token into return_word_id;
190   RETURN return_word_id;
191 END;
192 $$
193 LANGUAGE plpgsql;
194
195 CREATE OR REPLACE FUNCTION getorcreate_amenityoperator(lookup_word TEXT, lookup_class text, lookup_type text, op text)
196   RETURNS INTEGER
197   AS $$
198 DECLARE
199   lookup_token TEXT;
200   return_word_id INTEGER;
201 BEGIN
202   lookup_token := ' '||trim(lookup_word);
203   SELECT min(word_id) FROM word WHERE word_token = lookup_token and class=lookup_class and type = lookup_type and operator = op into return_word_id;
204   IF return_word_id IS NULL THEN
205     return_word_id := nextval('seq_word');
206     INSERT INTO word VALUES (return_word_id, lookup_token, null, lookup_class, lookup_type, null, 0, op);
207   END IF;
208   RETURN return_word_id;
209 END;
210 $$
211 LANGUAGE plpgsql;
212
213 CREATE OR REPLACE FUNCTION getorcreate_name_id(lookup_word TEXT, src_word TEXT) 
214   RETURNS INTEGER
215   AS $$
216 DECLARE
217   lookup_token TEXT;
218   nospace_lookup_token TEXT;
219   return_word_id INTEGER;
220 BEGIN
221   lookup_token := ' '||trim(lookup_word);
222   SELECT min(word_id) FROM word WHERE word_token = lookup_token and class is null and type is null into return_word_id;
223   IF return_word_id IS NULL THEN
224     return_word_id := nextval('seq_word');
225     INSERT INTO word VALUES (return_word_id, lookup_token, src_word, null, null, null, 0);
226 --    nospace_lookup_token := replace(replace(lookup_token, '-',''), ' ','');
227 --    IF ' '||nospace_lookup_token != lookup_token THEN
228 --      INSERT INTO word VALUES (return_word_id, '-'||nospace_lookup_token, null, src_word, null, null, null, 0, null);
229 --    END IF;
230   END IF;
231   RETURN return_word_id;
232 END;
233 $$
234 LANGUAGE plpgsql;
235
236 CREATE OR REPLACE FUNCTION getorcreate_name_id(lookup_word TEXT) 
237   RETURNS INTEGER
238   AS $$
239 DECLARE
240 BEGIN
241   RETURN getorcreate_name_id(lookup_word, '');
242 END;
243 $$
244 LANGUAGE plpgsql;
245
246 CREATE OR REPLACE FUNCTION get_word_id(lookup_word TEXT) 
247   RETURNS INTEGER
248   AS $$
249 DECLARE
250   lookup_token TEXT;
251   return_word_id INTEGER;
252 BEGIN
253   lookup_token := trim(lookup_word);
254   SELECT min(word_id) FROM word WHERE word_token = lookup_token and class is null and type is null into return_word_id;
255   RETURN return_word_id;
256 END;
257 $$
258 LANGUAGE plpgsql IMMUTABLE;
259
260 CREATE OR REPLACE FUNCTION get_name_id(lookup_word TEXT) 
261   RETURNS INTEGER
262   AS $$
263 DECLARE
264   lookup_token TEXT;
265   return_word_id INTEGER;
266 BEGIN
267   lookup_token := ' '||trim(lookup_word);
268   SELECT min(word_id) FROM word WHERE word_token = lookup_token and class is null and type is null into return_word_id;
269   RETURN return_word_id;
270 END;
271 $$
272 LANGUAGE plpgsql IMMUTABLE;
273
274 CREATE OR REPLACE FUNCTION get_name_ids(lookup_word TEXT)
275   RETURNS INTEGER[]
276   AS $$
277 DECLARE
278   lookup_token TEXT;
279   return_word_ids INTEGER[];
280 BEGIN
281   lookup_token := ' '||trim(lookup_word);
282   SELECT array_agg(word_id) FROM word WHERE word_token = lookup_token and class is null and type is null into return_word_ids;
283   RETURN return_word_ids;
284 END;
285 $$
286 LANGUAGE plpgsql IMMUTABLE;
287
288 CREATE OR REPLACE FUNCTION array_merge(a INTEGER[], b INTEGER[])
289   RETURNS INTEGER[]
290   AS $$
291 DECLARE
292   i INTEGER;
293   r INTEGER[];
294 BEGIN
295   IF array_upper(a, 1) IS NULL THEN
296     RETURN b;
297   END IF;
298   IF array_upper(b, 1) IS NULL THEN
299     RETURN a;
300   END IF;
301   r := a;
302   FOR i IN 1..array_upper(b, 1) LOOP  
303     IF NOT (ARRAY[b[i]] <@ r) THEN
304       r := r || b[i];
305     END IF;
306   END LOOP;
307   RETURN r;
308 END;
309 $$
310 LANGUAGE plpgsql IMMUTABLE;
311
312 CREATE OR REPLACE FUNCTION create_country(src HSTORE, lookup_country_code varchar(2)) RETURNS VOID
313   AS $$
314 DECLARE
315   s TEXT;
316   w INTEGER;
317   words TEXT[];
318   item RECORD;
319   j INTEGER;
320 BEGIN
321   FOR item IN SELECT (each(src)).* LOOP
322
323     s := make_standard_name(item.value);
324     w := getorcreate_country(s, lookup_country_code);
325
326     words := regexp_split_to_array(item.value, E'[,;()]');
327     IF array_upper(words, 1) != 1 THEN
328       FOR j IN 1..array_upper(words, 1) LOOP
329         s := make_standard_name(words[j]);
330         IF s != '' THEN
331           w := getorcreate_country(s, lookup_country_code);
332         END IF;
333       END LOOP;
334     END IF;
335   END LOOP;
336 END;
337 $$
338 LANGUAGE plpgsql;
339
340 CREATE OR REPLACE FUNCTION make_keywords(src HSTORE) RETURNS INTEGER[]
341   AS $$
342 DECLARE
343   result INTEGER[];
344   s TEXT;
345   w INTEGER;
346   words TEXT[];
347   item RECORD;
348   j INTEGER;
349 BEGIN
350   result := '{}'::INTEGER[];
351
352   FOR item IN SELECT (each(src)).* LOOP
353
354     s := make_standard_name(item.value);
355
356     w := getorcreate_name_id(s, item.value);
357
358     IF not(ARRAY[w] <@ result) THEN
359       result := result || w;
360     END IF;
361
362     w := getorcreate_word_id(s);
363
364     IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
365       result := result || w;
366     END IF;
367
368     words := string_to_array(s, ' ');
369     IF array_upper(words, 1) IS NOT NULL THEN
370       FOR j IN 1..array_upper(words, 1) LOOP
371         IF (words[j] != '') THEN
372           w = getorcreate_word_id(words[j]);
373           IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
374             result := result || w;
375           END IF;
376         END IF;
377       END LOOP;
378     END IF;
379
380     words := regexp_split_to_array(item.value, E'[,;()]');
381     IF array_upper(words, 1) != 1 THEN
382       FOR j IN 1..array_upper(words, 1) LOOP
383         s := make_standard_name(words[j]);
384         IF s != '' THEN
385           w := getorcreate_word_id(s);
386           IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
387             result := result || w;
388           END IF;
389         END IF;
390       END LOOP;
391     END IF;
392
393     s := regexp_replace(item.value, '市$', '');
394     IF s != item.value THEN
395       s := make_standard_name(s);
396       IF s != '' THEN
397         w := getorcreate_name_id(s, item.value);
398         IF NOT (ARRAY[w] <@ result) THEN
399           result := result || w;
400         END IF;
401       END IF;
402     END IF;
403
404   END LOOP;
405
406   RETURN result;
407 END;
408 $$
409 LANGUAGE plpgsql IMMUTABLE;
410
411 CREATE OR REPLACE FUNCTION make_keywords(src TEXT) RETURNS INTEGER[]
412   AS $$
413 DECLARE
414   result INTEGER[];
415   s TEXT;
416   w INTEGER;
417   words TEXT[];
418   i INTEGER;
419   j INTEGER;
420 BEGIN
421   result := '{}'::INTEGER[];
422
423   s := make_standard_name(src);
424   w := getorcreate_name_id(s, src);
425
426   IF NOT (ARRAY[w] <@ result) THEN
427     result := result || w;
428   END IF;
429
430   w := getorcreate_word_id(s);
431
432   IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
433     result := result || w;
434   END IF;
435
436   words := string_to_array(s, ' ');
437   IF array_upper(words, 1) IS NOT NULL THEN
438     FOR j IN 1..array_upper(words, 1) LOOP
439       IF (words[j] != '') THEN
440         w = getorcreate_word_id(words[j]);
441         IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
442           result := result || w;
443         END IF;
444       END IF;
445     END LOOP;
446   END IF;
447
448   words := regexp_split_to_array(src, E'[,;()]');
449   IF array_upper(words, 1) != 1 THEN
450     FOR j IN 1..array_upper(words, 1) LOOP
451       s := make_standard_name(words[j]);
452       IF s != '' THEN
453         w := getorcreate_word_id(s);
454         IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
455           result := result || w;
456         END IF;
457       END IF;
458     END LOOP;
459   END IF;
460
461   s := regexp_replace(src, '市$', '');
462   IF s != src THEN
463     s := make_standard_name(s);
464     IF s != '' THEN
465       w := getorcreate_name_id(s, src);
466       IF NOT (ARRAY[w] <@ result) THEN
467         result := result || w;
468       END IF;
469     END IF;
470   END IF;
471
472   RETURN result;
473 END;
474 $$
475 LANGUAGE plpgsql IMMUTABLE;
476
477 CREATE OR REPLACE FUNCTION get_word_score(wordscores wordscore[], words text[]) RETURNS integer
478   AS $$
479 DECLARE
480   idxword integer;
481   idxscores integer;
482   result integer;
483 BEGIN
484   IF (wordscores is null OR words is null) THEN
485     RETURN 0;
486   END IF;
487
488   result := 0;
489   FOR idxword in 1 .. array_upper(words, 1) LOOP
490     FOR idxscores in 1 .. array_upper(wordscores, 1) LOOP
491       IF wordscores[idxscores].word = words[idxword] THEN
492         result := result + wordscores[idxscores].score;
493       END IF;
494     END LOOP;
495   END LOOP;
496
497   RETURN result;
498 END;
499 $$
500 LANGUAGE plpgsql IMMUTABLE;
501
502 CREATE OR REPLACE FUNCTION get_country_code(place geometry) RETURNS TEXT
503   AS $$
504 DECLARE
505   place_centre GEOMETRY;
506   nearcountry RECORD;
507 BEGIN
508   place_centre := ST_PointOnSurface(place);
509
510 --DEBUG: RAISE WARNING 'get_country_code, start: %', ST_AsText(place_centre);
511
512   -- Try for a OSM polygon
513   FOR nearcountry IN select country_code from location_area_country where country_code is not null and not isguess and st_covers(geometry, place_centre) limit 1
514   LOOP
515     RETURN nearcountry.country_code;
516   END LOOP;
517
518 --DEBUG: RAISE WARNING 'osm fallback: %', ST_AsText(place_centre);
519
520   -- Try for OSM fallback data
521   -- The order is to deal with places like HongKong that are 'states' within another polygon
522   FOR nearcountry IN select country_code from country_osm_grid where st_covers(geometry, place_centre) order by area asc limit 1
523   LOOP
524     RETURN nearcountry.country_code;
525   END LOOP;
526
527 --DEBUG: RAISE WARNING 'natural earth: %', ST_AsText(place_centre);
528
529   -- Natural earth data
530   FOR nearcountry IN select country_code from country_naturalearthdata where st_covers(geometry, place_centre) limit 1
531   LOOP
532     RETURN nearcountry.country_code;
533   END LOOP;
534
535 --DEBUG: RAISE WARNING 'near osm fallback: %', ST_AsText(place_centre);
536
537   -- 
538   FOR nearcountry IN select country_code from country_osm_grid where st_dwithin(geometry, place_centre, 0.5) order by st_distance(geometry, place_centre) asc, area asc limit 1
539   LOOP
540     RETURN nearcountry.country_code;
541   END LOOP;
542
543 --DEBUG: RAISE WARNING 'near natural earth: %', ST_AsText(place_centre);
544
545   -- Natural earth data 
546   FOR nearcountry IN select country_code from country_naturalearthdata where st_dwithin(geometry, place_centre, 0.5) limit 1
547   LOOP
548     RETURN nearcountry.country_code;
549   END LOOP;
550
551   RETURN NULL;
552 END;
553 $$
554 LANGUAGE plpgsql IMMUTABLE;
555
556 CREATE OR REPLACE FUNCTION get_country_language_code(search_country_code VARCHAR(2)) RETURNS TEXT
557   AS $$
558 DECLARE
559   nearcountry RECORD;
560 BEGIN
561   FOR nearcountry IN select distinct country_default_language_code from country_name where country_code = search_country_code limit 1
562   LOOP
563     RETURN lower(nearcountry.country_default_language_code);
564   END LOOP;
565   RETURN NULL;
566 END;
567 $$
568 LANGUAGE plpgsql IMMUTABLE;
569
570 CREATE OR REPLACE FUNCTION get_country_language_codes(search_country_code VARCHAR(2)) RETURNS TEXT[]
571   AS $$
572 DECLARE
573   nearcountry RECORD;
574 BEGIN
575   FOR nearcountry IN select country_default_language_codes from country_name where country_code = search_country_code limit 1
576   LOOP
577     RETURN lower(nearcountry.country_default_language_codes);
578   END LOOP;
579   RETURN NULL;
580 END;
581 $$
582 LANGUAGE plpgsql IMMUTABLE;
583
584 CREATE OR REPLACE FUNCTION get_partition(in_country_code VARCHAR(10)) RETURNS INTEGER
585   AS $$
586 DECLARE
587   nearcountry RECORD;
588 BEGIN
589   FOR nearcountry IN select partition from country_name where country_code = in_country_code
590   LOOP
591     RETURN nearcountry.partition;
592   END LOOP;
593   RETURN 0;
594 END;
595 $$
596 LANGUAGE plpgsql IMMUTABLE;
597
598 CREATE OR REPLACE FUNCTION delete_location(OLD_place_id BIGINT) RETURNS BOOLEAN
599   AS $$
600 DECLARE
601 BEGIN
602   DELETE FROM location_area where place_id = OLD_place_id;
603 -- TODO:location_area
604   RETURN true;
605 END;
606 $$
607 LANGUAGE plpgsql;
608
609 CREATE OR REPLACE FUNCTION add_location(
610     place_id BIGINT,
611     country_code varchar(2),
612     partition INTEGER,
613     keywords INTEGER[],
614     rank_search INTEGER,
615     rank_address INTEGER,
616     geometry GEOMETRY
617   ) 
618   RETURNS BOOLEAN
619   AS $$
620 DECLARE
621   locationid INTEGER;
622   isarea BOOLEAN;
623   centroid GEOMETRY;
624   diameter FLOAT;
625   x BOOLEAN;
626   splitGeom RECORD;
627   secgeo GEOMETRY;
628 BEGIN
629
630   IF rank_search > 25 THEN
631     RAISE EXCEPTION 'Adding location with rank > 25 (% rank %)', place_id, rank_search;
632   END IF;
633
634 --  RAISE WARNING 'Adding location with rank > 25 (% rank %)', place_id, rank_search;
635
636   x := deleteLocationArea(partition, place_id, rank_search);
637
638   isarea := false;
639   IF (ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') AND ST_IsValid(geometry)) THEN
640
641     isArea := true;
642     centroid := ST_Centroid(geometry);
643
644     FOR secgeo IN select split_geometry(geometry) AS geom LOOP
645       x := insertLocationAreaLarge(partition, place_id, country_code, keywords, rank_search, rank_address, false, centroid, secgeo);
646     END LOOP;
647
648   ELSEIF rank_search < 26 THEN
649
650     diameter := 0.02;
651     IF rank_address = 0 THEN
652       diameter := 0.02;
653     ELSEIF rank_search <= 14 THEN
654       diameter := 1.2;
655     ELSEIF rank_search <= 15 THEN
656       diameter := 1;
657     ELSEIF rank_search <= 16 THEN
658       diameter := 0.5;
659     ELSEIF rank_search <= 17 THEN
660       diameter := 0.2;
661     ELSEIF rank_search <= 21 THEN
662       diameter := 0.05;
663     ELSEIF rank_search = 25 THEN
664       diameter := 0.005;
665     END IF;
666
667 --    RAISE WARNING 'adding % diameter %', place_id, diameter;
668
669     secgeo := ST_Buffer(geometry, diameter);
670     x := insertLocationAreaLarge(partition, place_id, country_code, keywords, rank_search, rank_address, true, ST_Centroid(geometry), secgeo);
671
672   ELSE
673
674     -- ~ 20meters
675     secgeo := ST_Buffer(geometry, 0.0002);
676     x := insertLocationAreaRoadNear(partition, place_id, country_code, keywords, rank_search, rank_address, true, ST_Centroid(geometry), secgeo);
677
678     -- ~ 100meters
679     secgeo := ST_Buffer(geometry, 0.001);
680     x := insertLocationAreaRoadFar(partition, place_id, country_code, keywords, rank_search, rank_address, true, ST_Centroid(geometry), secgeo);
681
682   END IF;
683
684   RETURN true;
685 END;
686 $$
687 LANGUAGE plpgsql;
688
689 CREATE OR REPLACE FUNCTION update_location(
690     partition INTEGER,
691     place_id BIGINT,
692     place_country_code varchar(2),
693     name hstore,
694     rank_search INTEGER,
695     rank_address INTEGER,
696     geometry GEOMETRY
697   ) 
698   RETURNS BOOLEAN
699   AS $$
700 DECLARE
701   b BOOLEAN;
702 BEGIN
703   b := deleteLocationArea(partition, place_id, rank_search);
704 --  result := add_location(NEW.place_id, NEW.country_code, NEW.partition, name_vector, NEW.rank_search, NEW.rank_address, NEW.geometry);
705   RETURN add_location(place_id, place_country_code, name, rank_search, rank_address, geometry);
706 END;
707 $$
708 LANGUAGE plpgsql;
709
710 CREATE OR REPLACE FUNCTION search_name_add_words(parent_place_id BIGINT, to_add INTEGER[])
711   RETURNS BOOLEAN
712   AS $$
713 DECLARE
714   childplace RECORD;
715 BEGIN
716
717   IF #to_add = 0 THEN
718     RETURN true;
719   END IF;
720
721   -- this should just be an update, but it seems to do insane things to the index size (delete and insert doesn't)
722   FOR childplace IN select * from search_name,place_addressline 
723     where  address_place_id = parent_place_id
724       and search_name.place_id = place_addressline.place_id
725   LOOP
726     delete from search_name where place_id = childplace.place_id;
727     IF not (ARRAY[to_add] <@ childplace.nameaddress_vector) THEN
728       childplace.nameaddress_vector := childplace.nameaddress_vector || to_add;
729     END IF;
730     IF childplace.place_id = parent_place_id and not (ARRAY[to_add] <@ childplace.name_vector) THEN
731       childplace.name_vector := childplace.name_vector || to_add;
732     END IF;
733     insert into search_name (place_id, search_rank, address_rank, country_code, name_vector, nameaddress_vector, centroid) 
734       values (childplace.place_id, childplace.search_rank, childplace.address_rank, childplace.country_code, 
735         childplace.name_vector, childplace.nameaddress_vector, childplace.centroid);
736   END LOOP;
737
738   RETURN true;
739 END;
740 $$
741 LANGUAGE plpgsql;
742
743 CREATE OR REPLACE FUNCTION update_location_nameonly(partition INTEGER, OLD_place_id BIGINT, name hstore) RETURNS BOOLEAN
744   AS $$
745 DECLARE
746   newkeywords INTEGER[];
747   addedkeywords INTEGER[];
748   removedkeywords INTEGER[];
749 BEGIN
750
751   -- what has changed?
752   newkeywords := make_keywords(name);
753   select coalesce(newkeywords,'{}'::INTEGER[]) - coalesce(location_point.keywords,'{}'::INTEGER[]), 
754     coalesce(location_point.keywords,'{}'::INTEGER[]) - coalesce(newkeywords,'{}'::INTEGER[]) from location_point 
755     where place_id = OLD_place_id into addedkeywords, removedkeywords;
756
757 --  RAISE WARNING 'update_location_nameonly for %: new:% added:% removed:%', OLD_place_id, newkeywords, addedkeywords, removedkeywords;
758
759   IF #removedkeywords > 0 THEN
760     -- abort due to tokens removed
761     RETURN false;
762   END IF;
763   
764   IF #addedkeywords > 0 THEN
765     -- short circuit - no changes
766     RETURN true;
767   END IF;
768
769   UPDATE location_area set keywords = newkeywords where place_id = OLD_place_id;
770   RETURN search_name_add_words(OLD_place_id, addedkeywords);
771 END;
772 $$
773 LANGUAGE plpgsql;
774
775
776 CREATE OR REPLACE FUNCTION create_interpolation(wayid BIGINT, interpolationtype TEXT) RETURNS INTEGER
777   AS $$
778 DECLARE
779
780   newpoints INTEGER;
781   waynodes BIGINT[];
782   nodeid BIGINT;
783   prevnode RECORD;
784   nextnode RECORD;
785   startnumber INTEGER;
786   endnumber INTEGER;
787   stepsize INTEGER;
788   orginalstartnumber INTEGER;
789   originalnumberrange INTEGER;
790   housenum INTEGER;
791   linegeo GEOMETRY;
792   splitline GEOMETRY;
793   sectiongeo GEOMETRY;
794   search_place_id BIGINT;
795   defpostalcode TEXT;
796
797 BEGIN
798   IF interpolationtype = 'odd' OR interpolationtype = 'even' THEN
799     stepsize := 2;
800   ELSEIF interpolationtype = 'all' THEN
801     stepsize := 1;
802   ELSEIF interpolationtype ~ '^\d+$' THEN
803     stepsize := interpolationtype::INTEGER;
804   ELSE
805     RETURN 0;
806   END IF;
807
808   select nodes from planet_osm_ways where id = wayid INTO waynodes;
809
810   IF array_upper(waynodes, 1) IS NULL THEN
811     RETURN 0;
812   END IF;
813
814   select postcode, geometry from placex where osm_type = 'W' and osm_id = wayid 
815     INTO defpostalcode, linegeo;
816
817   IF ST_GeometryType(linegeo) != 'ST_LineString' THEN
818     RETURN 0;
819   END IF;
820
821   startnumber := NULL;
822   newpoints := 0;
823
824   FOR nodeidpos in 1..array_upper(waynodes, 1) LOOP
825
826     -- If there is a place of a type other than place/house, use that because
827     -- it is guaranteed to be the original node. For place/house types use the
828     -- one with the smallest id because the original node was created first.
829     -- Ignore all nodes marked for deletion. (Might happen when the type changes.)
830     select place_id from placex where osm_type = 'N' and osm_id = waynodes[nodeidpos]::BIGINT and indexed_status < 100 order by (type = 'house'),place_id limit 1 INTO search_place_id;
831     IF search_place_id IS NOT NULL THEN
832       select * from placex where place_id = search_place_id INTO nextnode;
833
834         IF nodeidpos > 1 and nodeidpos < array_upper(waynodes, 1) THEN
835           -- Make sure that the point is actually on the line. That might
836           -- be a bit paranoid but ensures that the algorithm still works
837           -- should osm2pgsql attempt to repair geometries.
838           splitline := split_line_on_node(linegeo, nextnode.geometry);
839           sectiongeo := ST_GeometryN(splitline, 1);
840           linegeo := ST_GeometryN(splitline, 2);
841         ELSE
842           sectiongeo = linegeo;
843         END IF;
844         endnumber := substring(nextnode.housenumber,'[0-9]+')::integer;
845
846         IF startnumber IS NOT NULL AND endnumber IS NOT NULL
847            AND @(startnumber - endnumber) < 1000 AND startnumber != endnumber
848            AND ST_GeometryType(sectiongeo) = 'ST_LineString' THEN
849
850           IF (startnumber > endnumber) THEN
851             housenum := endnumber;
852             endnumber := startnumber;
853             startnumber := housenum;
854             sectiongeo := ST_Reverse(sectiongeo);
855           END IF;
856           orginalstartnumber := startnumber;
857           originalnumberrange := endnumber - startnumber;
858
859           startnumber := startnumber + stepsize;
860           -- correct for odd/even
861           IF (interpolationtype = 'odd' AND startnumber%2 = 0) OR (interpolationtype = 'even' AND startnumber%2 = 1) THEN
862             startnumber := startnumber - 1;
863           END IF;
864           endnumber := endnumber - 1;
865
866           delete from placex where osm_type = 'N' and osm_id = prevnode.osm_id and type = 'house' and place_id != prevnode.place_id;
867           FOR housenum IN startnumber..endnumber BY stepsize LOOP
868             -- this should really copy postcodes but it puts a huge burden on
869             -- the system for no big benefit ideally postcodes should move up to the way
870             insert into placex (osm_type, osm_id, class, type, admin_level,
871               housenumber, street, addr_place, isin, postcode,
872               country_code, parent_place_id, rank_address, rank_search,
873               indexed_status, geometry)
874               values ('N', prevnode.osm_id, 'place', 'house', prevnode.admin_level,
875               housenum, prevnode.street, prevnode.addr_place, prevnode.isin, coalesce(prevnode.postcode, defpostalcode),
876               prevnode.country_code, prevnode.parent_place_id, prevnode.rank_address, prevnode.rank_search,
877               1, ST_LineInterpolatePoint(sectiongeo, (housenum::float-orginalstartnumber::float)/originalnumberrange::float));
878             newpoints := newpoints + 1;
879 --RAISE WARNING 'interpolation number % % ',prevnode.place_id,housenum;
880           END LOOP;
881         END IF;
882
883         -- early break if we are out of line string,
884         -- might happen when a line string loops back on itself
885         IF ST_GeometryType(linegeo) != 'ST_LineString' THEN
886             RETURN newpoints;
887         END IF;
888
889         startnumber := substring(nextnode.housenumber,'[0-9]+')::integer;
890         prevnode := nextnode;
891     END IF;
892   END LOOP;
893
894 --RAISE WARNING 'interpolation points % ',newpoints;
895
896   RETURN newpoints;
897 END;
898 $$
899 LANGUAGE plpgsql;
900
901 CREATE OR REPLACE FUNCTION placex_insert() RETURNS TRIGGER
902   AS $$
903 DECLARE
904   i INTEGER;
905   postcode TEXT;
906   result BOOLEAN;
907   country_code VARCHAR(2);
908   default_language VARCHAR(10);
909   diameter FLOAT;
910   classtable TEXT;
911 BEGIN
912   --DEBUG: RAISE WARNING '% %',NEW.osm_type,NEW.osm_id;
913
914   -- remove operator tag for most places, messes too much with search_name indexes
915   IF NEW.class not in ('amenity', 'shop') THEN
916     NEW.name := delete(NEW.name, 'operator');
917   END IF;
918
919   -- just block these
920   IF NEW.class in ('landuse','natural') and NEW.name is null THEN
921 --    RAISE WARNING 'empty landuse %',NEW.osm_id;
922     RETURN null;
923   END IF;
924
925   IF ST_IsEmpty(NEW.geometry) OR NOT ST_IsValid(NEW.geometry) OR ST_X(ST_Centroid(NEW.geometry))::text in ('NaN','Infinity','-Infinity') OR ST_Y(ST_Centroid(NEW.geometry))::text in ('NaN','Infinity','-Infinity') THEN  
926     -- block all invalid geometary - just not worth the risk.  seg faults are causing serious problems.
927     RAISE WARNING 'invalid geometry %',NEW.osm_id;
928     RETURN NULL;
929
930     -- Dead code
931     IF NEW.osm_type = 'R' THEN
932       -- invalid multipolygons can crash postgis, don't even bother to try!
933       RETURN NULL;
934     END IF;
935     NEW.geometry := ST_buffer(NEW.geometry,0);
936     IF ST_IsEmpty(NEW.geometry) OR NOT ST_IsValid(NEW.geometry) OR ST_X(ST_Centroid(NEW.geometry))::text in ('NaN','Infinity','-Infinity') OR ST_Y(ST_Centroid(NEW.geometry))::text in ('NaN','Infinity','-Infinity') THEN  
937       RAISE WARNING 'Invalid geometary, rejecting: % %', NEW.osm_type, NEW.osm_id;
938       RETURN NULL;
939     END IF;
940   END IF;
941
942   --DEBUG: RAISE WARNING '% % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
943
944   NEW.place_id := nextval('seq_place');
945   NEW.indexed_status := 1; --STATUS_NEW
946
947   NEW.calculated_country_code := lower(get_country_code(NEW.geometry));
948
949   NEW.partition := get_partition(NEW.calculated_country_code);
950   NEW.geometry_sector := geometry_sector(NEW.partition, NEW.geometry);
951
952   -- copy 'name' to or from the default language (if there is a default language)
953   IF NEW.name is not null AND array_upper(akeys(NEW.name),1) > 1 THEN
954     default_language := get_country_language_code(NEW.calculated_country_code);
955     IF default_language IS NOT NULL THEN
956       IF NEW.name ? 'name' AND NOT NEW.name ? ('name:'||default_language) THEN
957         NEW.name := NEW.name || hstore(('name:'||default_language), (NEW.name -> 'name'));
958       ELSEIF NEW.name ? ('name:'||default_language) AND NOT NEW.name ? 'name' THEN
959         NEW.name := NEW.name || hstore('name', (NEW.name -> ('name:'||default_language)));
960       END IF;
961     END IF;
962   END IF;
963
964   IF NEW.admin_level > 15 THEN
965     NEW.admin_level := 15;
966   END IF;
967
968   IF NEW.housenumber IS NOT NULL THEN
969     i := getorcreate_housenumber_id(make_standard_name(NEW.housenumber));
970   END IF;
971
972   IF NEW.osm_type = 'X' THEN
973     -- E'X'ternal records should already be in the right format so do nothing
974   ELSE
975     NEW.rank_search := 30;
976     NEW.rank_address := NEW.rank_search;
977
978     -- By doing in postgres we have the country available to us - currently only used for postcode
979     IF NEW.class in ('place','boundary') AND NEW.type in ('postcode','postal_code') THEN
980
981         IF NEW.postcode IS NULL THEN
982             -- most likely just a part of a multipolygon postcode boundary, throw it away
983             RETURN NULL;
984         END IF;
985
986         NEW.name := hstore('ref', NEW.postcode);
987
988         IF NEW.calculated_country_code = 'gb' THEN
989
990           IF NEW.postcode ~ '^([A-Z][A-Z]?[0-9][0-9A-Z]? [0-9][A-Z][A-Z])$' THEN
991             NEW.rank_search := 25;
992             NEW.rank_address := 5;
993           ELSEIF NEW.postcode ~ '^([A-Z][A-Z]?[0-9][0-9A-Z]? [0-9])$' THEN
994             NEW.rank_search := 23;
995             NEW.rank_address := 5;
996           ELSEIF NEW.postcode ~ '^([A-Z][A-Z]?[0-9][0-9A-Z])$' THEN
997             NEW.rank_search := 21;
998             NEW.rank_address := 5;
999           END IF;
1000
1001         ELSEIF NEW.calculated_country_code = 'sg' THEN
1002
1003           IF NEW.postcode ~ '^([0-9]{6})$' THEN
1004             NEW.rank_search := 25;
1005             NEW.rank_address := 11;
1006           END IF;
1007
1008         ELSEIF NEW.calculated_country_code = 'de' THEN
1009
1010           IF NEW.postcode ~ '^([0-9]{5})$' THEN
1011             NEW.rank_search := 21;
1012             NEW.rank_address := 11;
1013           END IF;
1014
1015         ELSE
1016           -- Guess at the postcode format and coverage (!)
1017           IF upper(NEW.postcode) ~ '^[A-Z0-9]{1,5}$' THEN -- Probably too short to be very local
1018             NEW.rank_search := 21;
1019             NEW.rank_address := 11;
1020           ELSE
1021             -- Does it look splitable into and area and local code?
1022             postcode := substring(upper(NEW.postcode) from '^([- :A-Z0-9]+)([- :][A-Z0-9]+)$');
1023
1024             IF postcode IS NOT NULL THEN
1025               NEW.rank_search := 25;
1026               NEW.rank_address := 11;
1027             ELSEIF NEW.postcode ~ '^[- :A-Z0-9]{6,}$' THEN
1028               NEW.rank_search := 21;
1029               NEW.rank_address := 11;
1030             END IF;
1031           END IF;
1032         END IF;
1033
1034     ELSEIF NEW.class = 'place' THEN
1035       IF NEW.type in ('continent') THEN
1036         NEW.rank_search := 2;
1037         NEW.rank_address := NEW.rank_search;
1038         NEW.calculated_country_code := NULL;
1039       ELSEIF NEW.type in ('sea') THEN
1040         NEW.rank_search := 2;
1041         NEW.rank_address := 0;
1042         NEW.calculated_country_code := NULL;
1043       ELSEIF NEW.type in ('country') THEN
1044         NEW.rank_search := 4;
1045         NEW.rank_address := NEW.rank_search;
1046       ELSEIF NEW.type in ('state') THEN
1047         NEW.rank_search := 8;
1048         NEW.rank_address := NEW.rank_search;
1049       ELSEIF NEW.type in ('region') THEN
1050         NEW.rank_search := 18; -- dropped from previous value of 10
1051         NEW.rank_address := 0; -- So badly miss-used that better to just drop it!
1052       ELSEIF NEW.type in ('county') THEN
1053         NEW.rank_search := 12;
1054         NEW.rank_address := NEW.rank_search;
1055       ELSEIF NEW.type in ('city') THEN
1056         NEW.rank_search := 16;
1057         NEW.rank_address := NEW.rank_search;
1058       ELSEIF NEW.type in ('island') THEN
1059         NEW.rank_search := 17;
1060         NEW.rank_address := 0;
1061       ELSEIF NEW.type in ('town') THEN
1062         NEW.rank_search := 18;
1063         NEW.rank_address := 16;
1064       ELSEIF NEW.type in ('village','hamlet','municipality','district','unincorporated_area','borough') THEN
1065         NEW.rank_search := 19;
1066         NEW.rank_address := 16;
1067       ELSEIF NEW.type in ('suburb','croft','subdivision','isolated_dwelling') THEN
1068         NEW.rank_search := 20;
1069         NEW.rank_address := NEW.rank_search;
1070       ELSEIF NEW.type in ('farm','locality','islet','mountain_pass') THEN
1071         NEW.rank_search := 20;
1072         NEW.rank_address := 0;
1073         -- Irish townlands, tagged as place=locality and locality=townland
1074         IF (NEW.extratags -> 'locality') = 'townland' THEN
1075           NEW.rank_address := 20;
1076         END IF;
1077       ELSEIF NEW.type in ('neighbourhood') THEN
1078         NEW.rank_search := 22;
1079         NEW.rank_address := 22;
1080       ELSEIF NEW.type in ('house','building') THEN
1081         NEW.rank_search := 30;
1082         NEW.rank_address := NEW.rank_search;
1083       ELSEIF NEW.type in ('houses') THEN
1084         -- can't guarantee all required nodes loaded yet due to caching in osm2pgsql
1085         -- insert new point into place for each derived building
1086         --i := create_interpolation(NEW.osm_id, NEW.housenumber);
1087         NEW.rank_search := 28;
1088         NEW.rank_address := 0;
1089       END IF;
1090
1091     ELSEIF NEW.class = 'boundary' THEN
1092       IF ST_GeometryType(NEW.geometry) NOT IN ('ST_Polygon','ST_MultiPolygon') THEN
1093 --        RAISE WARNING 'invalid boundary %',NEW.osm_id;
1094         return NULL;
1095       END IF;
1096       NEW.rank_search := NEW.admin_level * 2;
1097       IF NEW.type = 'administrative' THEN
1098         NEW.rank_address := NEW.rank_search;
1099       ELSE
1100         NEW.rank_address := 0;
1101       END IF;
1102     ELSEIF NEW.class = 'landuse' AND ST_GeometryType(NEW.geometry) in ('ST_Polygon','ST_MultiPolygon') THEN
1103       NEW.rank_search := 22;
1104       IF NEW.type in ('residential', 'farm', 'farmyard', 'industrial', 'commercial', 'allotments', 'retail') THEN
1105         NEW.rank_address := NEW.rank_search;
1106       ELSE
1107         NEW.rank_address := 0;
1108       END IF;
1109     ELSEIF NEW.class = 'natural' and NEW.type in ('peak','volcano','mountain_range') THEN
1110       NEW.rank_search := 18;
1111       NEW.rank_address := 0;
1112     ELSEIF NEW.class = 'natural' and NEW.type = 'sea' THEN
1113       NEW.rank_search := 4;
1114       NEW.rank_address := NEW.rank_search;
1115     ELSEIF NEW.class = 'natural' and NEW.type in ('coastline') THEN
1116       RETURN NULL;
1117     -- any feature more than 5 square miles is probably worth indexing
1118     ELSEIF ST_GeometryType(NEW.geometry) in ('ST_Polygon','ST_MultiPolygon') AND ST_Area(NEW.geometry) > 0.1 THEN
1119       NEW.rank_search := 22;
1120       NEW.rank_address := 0;
1121     ELSEIF NEW.class = 'highway' AND NEW.name is NULL AND 
1122            NEW.type in ('service','cycleway','path','footway','steps','bridleway','track','byway','motorway_link','primary_link','trunk_link','secondary_link','tertiary_link') THEN
1123 --      RAISE WARNING 'unnamed minor feature %',NEW.osm_id;
1124       RETURN NULL;
1125     ELSEIF NEW.class = 'railway' AND NEW.type in ('rail') THEN
1126       RETURN NULL;
1127     ELSEIF NEW.class = 'waterway' AND NEW.name is NULL THEN
1128       RETURN NULL;
1129     ELSEIF NEW.class = 'waterway' THEN
1130       IF NEW.osm_type = 'R' THEN
1131         NEW.rank_search := 16;
1132       ELSE
1133         NEW.rank_search := 17;
1134       END IF;
1135       NEW.rank_address := 0;
1136     ELSEIF NEW.class = 'highway' AND NEW.osm_type != 'N' AND NEW.type in ('service','cycleway','path','footway','steps','bridleway','motorway_link','primary_link','trunk_link','secondary_link','tertiary_link') THEN
1137       NEW.rank_search := 27;
1138       NEW.rank_address := NEW.rank_search;
1139     ELSEIF NEW.class = 'highway' AND NEW.osm_type != 'N' THEN
1140       NEW.rank_search := 26;
1141       NEW.rank_address := NEW.rank_search;
1142     ELSEIF NEW.class = 'mountain_pass' THEN
1143         NEW.rank_search := 20;
1144         NEW.rank_address := 0;
1145     END IF;
1146
1147   END IF;
1148
1149   IF NEW.rank_search > 30 THEN
1150     NEW.rank_search := 30;
1151   END IF;
1152
1153   IF NEW.rank_address > 30 THEN
1154     NEW.rank_address := 30;
1155   END IF;
1156
1157   IF (NEW.extratags -> 'capital') = 'yes' THEN
1158     NEW.rank_search := NEW.rank_search - 1;
1159   END IF;
1160
1161   -- a country code make no sense below rank 4 (country)
1162   IF NEW.rank_search < 4 THEN
1163     NEW.calculated_country_code := NULL;
1164   END IF;
1165
1166 -- Block import below rank 22
1167 --  IF NEW.rank_search > 22 THEN
1168 --    RETURN NULL;
1169 --  END IF;
1170
1171   --DEBUG: RAISE WARNING 'placex_insert:END: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
1172
1173   RETURN NEW; -- @DIFFUPDATES@ The following is not needed until doing diff updates, and slows the main index process down
1174
1175   IF NEW.rank_address > 0 THEN
1176     IF (ST_GeometryType(NEW.geometry) in ('ST_Polygon','ST_MultiPolygon') AND ST_IsValid(NEW.geometry)) THEN
1177       -- Performance: We just can't handle re-indexing for country level changes
1178       IF st_area(NEW.geometry) < 1 THEN
1179         -- mark items within the geometry for re-indexing
1180   --    RAISE WARNING 'placex poly insert: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
1181
1182         -- work around bug in postgis, this may have been fixed in 2.0.0 (see http://trac.osgeo.org/postgis/ticket/547)
1183         update placex set indexed_status = 2 where (st_covers(NEW.geometry, placex.geometry) OR ST_Intersects(NEW.geometry, placex.geometry)) 
1184          AND rank_search > NEW.rank_search and indexed_status = 0 and ST_geometrytype(placex.geometry) = 'ST_Point' and (rank_search < 28 or name is not null or (NEW.rank_search >= 16 and addr_place is not null));
1185         update placex set indexed_status = 2 where (st_covers(NEW.geometry, placex.geometry) OR ST_Intersects(NEW.geometry, placex.geometry)) 
1186          AND rank_search > NEW.rank_search and indexed_status = 0 and ST_geometrytype(placex.geometry) != 'ST_Point' and (rank_search < 28 or name is not null or (NEW.rank_search >= 16 and addr_place is not null));
1187       END IF;
1188     ELSE
1189       -- mark nearby items for re-indexing, where 'nearby' depends on the features rank_search and is a complete guess :(
1190       diameter := 0;
1191       -- 16 = city, anything higher than city is effectively ignored (polygon required!)
1192       IF NEW.type='postcode' THEN
1193         diameter := 0.05;
1194       ELSEIF NEW.rank_search < 16 THEN
1195         diameter := 0;
1196       ELSEIF NEW.rank_search < 18 THEN
1197         diameter := 0.1;
1198       ELSEIF NEW.rank_search < 20 THEN
1199         diameter := 0.05;
1200       ELSEIF NEW.rank_search = 21 THEN
1201         diameter := 0.001;
1202       ELSEIF NEW.rank_search < 24 THEN
1203         diameter := 0.02;
1204       ELSEIF NEW.rank_search < 26 THEN
1205         diameter := 0.002; -- 100 to 200 meters
1206       ELSEIF NEW.rank_search < 28 THEN
1207         diameter := 0.001; -- 50 to 100 meters
1208       END IF;
1209       IF diameter > 0 THEN
1210   --      RAISE WARNING 'placex point insert: % % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type,diameter;
1211         IF NEW.rank_search >= 26 THEN
1212           -- roads may cause reparenting for >27 rank places
1213           update placex set indexed_status = 2 where indexed_status = 0 and rank_search > NEW.rank_search and ST_DWithin(placex.geometry, NEW.geometry, diameter);
1214         ELSEIF NEW.rank_search >= 16 THEN
1215           -- up to rank 16, street-less addresses may need reparenting
1216           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 addr_place is not null);
1217         ELSE
1218           -- for all other places the search terms may change as well
1219           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);
1220         END IF;
1221       END IF;
1222     END IF;
1223   END IF;
1224
1225    -- add to tables for special search
1226    -- Note: won't work on initial import because the classtype tables
1227    -- do not yet exist. It won't hurt either.
1228   classtable := 'place_classtype_' || NEW.class || '_' || NEW.type;
1229   SELECT count(*)>0 FROM pg_tables WHERE tablename = classtable and schemaname = current_schema() INTO result;
1230   IF result THEN
1231     EXECUTE 'INSERT INTO ' || classtable::regclass || ' (place_id, centroid) VALUES ($1,$2)' 
1232     USING NEW.place_id, ST_Centroid(NEW.geometry);
1233   END IF;
1234
1235
1236 --  IF NEW.rank_search < 26 THEN
1237 --    RAISE WARNING 'placex insert: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
1238 --  END IF;
1239
1240   RETURN NEW;
1241
1242 END;
1243 $$
1244 LANGUAGE plpgsql;
1245
1246 CREATE OR REPLACE FUNCTION placex_update() RETURNS 
1247 TRIGGER
1248   AS $$
1249 DECLARE
1250
1251   place_centroid GEOMETRY;
1252
1253   search_maxdistance FLOAT[];
1254   search_mindistance FLOAT[];
1255   address_havelevel BOOLEAN[];
1256 --  search_scores wordscore[];
1257 --  search_scores_pos INTEGER;
1258
1259   i INTEGER;
1260   iMax FLOAT;
1261   location RECORD;
1262   way RECORD;
1263   relation RECORD;
1264   relation_members TEXT[];
1265   relMember RECORD;
1266   linkedplacex RECORD;
1267   search_diameter FLOAT;
1268   search_prevdiameter FLOAT;
1269   search_maxrank INTEGER;
1270   address_maxrank INTEGER;
1271   address_street_word_id INTEGER;
1272   address_street_word_ids INTEGER[];
1273   parent_place_id_rank BIGINT;
1274   
1275   isin TEXT[];
1276   isin_tokens INT[];
1277
1278   location_rank_search INTEGER;
1279   location_distance FLOAT;
1280   location_parent GEOMETRY;
1281   location_isaddress BOOLEAN;
1282
1283   tagpairid INTEGER;
1284
1285   default_language TEXT;
1286   name_vector INTEGER[];
1287   nameaddress_vector INTEGER[];
1288
1289   linked_node_id BIGINT;
1290
1291   result BOOLEAN;
1292 BEGIN
1293
1294   -- deferred delete
1295   IF OLD.indexed_status = 100 THEN
1296     --DEBUG: RAISE WARNING 'placex_update_delete % %',NEW.osm_type,NEW.osm_id;
1297     delete from placex where place_id = OLD.place_id;
1298     RETURN NULL;
1299   END IF;
1300
1301   IF NEW.indexed_status != 0 OR OLD.indexed_status = 0 THEN
1302     RETURN NEW;
1303   END IF;
1304
1305   --DEBUG: RAISE WARNING 'placex_update % %',NEW.osm_type,NEW.osm_id;
1306
1307 --RAISE WARNING '%',NEW.place_id;
1308 --RAISE WARNING '%', NEW;
1309
1310   IF NEW.class = 'place' AND NEW.type = 'postcodearea' THEN
1311     -- Silently do nothing
1312     RETURN NEW;
1313   END IF;
1314
1315   -- TODO: this test is now redundant?
1316   IF OLD.indexed_status != 0 THEN
1317
1318     NEW.indexed_date = now();
1319
1320     result := deleteSearchName(NEW.partition, NEW.place_id);
1321     DELETE FROM place_addressline WHERE place_id = NEW.place_id;
1322     result := deleteRoad(NEW.partition, NEW.place_id);
1323     result := deleteLocationArea(NEW.partition, NEW.place_id, NEW.rank_search);
1324     UPDATE placex set linked_place_id = null where linked_place_id = NEW.place_id;
1325
1326     IF NEW.linked_place_id is not null THEN
1327       RETURN NEW;
1328     END IF;
1329
1330     IF NEW.class = 'place' AND NEW.type = 'houses' THEN
1331       i := create_interpolation(NEW.osm_id, NEW.housenumber);
1332       RETURN NEW;
1333     END IF;
1334
1335     -- Speed up searches - just use the centroid of the feature
1336     -- cheaper but less acurate
1337     place_centroid := ST_PointOnSurface(NEW.geometry);
1338     NEW.centroid := null;
1339
1340     -- recalculate country and partition
1341     IF NEW.rank_search = 4 THEN
1342       -- for countries, believe the mapped country code,
1343       -- so that we remain in the right partition if the boundaries
1344       -- suddenly expand.
1345       NEW.partition := get_partition(lower(NEW.country_code));
1346       IF NEW.partition = 0 THEN
1347         NEW.calculated_country_code := lower(get_country_code(place_centroid));
1348         NEW.partition := get_partition(NEW.calculated_country_code);
1349       ELSE
1350         NEW.calculated_country_code := lower(NEW.country_code);
1351       END IF;
1352     ELSE
1353       IF NEW.rank_search > 4 THEN
1354         --NEW.calculated_country_code := lower(get_country_code(NEW.geometry, NEW.country_code));
1355         NEW.calculated_country_code := lower(get_country_code(place_centroid));
1356       ELSE
1357         NEW.calculated_country_code := NULL;
1358       END IF;
1359       NEW.partition := get_partition(NEW.calculated_country_code);
1360     END IF;
1361     NEW.geometry_sector := geometry_sector(NEW.partition, place_centroid);
1362
1363     -- waterway ways are linked when they are part of a relation and have the same class/type
1364     IF NEW.osm_type = 'R' and NEW.class = 'waterway' THEN
1365         FOR relation IN select * from planet_osm_rels r where r.id = NEW.osm_id and r.parts != array[]::bigint[]
1366         LOOP
1367             FOR i IN 1..array_upper(relation.members, 1) BY 2 LOOP
1368                 IF relation.members[i+1] in ('', 'main_stream', 'side_stream') AND substring(relation.members[i],1,1) = 'w' THEN
1369                   --DEBUG: RAISE WARNING 'waterway parent %, child %/%', NEW.osm_id, i, relation.parts[i];
1370                   FOR location IN SELECT * FROM placex
1371                     WHERE osm_type = 'W' and osm_id = substring(relation.members[i],2,200)::bigint
1372                     and class = NEW.class and type = NEW.type
1373                     and ( relation.members[i+1] != 'side_stream' or NEW.name->'name' = name->'name')
1374                   LOOP
1375                     UPDATE placex SET linked_place_id = NEW.place_id WHERE place_id = location.place_id;
1376                   END LOOP;
1377                 END IF;
1378             END LOOP;
1379         END LOOP;
1380     END IF;
1381
1382     -- Adding ourselves to the list simplifies address calculations later
1383     INSERT INTO place_addressline VALUES (NEW.place_id, NEW.place_id, true, true, 0, NEW.rank_address); 
1384
1385     -- What level are we searching from
1386     search_maxrank := NEW.rank_search;
1387
1388     -- Thought this wasn't needed but when we add new languages to the country_name table
1389     -- we need to update the existing names
1390     IF NEW.name is not null AND array_upper(akeys(NEW.name),1) > 1 THEN
1391       default_language := get_country_language_code(NEW.calculated_country_code);
1392       IF default_language IS NOT NULL THEN
1393         IF NEW.name ? 'name' AND NOT NEW.name ? ('name:'||default_language) THEN
1394           NEW.name := NEW.name || hstore(('name:'||default_language), (NEW.name -> 'name'));
1395         ELSEIF NEW.name ? ('name:'||default_language) AND NOT NEW.name ? 'name' THEN
1396           NEW.name := NEW.name || hstore('name', (NEW.name -> ('name:'||default_language)));
1397         END IF;
1398       END IF;
1399     END IF;
1400
1401     -- Initialise the name vector using our name
1402     name_vector := make_keywords(NEW.name);
1403     nameaddress_vector := '{}'::int[];
1404
1405     -- some tag combinations add a special id for search
1406     tagpairid := get_tagpair(NEW.class,NEW.type);
1407     IF tagpairid IS NOT NULL THEN
1408       name_vector := name_vector + tagpairid;
1409     END IF;
1410
1411     FOR i IN 1..28 LOOP
1412       address_havelevel[i] := false;
1413     END LOOP;
1414
1415     NEW.importance := null;
1416     select language||':'||title,importance from get_wikipedia_match(NEW.extratags, NEW.calculated_country_code) INTO NEW.wikipedia,NEW.importance;
1417     IF NEW.importance IS NULL THEN
1418       select language||':'||title,importance from wikipedia_article where osm_type = NEW.osm_type and osm_id = NEW.osm_id order by importance desc limit 1 INTO NEW.wikipedia,NEW.importance;
1419     END IF;
1420
1421 --RAISE WARNING 'before low level% %', NEW.place_id, NEW.rank_search;
1422
1423     -- For low level elements we inherit from our parent road
1424     IF (NEW.rank_search > 27 OR (NEW.type = 'postcode' AND NEW.rank_search = 25)) THEN
1425
1426 --RAISE WARNING 'finding street for %', NEW;
1427
1428       -- We won't get a better centroid, besides these places are too small to care
1429       NEW.centroid := place_centroid;
1430
1431       NEW.parent_place_id := null;
1432
1433       -- to do that we have to find our parent road
1434       -- Copy data from linked items (points on ways, addr:street links, relations)
1435       -- Note that addr:street links can only be indexed once the street itself is indexed
1436       IF NEW.parent_place_id IS NULL AND NEW.osm_type = 'N' THEN
1437
1438         -- if there is no address information, see if we can get it from a surrounding building
1439         IF NEW.street IS NULL AND NEW.addr_place IS NULL AND NEW.housenumber IS NULL THEN
1440           FOR location IN select * from placex where ST_Covers(geometry, place_centroid) and rank_search > 28 and (housenumber is not null or street is not null or addr_place is not null) AND ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon')
1441           LOOP
1442             NEW.housenumber := location.housenumber;
1443             NEW.street := location.street;
1444             NEW.addr_place := location.addr_place;
1445           END LOOP;
1446         END IF;
1447
1448         -- Is this node part of a relation?
1449         FOR relation IN select * from planet_osm_rels where parts @> ARRAY[NEW.osm_id] and members @> ARRAY['n'||NEW.osm_id]
1450         LOOP
1451           -- At the moment we only process one type of relation - associatedStreet
1452           IF relation.tags @> ARRAY['associatedStreet'] AND array_upper(relation.members, 1) IS NOT NULL THEN
1453             FOR i IN 1..array_upper(relation.members, 1) BY 2 LOOP
1454               IF NEW.parent_place_id IS NULL AND relation.members[i+1] = 'street' THEN
1455 --RAISE WARNING 'node in relation %',relation;
1456                 SELECT place_id from placex where osm_type='W' and osm_id = substring(relation.members[i],2,200)::bigint 
1457                   and rank_search = 26 and name is not null INTO NEW.parent_place_id;
1458               END IF;
1459             END LOOP;
1460           END IF;
1461         END LOOP;      
1462
1463 --RAISE WARNING 'x1';
1464         -- Is this node part of a way?
1465         FOR way IN select id from planet_osm_ways where nodes @> ARRAY[NEW.osm_id] LOOP
1466 --RAISE WARNING '%', way;
1467         FOR location IN select * from placex where osm_type = 'W' and osm_id = way.id
1468         LOOP
1469 --RAISE WARNING '%', location;
1470           -- Way IS a road then we are on it - that must be our road
1471           IF location.rank_search = 26 AND NEW.parent_place_id IS NULL THEN
1472 --RAISE WARNING 'node in way that is a street %',location;
1473             NEW.parent_place_id := location.place_id;
1474           END IF;
1475
1476           -- Is the WAY part of a relation
1477           IF NEW.parent_place_id IS NULL THEN
1478               FOR relation IN select * from planet_osm_rels where parts @> ARRAY[location.osm_id] and members @> ARRAY['w'||location.osm_id]
1479               LOOP
1480                 -- At the moment we only process one type of relation - associatedStreet
1481                 IF relation.tags @> ARRAY['associatedStreet'] AND array_upper(relation.members, 1) IS NOT NULL THEN
1482                   FOR i IN 1..array_upper(relation.members, 1) BY 2 LOOP
1483                     IF NEW.parent_place_id IS NULL AND relation.members[i+1] = 'street' THEN
1484     --RAISE WARNING 'node in way that is in a relation %',relation;
1485                       SELECT place_id from placex where osm_type='W' and osm_id = substring(relation.members[i],2,200)::bigint 
1486                         and rank_search = 26 and name is not null INTO NEW.parent_place_id;
1487                     END IF;
1488                   END LOOP;
1489                 END IF;
1490               END LOOP;
1491           END IF;    
1492           
1493           -- If the way contains an explicit name of a street copy it
1494           -- Slightly less strict then above because data is copied from any object.
1495           IF NEW.street IS NULL AND NEW.addr_place IS NULL THEN
1496 --RAISE WARNING 'node in way that has a streetname %',location;
1497             NEW.street := location.street;
1498             NEW.addr_place := location.addr_place;
1499           END IF;
1500
1501           -- If this way is a street interpolation line then it is probably as good as we are going to get
1502           IF NEW.parent_place_id IS NULL AND NEW.street IS NULL AND NEW.addr_place IS NULL AND location.class = 'place' and location.type='houses' THEN
1503             -- Try and find a way that is close roughly parellel to this line
1504             FOR relation IN SELECT place_id FROM placex
1505               WHERE ST_DWithin(location.geometry, placex.geometry, 0.001) and placex.rank_search = 26
1506                 and st_geometrytype(location.geometry) in ('ST_LineString')
1507               ORDER BY (ST_distance(placex.geometry, ST_LineInterpolatePoint(location.geometry,0))+
1508                         ST_distance(placex.geometry, ST_LineInterpolatePoint(location.geometry,0.5))+
1509                         ST_distance(placex.geometry, ST_LineInterpolatePoint(location.geometry,1))) ASC limit 1
1510             LOOP
1511 --RAISE WARNING 'using nearest street to address interpolation line,0.001 %',relation;
1512               NEW.parent_place_id := relation.place_id;
1513             END LOOP;
1514           END IF;
1515
1516         END LOOP;
1517         END LOOP;
1518                 
1519       END IF;
1520
1521 --RAISE WARNING 'x2';
1522
1523       IF NEW.parent_place_id IS NULL AND NEW.osm_type = 'W' THEN
1524         -- Is this way part of a relation?
1525         FOR relation IN select * from planet_osm_rels where parts @> ARRAY[NEW.osm_id] and members @> ARRAY['w'||NEW.osm_id]
1526         LOOP
1527           -- At the moment we only process one type of relation - associatedStreet
1528           IF relation.tags @> ARRAY['associatedStreet'] AND array_upper(relation.members, 1) IS NOT NULL THEN
1529             FOR i IN 1..array_upper(relation.members, 1) BY 2 LOOP
1530               IF NEW.parent_place_id IS NULL AND relation.members[i+1] = 'street' THEN
1531 --RAISE WARNING 'way that is in a relation %',relation;
1532                 SELECT place_id from placex where osm_type='W' and osm_id = substring(relation.members[i],2,200)::bigint
1533                   and rank_search = 26 and name is not null INTO NEW.parent_place_id;
1534               END IF;
1535             END LOOP;
1536           END IF;
1537         END LOOP;
1538       END IF;
1539       
1540 --RAISE WARNING 'x3 %',NEW.parent_place_id;
1541
1542       IF NEW.parent_place_id IS NULL AND NEW.street IS NOT NULL THEN
1543         address_street_word_ids := get_name_ids(make_standard_name(NEW.street));
1544         IF address_street_word_ids IS NOT NULL THEN
1545           FOR location IN SELECT * from getNearestNamedRoadFeature(NEW.partition, place_centroid, address_street_word_ids) LOOP
1546               NEW.parent_place_id := location.place_id;
1547           END LOOP;
1548         END IF;
1549       END IF;
1550
1551       IF NEW.parent_place_id IS NULL AND NEW.addr_place IS NOT NULL THEN
1552         address_street_word_ids := get_name_ids(make_standard_name(NEW.addr_place));
1553         IF address_street_word_ids IS NOT NULL THEN
1554           FOR location IN SELECT * from getNearestNamedPlaceFeature(NEW.partition, place_centroid, address_street_word_ids) LOOP
1555             NEW.parent_place_id := location.place_id;
1556           END LOOP;
1557         END IF;
1558       END IF;
1559
1560 --RAISE WARNING 'x4 %',NEW.parent_place_id;
1561       -- Still nothing, just use the nearest road
1562       IF NEW.parent_place_id IS NULL THEN
1563         FOR location IN SELECT place_id FROM getNearestRoadFeature(NEW.partition, place_centroid) LOOP
1564           NEW.parent_place_id := location.place_id;
1565         END LOOP;
1566       END IF;
1567
1568 --return NEW;
1569 --RAISE WARNING 'x6 %',NEW.parent_place_id;
1570
1571       -- If we didn't find any road fallback to standard method
1572       IF NEW.parent_place_id IS NOT NULL THEN
1573
1574         -- Add the street to the address as zero distance to force to front of list
1575 --        INSERT INTO place_addressline VALUES (NEW.place_id, NEW.parent_place_id, true, true, 0, 26);
1576         address_havelevel[26] := true;
1577
1578         -- Import address details from parent, reclculating distance in process
1579 --        INSERT INTO place_addressline select NEW.place_id, x.address_place_id, x.fromarea, x.isaddress, ST_distance(NEW.geometry, placex.geometry), placex.rank_address
1580 --          from place_addressline as x join placex on (address_place_id = placex.place_id)
1581 --          where x.place_id = NEW.parent_place_id and x.address_place_id != NEW.parent_place_id;
1582
1583         -- Get the details of the parent road
1584         select * from search_name where place_id = NEW.parent_place_id INTO location;
1585         NEW.calculated_country_code := location.country_code;
1586
1587 --RAISE WARNING '%', NEW.name;
1588         -- If there is no name it isn't searchable, don't bother to create a search record
1589         IF NEW.name is NULL THEN
1590           return NEW;
1591         END IF;
1592
1593         -- Merge address from parent
1594         nameaddress_vector := array_merge(nameaddress_vector, location.nameaddress_vector);
1595         nameaddress_vector := array_merge(nameaddress_vector, location.name_vector);
1596 --return NEW;
1597         -- Performance, it would be more acurate to do all the rest of the import process but it takes too long
1598         -- Just be happy with inheriting from parent road only
1599
1600         IF NEW.rank_search <= 25 THEN
1601           result := add_location(NEW.place_id, NEW.calculated_country_code, NEW.partition, name_vector, NEW.rank_search, NEW.rank_address, NEW.geometry);
1602         END IF;
1603
1604         result := insertSearchName(NEW.partition, NEW.place_id, NEW.calculated_country_code, name_vector, nameaddress_vector, NEW.rank_search, NEW.rank_address, NEW.importance, place_centroid, NEW.geometry);
1605
1606         return NEW;
1607       END IF;
1608
1609     END IF;
1610
1611 -- RAISE WARNING '  INDEXING Started:';
1612 -- RAISE WARNING '  INDEXING: %',NEW;
1613
1614     IF NEW.osm_type = 'R' AND NEW.rank_search < 26 THEN
1615
1616       -- see if we have any special relation members
1617       select members from planet_osm_rels where id = NEW.osm_id INTO relation_members;
1618
1619 -- RAISE WARNING 'get_osm_rel_members, label';
1620       IF relation_members IS NOT NULL THEN
1621         FOR relMember IN select get_osm_rel_members(relation_members,ARRAY['label']) as member LOOP
1622
1623           FOR linkedPlacex IN select * from placex where osm_type = upper(substring(relMember.member,1,1))::char(1) 
1624             and osm_id = substring(relMember.member,2,10000)::bigint order by rank_search desc limit 1 LOOP
1625
1626             -- If we don't already have one use this as the centre point of the geometry
1627             IF NEW.centroid IS NULL THEN
1628               NEW.centroid := coalesce(linkedPlacex.centroid,st_centroid(linkedPlacex.geometry));
1629             END IF;
1630
1631             -- merge in the label name, re-init word vector
1632             IF NOT linkedPlacex.name IS NULL THEN
1633               NEW.name := linkedPlacex.name || NEW.name;
1634               name_vector := array_merge(name_vector, make_keywords(linkedPlacex.name));
1635             END IF;
1636
1637             -- merge in extra tags
1638             NEW.extratags := hstore(linkedPlacex.class, linkedPlacex.type) || coalesce(linkedPlacex.extratags, ''::hstore) || coalesce(NEW.extratags, ''::hstore);
1639
1640             -- mark the linked place (excludes from search results)
1641             UPDATE placex set linked_place_id = NEW.place_id where place_id = linkedPlacex.place_id;
1642
1643             -- keep a note of the node id in case we need it for wikipedia in a bit
1644             linked_node_id := linkedPlacex.osm_id;
1645           END LOOP;
1646
1647         END LOOP;
1648
1649         IF NEW.centroid IS NULL THEN
1650
1651           FOR relMember IN select get_osm_rel_members(relation_members,ARRAY['admin_center','admin_centre']) as member LOOP
1652
1653             FOR linkedPlacex IN select * from placex where osm_type = upper(substring(relMember.member,1,1))::char(1) 
1654               and osm_id = substring(relMember.member,2,10000)::bigint order by rank_search desc limit 1 LOOP
1655
1656               -- For an admin centre we also want a name match - still not perfect, for example 'new york, new york'
1657               -- But that can be fixed by explicitly setting the label in the data
1658               IF make_standard_name(NEW.name->'name') = make_standard_name(linkedPlacex.name->'name') 
1659                 AND NEW.rank_address = linkedPlacex.rank_address THEN
1660
1661                 -- If we don't already have one use this as the centre point of the geometry
1662                 IF NEW.centroid IS NULL THEN
1663                   NEW.centroid := coalesce(linkedPlacex.centroid,st_centroid(linkedPlacex.geometry));
1664                 END IF;
1665
1666                 -- merge in the name, re-init word vector
1667                 IF NOT linkedPlacex.name IS NULL THEN
1668                   NEW.name := linkedPlacex.name || NEW.name;
1669                   name_vector := make_keywords(NEW.name);
1670                 END IF;
1671
1672                 -- merge in extra tags
1673                 NEW.extratags := hstore(linkedPlacex.class, linkedPlacex.type) || coalesce(linkedPlacex.extratags, ''::hstore) || coalesce(NEW.extratags, ''::hstore);
1674
1675                 -- mark the linked place (excludes from search results)
1676                 UPDATE placex set linked_place_id = NEW.place_id where place_id = linkedPlacex.place_id;
1677
1678                 -- keep a note of the node id in case we need it for wikipedia in a bit
1679                 linked_node_id := linkedPlacex.osm_id;
1680               END IF;
1681
1682             END LOOP;
1683
1684           END LOOP;
1685
1686         END IF;
1687       END IF;
1688
1689     END IF;
1690
1691     -- Name searches can be done for ways as well as relations
1692     IF NEW.osm_type in ('W','R') AND NEW.rank_search < 26 THEN
1693
1694       -- not found one yet? how about doing a name search
1695       IF NEW.centroid IS NULL AND (NEW.name->'name') is not null and make_standard_name(NEW.name->'name') != '' THEN
1696
1697         FOR linkedPlacex IN select placex.* from placex WHERE
1698           make_standard_name(name->'name') = make_standard_name(NEW.name->'name')
1699           AND placex.rank_address = NEW.rank_address
1700           AND placex.place_id != NEW.place_id
1701           AND placex.osm_type = 'N'::char(1) AND placex.rank_search < 26
1702           AND st_covers(NEW.geometry, placex.geometry)
1703         LOOP
1704
1705           -- If we don't already have one use this as the centre point of the geometry
1706           IF NEW.centroid IS NULL THEN
1707             NEW.centroid := coalesce(linkedPlacex.centroid,st_centroid(linkedPlacex.geometry));
1708           END IF;
1709
1710           -- merge in the name, re-init word vector
1711           NEW.name := linkedPlacex.name || NEW.name;
1712           name_vector := make_keywords(NEW.name);
1713
1714           -- merge in extra tags
1715           NEW.extratags := hstore(linkedPlacex.class, linkedPlacex.type) || coalesce(linkedPlacex.extratags, ''::hstore) || coalesce(NEW.extratags, ''::hstore);
1716
1717           -- mark the linked place (excludes from search results)
1718           UPDATE placex set linked_place_id = NEW.place_id where place_id = linkedPlacex.place_id;
1719
1720           -- keep a note of the node id in case we need it for wikipedia in a bit
1721           linked_node_id := linkedPlacex.osm_id;
1722         END LOOP;
1723       END IF;
1724
1725       IF NEW.centroid IS NOT NULL THEN
1726         place_centroid := NEW.centroid;
1727         -- Place might have had only a name tag before but has now received translations
1728         -- from the linked place. Make sure a name tag for the default language exists in
1729         -- this case. 
1730         IF NEW.name is not null AND array_upper(akeys(NEW.name),1) > 1 THEN
1731           default_language := get_country_language_code(NEW.calculated_country_code);
1732           IF default_language IS NOT NULL THEN
1733             IF NEW.name ? 'name' AND NOT NEW.name ? ('name:'||default_language) THEN
1734               NEW.name := NEW.name || hstore(('name:'||default_language), (NEW.name -> 'name'));
1735             ELSEIF NEW.name ? ('name:'||default_language) AND NOT NEW.name ? 'name' THEN
1736               NEW.name := NEW.name || hstore('name', (NEW.name -> ('name:'||default_language)));
1737             END IF;
1738           END IF;
1739         END IF;
1740       END IF;
1741
1742       -- Did we gain a wikipedia tag in the process? then we need to recalculate our importance
1743       IF NEW.importance is null THEN
1744         select language||':'||title,importance from get_wikipedia_match(NEW.extratags, NEW.calculated_country_code) INTO NEW.wikipedia,NEW.importance;
1745       END IF;
1746       -- Still null? how about looking it up by the node id
1747       IF NEW.importance IS NULL THEN
1748         select language||':'||title,importance from wikipedia_article where osm_type = 'N'::char(1) and osm_id = linked_node_id order by importance desc limit 1 INTO NEW.wikipedia,NEW.importance;
1749       END IF;
1750
1751     END IF;
1752
1753     -- make sure all names are in the word table
1754     IF NEW.admin_level = 2 AND NEW.class = 'boundary' AND NEW.type = 'administrative' AND NEW.country_code IS NOT NULL THEN
1755       perform create_country(NEW.name, lower(NEW.country_code));
1756     END IF;
1757
1758     NEW.parent_place_id = 0;
1759     parent_place_id_rank = 0;
1760
1761     -- convert isin to array of tokenids
1762     isin_tokens := '{}'::int[];
1763     IF NEW.isin IS NOT NULL THEN
1764       isin := regexp_split_to_array(NEW.isin, E'[;,]');
1765       IF array_upper(isin, 1) IS NOT NULL THEN
1766         FOR i IN 1..array_upper(isin, 1) LOOP
1767           address_street_word_id := get_name_id(make_standard_name(isin[i]));
1768           IF address_street_word_id IS NOT NULL AND NOT(ARRAY[address_street_word_id] <@ isin_tokens) THEN
1769             nameaddress_vector := array_merge(nameaddress_vector, ARRAY[address_street_word_id]);
1770             isin_tokens := isin_tokens || address_street_word_id;
1771           END IF;
1772
1773           -- merge word into address vector
1774           address_street_word_id := get_word_id(make_standard_name(isin[i]));
1775           IF address_street_word_id IS NOT NULL THEN
1776             nameaddress_vector := array_merge(nameaddress_vector, ARRAY[address_street_word_id]);
1777           END IF;
1778         END LOOP;
1779       END IF;
1780     END IF;
1781     IF NEW.postcode IS NOT NULL THEN
1782       isin := regexp_split_to_array(NEW.postcode, E'[;,]');
1783       IF array_upper(isin, 1) IS NOT NULL THEN
1784         FOR i IN 1..array_upper(isin, 1) LOOP
1785           address_street_word_id := get_name_id(make_standard_name(isin[i]));
1786           IF address_street_word_id IS NOT NULL AND NOT(ARRAY[address_street_word_id] <@ isin_tokens) THEN
1787             nameaddress_vector := array_merge(nameaddress_vector, ARRAY[address_street_word_id]);
1788             isin_tokens := isin_tokens || address_street_word_id;
1789           END IF;
1790
1791           -- merge into address vector
1792           address_street_word_id := get_word_id(make_standard_name(isin[i]));
1793           IF address_street_word_id IS NOT NULL THEN
1794             nameaddress_vector := array_merge(nameaddress_vector, ARRAY[address_street_word_id]);
1795           END IF;
1796         END LOOP;
1797       END IF;
1798     END IF;
1799
1800     -- for the USA we have an additional address table.  Merge in zip codes from there too
1801     IF NEW.rank_search = 26 AND NEW.calculated_country_code = 'us' THEN
1802       FOR location IN SELECT distinct postcode from location_property_tiger where parent_place_id = NEW.place_id LOOP
1803         address_street_word_id := get_name_id(make_standard_name(location.postcode));
1804         nameaddress_vector := array_merge(nameaddress_vector, ARRAY[address_street_word_id]);
1805         isin_tokens := isin_tokens || address_street_word_id;
1806
1807         -- also merge in the single word version
1808         address_street_word_id := get_word_id(make_standard_name(location.postcode));
1809         nameaddress_vector := array_merge(nameaddress_vector, ARRAY[address_street_word_id]);
1810       END LOOP;
1811     END IF;
1812
1813 -- RAISE WARNING 'ISIN: %', isin_tokens;
1814
1815     -- Process area matches
1816     location_rank_search := 0;
1817     location_distance := 0;
1818     location_parent := NULL;
1819     -- added ourself as address already
1820     address_havelevel[NEW.rank_address] := true;
1821     -- RAISE WARNING '  getNearFeatures(%,''%'',%,''%'')',NEW.partition, place_centroid, search_maxrank, isin_tokens;
1822     FOR location IN SELECT * from getNearFeatures(NEW.partition, place_centroid, search_maxrank, isin_tokens) LOOP
1823
1824 --RAISE WARNING '  AREA: %',location;
1825
1826       IF location.rank_address != location_rank_search THEN
1827         location_rank_search := location.rank_address;
1828         location_distance := location.distance * 1.5;
1829       END IF;
1830
1831       IF location.distance < location_distance OR NOT location.isguess THEN
1832
1833         location_isaddress := NOT address_havelevel[location.rank_address];
1834         IF location_isaddress AND location.isguess AND location_parent IS NOT NULL THEN
1835             location_isaddress := ST_Contains(location_parent,location.centroid);
1836         END IF;
1837
1838         -- RAISE WARNING '% isaddress: %', location.place_id, location_isaddress;
1839         -- Add it to the list of search terms
1840         IF location.rank_search > 4 THEN
1841             nameaddress_vector := array_merge(nameaddress_vector, location.keywords::integer[]);
1842         END IF;
1843         INSERT INTO place_addressline VALUES (NEW.place_id, location.place_id, true, location_isaddress, location.distance, location.rank_address);
1844
1845         IF location_isaddress THEN
1846
1847           address_havelevel[location.rank_address] := true;
1848           IF NOT location.isguess THEN
1849             SELECT geometry FROM placex WHERE place_id = location.place_id INTO location_parent;
1850           END IF;
1851
1852           IF location.rank_address > parent_place_id_rank THEN
1853             NEW.parent_place_id = location.place_id;
1854             parent_place_id_rank = location.rank_address;
1855           END IF;
1856
1857         END IF;
1858
1859 --RAISE WARNING '  Terms: (%) %',location, nameaddress_vector;
1860
1861       END IF;
1862
1863     END LOOP;
1864
1865     -- try using the isin value to find parent places
1866     IF array_upper(isin_tokens, 1) IS NOT NULL THEN
1867       FOR i IN 1..array_upper(isin_tokens, 1) LOOP
1868 --RAISE WARNING '  getNearestNamedFeature: % % % %',NEW.partition, place_centroid, search_maxrank, isin_tokens[i];
1869         IF NOT ARRAY[isin_tokens[i]] <@ nameaddress_vector THEN
1870
1871           FOR location IN SELECT * from getNearestNamedFeature(NEW.partition, place_centroid, search_maxrank, isin_tokens[i]) LOOP
1872
1873   --RAISE WARNING '  ISIN: %',location;
1874
1875             IF location.rank_search > 4 THEN
1876                 nameaddress_vector := array_merge(nameaddress_vector, location.keywords::integer[]);
1877                 INSERT INTO place_addressline VALUES (NEW.place_id, location.place_id, false, NOT address_havelevel[location.rank_address], location.distance, location.rank_address);
1878                 address_havelevel[location.rank_address] := true;
1879
1880                 IF location.rank_address > parent_place_id_rank THEN
1881                   NEW.parent_place_id = location.place_id;
1882                   parent_place_id_rank = location.rank_address;
1883                 END IF;
1884             END IF;
1885           END LOOP;
1886
1887         END IF;
1888
1889       END LOOP;
1890     END IF;
1891
1892     -- for long ways we should add search terms for the entire length
1893     IF st_length(NEW.geometry) > 0.05 THEN
1894
1895       location_rank_search := 0;
1896       location_distance := 0;
1897
1898       FOR location IN SELECT * from getNearFeatures(NEW.partition, NEW.geometry, search_maxrank, isin_tokens) LOOP
1899
1900         IF location.rank_address != location_rank_search THEN
1901           location_rank_search := location.rank_address;
1902           location_distance := location.distance * 1.5;
1903         END IF;
1904
1905         IF location.rank_search > 4 AND location.distance < location_distance THEN
1906
1907           -- Add it to the list of search terms
1908           nameaddress_vector := array_merge(nameaddress_vector, location.keywords::integer[]);
1909           INSERT INTO place_addressline VALUES (NEW.place_id, location.place_id, true, false, location.distance, location.rank_address); 
1910
1911         END IF;
1912
1913       END LOOP;
1914
1915     END IF;
1916
1917     -- if we have a name add this to the name search table
1918     IF NEW.name IS NOT NULL THEN
1919
1920       IF NEW.rank_search <= 25 THEN
1921         result := add_location(NEW.place_id, NEW.calculated_country_code, NEW.partition, name_vector, NEW.rank_search, NEW.rank_address, NEW.geometry);
1922       END IF;
1923
1924       IF NEW.rank_search between 26 and 27 and NEW.class = 'highway' THEN
1925         result := insertLocationRoad(NEW.partition, NEW.place_id, NEW.calculated_country_code, NEW.geometry);
1926       END IF;
1927
1928       result := insertSearchName(NEW.partition, NEW.place_id, NEW.calculated_country_code, name_vector, nameaddress_vector, NEW.rank_search, NEW.rank_address, NEW.importance, place_centroid, NEW.geometry);
1929
1930     END IF;
1931
1932     -- If we've not managed to pick up a better one - default centroid
1933     IF NEW.centroid IS NULL THEN
1934       NEW.centroid := place_centroid;
1935     END IF;
1936
1937   END IF;
1938
1939   RETURN NEW;
1940 END;
1941 $$
1942 LANGUAGE plpgsql;
1943
1944 CREATE OR REPLACE FUNCTION placex_delete() RETURNS TRIGGER
1945   AS $$
1946 DECLARE
1947   b BOOLEAN;
1948   classtable TEXT;
1949 BEGIN
1950   -- RAISE WARNING 'placex_delete % %',OLD.osm_type,OLD.osm_id;
1951
1952   update placex set linked_place_id = null, indexed_status = 2 where linked_place_id = OLD.place_id and indexed_status = 0;
1953   --DEBUG: RAISE WARNING 'placex_delete:01 % %',OLD.osm_type,OLD.osm_id;
1954   update placex set linked_place_id = null where linked_place_id = OLD.place_id;
1955   --DEBUG: RAISE WARNING 'placex_delete:02 % %',OLD.osm_type,OLD.osm_id;
1956
1957   IF OLD.rank_address < 30 THEN
1958
1959     -- mark everything linked to this place for re-indexing
1960     --DEBUG: RAISE WARNING 'placex_delete:03 % %',OLD.osm_type,OLD.osm_id;
1961     UPDATE placex set indexed_status = 2 from place_addressline where address_place_id = OLD.place_id 
1962       and placex.place_id = place_addressline.place_id and indexed_status = 0 and place_addressline.isaddress;
1963
1964     --DEBUG: RAISE WARNING 'placex_delete:04 % %',OLD.osm_type,OLD.osm_id;
1965     DELETE FROM place_addressline where address_place_id = OLD.place_id;
1966
1967     --DEBUG: RAISE WARNING 'placex_delete:05 % %',OLD.osm_type,OLD.osm_id;
1968     b := deleteRoad(OLD.partition, OLD.place_id);
1969
1970     --DEBUG: RAISE WARNING 'placex_delete:06 % %',OLD.osm_type,OLD.osm_id;
1971     update placex set indexed_status = 2 where parent_place_id = OLD.place_id and indexed_status = 0;
1972     --DEBUG: RAISE WARNING 'placex_delete:07 % %',OLD.osm_type,OLD.osm_id;
1973
1974   END IF;
1975
1976   --DEBUG: RAISE WARNING 'placex_delete:08 % %',OLD.osm_type,OLD.osm_id;
1977
1978   IF OLD.rank_address < 26 THEN
1979     b := deleteLocationArea(OLD.partition, OLD.place_id, OLD.rank_search);
1980   END IF;
1981
1982   --DEBUG: RAISE WARNING 'placex_delete:09 % %',OLD.osm_type,OLD.osm_id;
1983
1984   IF OLD.name is not null THEN
1985     b := deleteSearchName(OLD.partition, OLD.place_id);
1986   END IF;
1987
1988   --DEBUG: RAISE WARNING 'placex_delete:10 % %',OLD.osm_type,OLD.osm_id;
1989
1990   DELETE FROM place_addressline where place_id = OLD.place_id;
1991
1992   --DEBUG: RAISE WARNING 'placex_delete:11 % %',OLD.osm_type,OLD.osm_id;
1993
1994   -- remove from tables for special search
1995   classtable := 'place_classtype_' || OLD.class || '_' || OLD.type;
1996   SELECT count(*)>0 FROM pg_tables WHERE tablename = classtable and schemaname = current_schema() INTO b;
1997   IF b THEN
1998     EXECUTE 'DELETE FROM ' || classtable::regclass || ' WHERE place_id = $1' USING OLD.place_id;
1999   END IF;
2000
2001   --DEBUG: RAISE WARNING 'placex_delete:12 % %',OLD.osm_type,OLD.osm_id;
2002
2003   RETURN OLD;
2004
2005 END;
2006 $$
2007 LANGUAGE plpgsql;
2008
2009 CREATE OR REPLACE FUNCTION place_delete() RETURNS TRIGGER
2010   AS $$
2011 DECLARE
2012   has_rank BOOLEAN;
2013 BEGIN
2014
2015   --DEBUG: RAISE WARNING 'delete: % % % %',OLD.osm_type,OLD.osm_id,OLD.class,OLD.type;
2016
2017   -- deleting large polygons can have a massive effect on the system - require manual intervention to let them through
2018   IF st_area(OLD.geometry) > 2 and st_isvalid(OLD.geometry) THEN
2019     SELECT bool_or(not (rank_address = 0 or rank_address > 26)) as ranked FROM placex WHERE osm_type = OLD.osm_type and osm_id = OLD.osm_id and class = OLD.class and type = OLD.type INTO has_rank;
2020     IF has_rank THEN
2021       insert into import_polygon_delete values (OLD.osm_type,OLD.osm_id,OLD.class,OLD.type);
2022       RETURN NULL;
2023     END IF;
2024   END IF;
2025
2026   -- mark for delete
2027   UPDATE placex set indexed_status = 100 where osm_type = OLD.osm_type and osm_id = OLD.osm_id and class = OLD.class and type = OLD.type;
2028
2029   RETURN OLD;
2030
2031 END;
2032 $$
2033 LANGUAGE plpgsql;
2034
2035 CREATE OR REPLACE FUNCTION place_insert() RETURNS TRIGGER
2036   AS $$
2037 DECLARE
2038   i INTEGER;
2039   existing RECORD;
2040   existingplacex RECORD;
2041   existinggeometry GEOMETRY;
2042   existingplace_id BIGINT;
2043   result BOOLEAN;
2044   partition INTEGER;
2045 BEGIN
2046
2047   --DEBUG: RAISE WARNING '-----------------------------------------------------------------------------------';
2048   --DEBUG: RAISE WARNING 'place_insert: % % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type,st_area(NEW.geometry);
2049
2050   IF FALSE and NEW.osm_type = 'R' THEN
2051     select * from placex where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type INTO existingplacex;
2052     --DEBUG: RAISE WARNING '%', existingplacex;
2053   END IF;
2054
2055   -- remove operator tag for most places, messes too much with search_name indexes
2056   IF NEW.class not in ('amenity', 'shop') THEN
2057     NEW.name := delete(NEW.name, 'operator');
2058   END IF;
2059
2060   -- Just block these - lots and pointless
2061   IF NEW.class in ('landuse','natural') and NEW.name is null THEN
2062     -- if the name tag was removed, older versions might still be lurking in the place table
2063     DELETE FROM place where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type;
2064     RETURN null;
2065   END IF;
2066
2067   IF ST_IsEmpty(NEW.geometry) OR NOT ST_IsValid(NEW.geometry) OR ST_X(ST_Centroid(NEW.geometry))::text in ('NaN','Infinity','-Infinity') OR ST_Y(ST_Centroid(NEW.geometry))::text in ('NaN','Infinity','-Infinity') THEN  
2068     INSERT INTO import_polygon_error values (NEW.osm_type, NEW.osm_id, NEW.class, NEW.type, NEW.name, NEW.country_code, 
2069       now(), ST_IsValidReason(NEW.geometry), null, NEW.geometry);
2070 --    RAISE WARNING 'Invalid Geometry: % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type;
2071     RETURN null;
2072   END IF;
2073
2074   -- Patch in additional country names
2075   IF NEW.admin_level = 2 AND NEW.type = 'administrative' AND NEW.country_code is not null THEN
2076     select coalesce(country_name.name || NEW.name,NEW.name) from country_name where country_name.country_code = lower(NEW.country_code) INTO NEW.name;
2077   END IF;
2078     
2079   -- Have we already done this place?
2080   select * from place where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type INTO existing;
2081
2082   -- Get the existing place_id
2083   select * from placex where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type INTO existingplacex;
2084
2085   -- Handle a place changing type by removing the old data
2086   -- My generated 'place' types are causing havok because they overlap with real keys
2087   -- TODO: move them to their own special purpose key/class to avoid collisions
2088   IF existing.osm_type IS NULL THEN
2089     DELETE FROM place where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class;
2090   END IF;
2091
2092   --DEBUG: RAISE WARNING 'Existing: %',existing.osm_id;
2093   --DEBUG: RAISE WARNING 'Existing PlaceX: %',existingplacex.place_id;
2094
2095   -- Log and discard 
2096   IF existing.geometry is not null AND st_isvalid(existing.geometry) 
2097     AND st_area(existing.geometry) > 0.02
2098     AND ST_GeometryType(NEW.geometry) in ('ST_Polygon','ST_MultiPolygon')
2099     AND st_area(NEW.geometry) < st_area(existing.geometry)*0.5
2100     THEN
2101     INSERT INTO import_polygon_error values (NEW.osm_type, NEW.osm_id, NEW.class, NEW.type, NEW.name, NEW.country_code, now(), 
2102       'Area reduced from '||st_area(existing.geometry)||' to '||st_area(NEW.geometry), existing.geometry, NEW.geometry);
2103     RETURN null;
2104   END IF;
2105
2106   DELETE from import_polygon_error where osm_type = NEW.osm_type and osm_id = NEW.osm_id;
2107   DELETE from import_polygon_delete where osm_type = NEW.osm_type and osm_id = NEW.osm_id;
2108
2109   -- To paraphrase, if there isn't an existing item, OR if the admin level has changed
2110   IF existingplacex.osm_type IS NULL OR
2111     (coalesce(existingplacex.admin_level, 15) != coalesce(NEW.admin_level, 15) AND existingplacex.class = 'boundary' AND existingplacex.type = 'administrative')
2112   THEN
2113
2114     IF existingplacex.osm_type IS NOT NULL THEN
2115       -- sanity check: ignore admin_level changes on places with too many active children
2116       -- or we end up reindexing entire countries because somebody accidentally deleted admin_level
2117       --LIMIT INDEXING: SELECT count(*) FROM (SELECT 'a' FROM placex , place_addressline where address_place_id = existingplacex.place_id and placex.place_id = place_addressline.place_id and indexed_status = 0 and place_addressline.isaddress LIMIT 100001) sub INTO i;
2118       --LIMIT INDEXING: IF i > 100000 THEN
2119       --LIMIT INDEXING:  RETURN null;
2120       --LIMIT INDEXING: END IF;
2121     END IF;
2122
2123     IF existing.osm_type IS NOT NULL THEN
2124       -- pathological case caused by the triggerless copy into place during initial import
2125       -- force delete even for large areas, it will be reinserted later
2126       UPDATE place set geometry = ST_SetSRID(ST_Point(0,0), 4326) where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type;
2127       DELETE from place where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type;
2128     END IF;
2129
2130     -- No - process it as a new insertion (hopefully of low rank or it will be slow)
2131     insert into placex (osm_type, osm_id, class, type, name, admin_level, housenumber, 
2132       street, addr_place, isin, postcode, country_code, extratags, geometry)
2133       values (NEW.osm_type
2134         ,NEW.osm_id
2135         ,NEW.class
2136         ,NEW.type
2137         ,NEW.name
2138         ,NEW.admin_level
2139         ,NEW.housenumber
2140         ,NEW.street
2141         ,NEW.addr_place
2142         ,NEW.isin
2143         ,NEW.postcode
2144         ,NEW.country_code
2145         ,NEW.extratags
2146         ,NEW.geometry
2147         );
2148
2149     --DEBUG: RAISE WARNING 'insert done % % % % %',NEW.osm_type,NEW.osm_id,NEW.class,NEW.type,NEW.name;
2150
2151     RETURN NEW;
2152   END IF;
2153
2154   -- Various ways to do the update
2155
2156   -- Debug, what's changed?
2157   IF FALSE THEN
2158     IF coalesce(existing.name::text, '') != coalesce(NEW.name::text, '') THEN
2159       RAISE WARNING 'update details, name: % % % %',NEW.osm_type,NEW.osm_id,existing.name::text,NEW.name::text;
2160     END IF;
2161     IF coalesce(existing.housenumber, '') != coalesce(NEW.housenumber, '') THEN
2162       RAISE WARNING 'update details, housenumber: % % % %',NEW.osm_type,NEW.osm_id,existing.housenumber,NEW.housenumber;
2163     END IF;
2164     IF coalesce(existing.street, '') != coalesce(NEW.street, '') THEN
2165       RAISE WARNING 'update details, street: % % % %',NEW.osm_type,NEW.osm_id,existing.street,NEW.street;
2166     END IF;
2167     IF coalesce(existing.addr_place, '') != coalesce(NEW.addr_place, '') THEN
2168       RAISE WARNING 'update details, street: % % % %',NEW.osm_type,NEW.osm_id,existing.addr_place,NEW.addr_place;
2169     END IF;
2170     IF coalesce(existing.isin, '') != coalesce(NEW.isin, '') THEN
2171       RAISE WARNING 'update details, isin: % % % %',NEW.osm_type,NEW.osm_id,existing.isin,NEW.isin;
2172     END IF;
2173     IF coalesce(existing.postcode, '') != coalesce(NEW.postcode, '') THEN
2174       RAISE WARNING 'update details, postcode: % % % %',NEW.osm_type,NEW.osm_id,existing.postcode,NEW.postcode;
2175     END IF;
2176     IF coalesce(existing.country_code, '') != coalesce(NEW.country_code, '') THEN
2177       RAISE WARNING 'update details, country_code: % % % %',NEW.osm_type,NEW.osm_id,existing.country_code,NEW.country_code;
2178     END IF;
2179   END IF;
2180
2181   -- Special case for polygon shape changes because they tend to be large and we can be a bit clever about how we handle them
2182   IF existing.geometry::text != NEW.geometry::text 
2183      AND ST_GeometryType(existing.geometry) in ('ST_Polygon','ST_MultiPolygon')
2184      AND ST_GeometryType(NEW.geometry) in ('ST_Polygon','ST_MultiPolygon') 
2185      THEN 
2186
2187     -- Get the version of the geometry actually used (in placex table)
2188     select geometry from placex where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type into existinggeometry;
2189
2190     -- Performance limit
2191     IF st_area(NEW.geometry) < 0.000000001 AND st_area(existinggeometry) < 1 THEN
2192
2193       -- re-index points that have moved in / out of the polygon, could be done as a single query but postgres gets the index usage wrong
2194       update placex set indexed_status = 2 where indexed_status = 0 and 
2195           (st_covers(NEW.geometry, placex.geometry) OR ST_Intersects(NEW.geometry, placex.geometry))
2196           AND NOT (st_covers(existinggeometry, placex.geometry) OR ST_Intersects(existinggeometry, placex.geometry))
2197           AND rank_search > existingplacex.rank_search AND (rank_search < 28 or name is not null);
2198
2199       update placex set indexed_status = 2 where indexed_status = 0 and 
2200           (st_covers(existinggeometry, placex.geometry) OR ST_Intersects(existinggeometry, placex.geometry))
2201           AND NOT (st_covers(NEW.geometry, placex.geometry) OR ST_Intersects(NEW.geometry, placex.geometry))
2202           AND rank_search > existingplacex.rank_search AND (rank_search < 28 or name is not null);
2203
2204     END IF;
2205
2206   END IF;
2207
2208   -- Special case - if we are just adding extra words we hack them into the search_name table rather than reindexing
2209   IF FALSE AND existingplacex.rank_search < 26
2210      AND coalesce(existing.housenumber, '') = coalesce(NEW.housenumber, '')
2211      AND coalesce(existing.street, '') = coalesce(NEW.street, '')
2212      AND coalesce(existing.addr_place, '') = coalesce(NEW.addr_place, '')
2213      AND coalesce(existing.isin, '') = coalesce(NEW.isin, '')
2214      AND coalesce(existing.postcode, '') = coalesce(NEW.postcode, '')
2215      AND coalesce(existing.country_code, '') = coalesce(NEW.country_code, '')
2216      AND coalesce(existing.name::text, '') != coalesce(NEW.name::text, '') 
2217      THEN
2218
2219     IF NOT update_location_nameonly(existingplacex.place_id, NEW.name) THEN
2220
2221       IF st_area(NEW.geometry) < 0.5 THEN
2222         UPDATE placex set indexed_status = 2 from place_addressline where address_place_id = existingplacex.place_id 
2223           and placex.place_id = place_addressline.place_id and indexed_status = 0
2224           and (rank_search < 28 or name is not null);
2225       END IF;
2226
2227     END IF;
2228   
2229   ELSE
2230
2231     -- Anything else has changed - reindex the lot
2232     IF coalesce(existing.name::text, '') != coalesce(NEW.name::text, '')
2233         OR coalesce(existing.housenumber, '') != coalesce(NEW.housenumber, '')
2234         OR coalesce(existing.street, '') != coalesce(NEW.street, '')
2235         OR coalesce(existing.addr_place, '') != coalesce(NEW.addr_place, '')
2236         OR coalesce(existing.isin, '') != coalesce(NEW.isin, '')
2237         OR coalesce(existing.postcode, '') != coalesce(NEW.postcode, '')
2238         OR coalesce(existing.country_code, '') != coalesce(NEW.country_code, '') THEN
2239
2240       -- performance, can't take the load of re-indexing a whole country / huge area
2241       IF st_area(NEW.geometry) < 0.5 THEN
2242 --        UPDATE placex set indexed_status = 2 from place_addressline where address_place_id = existingplacex.place_id 
2243 --          and placex.place_id = place_addressline.place_id and indexed_status = 0;
2244       END IF;
2245
2246     END IF;
2247
2248   END IF;
2249
2250   -- refuse to update multiplpoygons with too many objects, too much of a performance hit
2251   IF ST_NumGeometries(NEW.geometry) > 2000 THEN
2252     RAISE WARNING 'Dropping update of % % because of geometry complexity.', NEW.osm_type, NEW.osm_id;
2253     RETURN NULL;
2254   END IF;
2255
2256   IF coalesce(existing.name::text, '') != coalesce(NEW.name::text, '')
2257      OR coalesce(existing.extratags::text, '') != coalesce(NEW.extratags::text, '')
2258      OR coalesce(existing.housenumber, '') != coalesce(NEW.housenumber, '')
2259      OR coalesce(existing.street, '') != coalesce(NEW.street, '')
2260      OR coalesce(existing.addr_place, '') != coalesce(NEW.addr_place, '')
2261      OR coalesce(existing.isin, '') != coalesce(NEW.isin, '')
2262      OR coalesce(existing.postcode, '') != coalesce(NEW.postcode, '')
2263      OR coalesce(existing.country_code, '') != coalesce(NEW.country_code, '')
2264      OR coalesce(existing.admin_level, 15) != coalesce(NEW.admin_level, 15)
2265      OR existing.geometry::text != NEW.geometry::text
2266      THEN
2267
2268     update place set 
2269       name = NEW.name,
2270       housenumber  = NEW.housenumber,
2271       street = NEW.street,
2272       addr_place = NEW.addr_place,
2273       isin = NEW.isin,
2274       postcode = NEW.postcode,
2275       country_code = NEW.country_code,
2276       extratags = NEW.extratags,
2277       admin_level = NEW.admin_level,
2278       geometry = NEW.geometry
2279       where osm_type = NEW.osm_type and osm_id = NEW.osm_id and class = NEW.class and type = NEW.type;
2280
2281     IF NEW.class in ('place','boundary') AND NEW.type in ('postcode','postal_code') THEN
2282         IF NEW.postcode IS NULL THEN
2283             -- postcode was deleted, no longer retain in placex
2284             DELETE FROM placex where place_id = existingplacex.place_id;
2285             RETURN NULL;
2286         END IF;
2287
2288         NEW.name := hstore('ref', NEW.postcode);
2289     END IF;
2290
2291     update placex set 
2292       name = NEW.name,
2293       housenumber = NEW.housenumber,
2294       street = NEW.street,
2295       addr_place = NEW.addr_place,
2296       isin = NEW.isin,
2297       postcode = NEW.postcode,
2298       country_code = NEW.country_code,
2299       parent_place_id = null,
2300       extratags = NEW.extratags,
2301       admin_level = CASE WHEN NEW.admin_level > 15 THEN 15 ELSE NEW.admin_level END,
2302       indexed_status = 2,    
2303       geometry = NEW.geometry
2304       where place_id = existingplacex.place_id;
2305
2306   END IF;
2307
2308   -- Abort the add (we modified the existing place instead)
2309   RETURN NULL;
2310
2311 END; 
2312 $$ LANGUAGE plpgsql;
2313
2314 CREATE OR REPLACE FUNCTION get_name_by_language(name hstore, languagepref TEXT[]) RETURNS TEXT
2315   AS $$
2316 DECLARE
2317   search TEXT[];
2318   found BOOLEAN;
2319 BEGIN
2320
2321   IF name is null THEN
2322     RETURN null;
2323   END IF;
2324
2325   search := languagepref;
2326
2327   FOR j IN 1..array_upper(search, 1) LOOP
2328     IF name ? search[j] AND trim(name->search[j]) != '' THEN
2329       return trim(name->search[j]);
2330     END IF;
2331   END LOOP;
2332
2333   -- anything will do as a fallback - just take the first name type thing there is
2334   search := avals(name);
2335   RETURN search[1];
2336 END;
2337 $$
2338 LANGUAGE plpgsql IMMUTABLE;
2339
2340 --CREATE OR REPLACE FUNCTION get_connected_ways(way_ids INTEGER[]) RETURNS SETOF planet_osm_ways
2341 --  AS $$
2342 --DECLARE
2343 --  searchnodes INTEGER[];
2344 --  location RECORD;
2345 --  j INTEGER;
2346 --BEGIN
2347 --
2348 --  searchnodes := '{}';
2349 --  FOR j IN 1..array_upper(way_ids, 1) LOOP
2350 --    FOR location IN
2351 --      select nodes from planet_osm_ways where id = way_ids[j] LIMIT 1
2352 --    LOOP
2353 --      IF not (ARRAY[location.nodes] <@ searchnodes) THEN
2354 --        searchnodes := searchnodes || location.nodes;
2355 --      END IF;
2356 --    END LOOP;
2357 --  END LOOP;
2358 --
2359 --  RETURN QUERY select * from planet_osm_ways where nodes && searchnodes and NOT ARRAY[id] <@ way_ids;
2360 --END;
2361 --$$
2362 --LANGUAGE plpgsql IMMUTABLE;
2363
2364 CREATE OR REPLACE FUNCTION get_address_postcode(for_place_id BIGINT) RETURNS TEXT
2365   AS $$
2366 DECLARE
2367   result TEXT[];
2368   search TEXT[];
2369   for_postcode TEXT;
2370   found INTEGER;
2371   location RECORD;
2372 BEGIN
2373
2374   found := 1000;
2375   search := ARRAY['ref'];
2376   result := '{}';
2377
2378   select postcode from placex where place_id = for_place_id limit 1 into for_postcode;
2379
2380   FOR location IN 
2381     select rank_address,name,distance,length(name::text) as namelength 
2382       from place_addressline join placex on (address_place_id = placex.place_id) 
2383       where place_addressline.place_id = for_place_id and rank_address in (5,11)
2384       order by rank_address desc,rank_search desc,fromarea desc,distance asc,namelength desc
2385   LOOP
2386     IF array_upper(search, 1) IS NOT NULL AND array_upper(location.name, 1) IS NOT NULL THEN
2387       FOR j IN 1..array_upper(search, 1) LOOP
2388         FOR k IN 1..array_upper(location.name, 1) LOOP
2389           IF (found > location.rank_address AND location.name[k].key = search[j] AND location.name[k].value != '') AND NOT result @> ARRAY[trim(location.name[k].value)] AND (for_postcode IS NULL OR location.name[k].value ilike for_postcode||'%') THEN
2390             result[(100 - location.rank_address)] := trim(location.name[k].value);
2391             found := location.rank_address;
2392           END IF;
2393         END LOOP;
2394       END LOOP;
2395     END IF;
2396   END LOOP;
2397
2398   RETURN array_to_string(result,', ');
2399 END;
2400 $$
2401 LANGUAGE plpgsql;
2402
2403 CREATE OR REPLACE FUNCTION get_address_by_language(for_place_id BIGINT, languagepref TEXT[]) RETURNS TEXT
2404   AS $$
2405 DECLARE
2406   result TEXT[];
2407   currresult TEXT;
2408   prevresult TEXT;
2409   location RECORD;
2410 BEGIN
2411
2412   result := '{}';
2413   prevresult := '';
2414
2415   FOR location IN select * from get_addressdata(for_place_id) where isaddress order by rank_address desc LOOP
2416     currresult := trim(get_name_by_language(location.name, languagepref));
2417     IF currresult != prevresult AND currresult IS NOT NULL AND result[(100 - location.rank_address)] IS NULL THEN
2418       result[(100 - location.rank_address)] := trim(get_name_by_language(location.name, languagepref));
2419       prevresult := currresult;
2420     END IF;
2421   END LOOP;
2422
2423   RETURN array_to_string(result,', ');
2424 END;
2425 $$
2426 LANGUAGE plpgsql;
2427
2428 DROP TYPE IF EXISTS addressline CASCADE;
2429 create type addressline as (
2430   place_id BIGINT,
2431   osm_type CHAR(1),
2432   osm_id BIGINT,
2433   name HSTORE,
2434   class TEXT,
2435   type TEXT,
2436   admin_level INTEGER,
2437   fromarea BOOLEAN,  
2438   isaddress BOOLEAN,  
2439   rank_address INTEGER,
2440   distance FLOAT
2441 );
2442
2443 CREATE OR REPLACE FUNCTION get_addressdata(in_place_id BIGINT) RETURNS setof addressline 
2444   AS $$
2445 DECLARE
2446   for_place_id BIGINT;
2447   result TEXT[];
2448   search TEXT[];
2449   found INTEGER;
2450   location RECORD;
2451   countrylocation RECORD;
2452   searchcountrycode varchar(2);
2453   searchhousenumber TEXT;
2454   searchhousename HSTORE;
2455   searchrankaddress INTEGER;
2456   searchpostcode TEXT;
2457   searchclass TEXT;
2458   searchtype TEXT;
2459   countryname HSTORE;
2460   hadcountry BOOLEAN;
2461 BEGIN
2462
2463   select parent_place_id,'us', housenumber, 30, postcode, null, 'place', 'house' from location_property_tiger 
2464     WHERE place_id = in_place_id 
2465     INTO for_place_id,searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode, searchhousename, searchclass, searchtype;
2466
2467   IF for_place_id IS NULL THEN
2468     select parent_place_id,'us', housenumber, 30, postcode, null, 'place', 'house' from location_property_aux
2469       WHERE place_id = in_place_id 
2470       INTO for_place_id,searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode, searchhousename, searchclass, searchtype;
2471   END IF;
2472
2473   IF for_place_id IS NULL THEN
2474     select parent_place_id, calculated_country_code, housenumber, rank_search, postcode, name, class, type from placex 
2475       WHERE place_id = in_place_id and rank_address = 30 
2476       INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode, searchhousename, searchclass, searchtype;
2477   END IF;
2478
2479   IF for_place_id IS NULL THEN
2480     for_place_id := in_place_id;
2481     select calculated_country_code, housenumber, rank_search, postcode, null from placex where place_id = for_place_id 
2482       INTO searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode, searchhousename;
2483   END IF;
2484
2485 --RAISE WARNING '% % % %',searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode;
2486
2487   found := 1000;
2488   hadcountry := false;
2489   FOR location IN 
2490     select placex.place_id, osm_type, osm_id,
2491       CASE WHEN class = 'place' and type = 'postcode' THEN hstore('name', postcode) ELSE name END as name,
2492       class, type, admin_level, true as fromarea, true as isaddress,
2493       CASE WHEN rank_address = 0 THEN 100 WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address,
2494       0 as distance, calculated_country_code, postcode
2495       from placex
2496       where place_id = for_place_id 
2497   LOOP
2498 --RAISE WARNING '%',location;
2499     IF searchcountrycode IS NULL AND location.calculated_country_code IS NOT NULL THEN
2500       searchcountrycode := location.calculated_country_code;
2501     END IF;
2502     IF searchpostcode IS NOT NULL and location.type = 'postcode' THEN
2503       location.isaddress := FALSE;
2504     END IF;
2505     IF searchpostcode IS NULL and location.postcode IS NOT NULL THEN
2506       searchpostcode := location.postcode;
2507     END IF;
2508     IF location.rank_address = 4 AND location.isaddress THEN
2509       hadcountry := true;
2510     END IF;
2511     IF location.rank_address < 4 AND NOT hadcountry THEN
2512       select name from country_name where country_code = searchcountrycode limit 1 INTO countryname;
2513       IF countryname IS NOT NULL THEN
2514         countrylocation := ROW(null, null, null, countryname, 'place', 'country', null, true, true, 4, 0)::addressline;
2515         RETURN NEXT countrylocation;
2516       END IF;
2517     END IF;
2518     countrylocation := ROW(location.place_id, location.osm_type, location.osm_id, location.name, location.class, 
2519                            location.type, location.admin_level, location.fromarea, location.isaddress, location.rank_address, 
2520                            location.distance)::addressline;
2521     RETURN NEXT countrylocation;
2522     found := location.rank_address;
2523   END LOOP;
2524
2525   FOR location IN 
2526     select placex.place_id, osm_type, osm_id,
2527       CASE WHEN class = 'place' and type = 'postcode' THEN hstore('name', postcode) ELSE name END as name,
2528       CASE WHEN extratags ? 'place' THEN 'place' ELSE class END as class,
2529       CASE WHEN extratags ? 'place' THEN extratags->'place' ELSE type END as type,
2530       admin_level, fromarea, isaddress,
2531       CASE WHEN address_place_id = for_place_id AND rank_address = 0 THEN 100 WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address,
2532       distance,calculated_country_code,postcode
2533       from place_addressline join placex on (address_place_id = placex.place_id) 
2534       where place_addressline.place_id = for_place_id 
2535       and (cached_rank_address > 0 AND cached_rank_address < searchrankaddress)
2536       and address_place_id != for_place_id
2537       and (placex.calculated_country_code IS NULL OR searchcountrycode IS NULL OR placex.calculated_country_code = searchcountrycode)
2538       order by rank_address desc,isaddress desc,fromarea desc,distance asc,rank_search desc
2539   LOOP
2540 --RAISE WARNING '%',location;
2541     IF searchcountrycode IS NULL AND location.calculated_country_code IS NOT NULL THEN
2542       searchcountrycode := location.calculated_country_code;
2543     END IF;
2544     IF searchpostcode IS NOT NULL and location.type = 'postcode' THEN
2545       location.isaddress := FALSE;
2546     END IF;
2547     IF searchpostcode IS NULL and location.isaddress and location.type != 'postcode' and location.postcode IS NOT NULL THEN
2548       searchpostcode := location.postcode;
2549     END IF;
2550     IF location.rank_address = 4 AND location.isaddress THEN
2551       hadcountry := true;
2552     END IF;
2553     IF location.rank_address < 4 AND NOT hadcountry THEN
2554       select name from country_name where country_code = searchcountrycode limit 1 INTO countryname;
2555       IF countryname IS NOT NULL THEN
2556         countrylocation := ROW(null, null, null, countryname, 'place', 'country', null, true, true, 4, 0)::addressline;
2557         RETURN NEXT countrylocation;
2558       END IF;
2559     END IF;
2560     countrylocation := ROW(location.place_id, location.osm_type, location.osm_id, location.name, location.class, 
2561                            location.type, location.admin_level, location.fromarea, location.isaddress, location.rank_address, 
2562                            location.distance)::addressline;
2563     RETURN NEXT countrylocation;
2564     found := location.rank_address;
2565   END LOOP;
2566
2567   IF found > 4 THEN
2568     select name from country_name where country_code = searchcountrycode limit 1 INTO countryname;
2569 --RAISE WARNING '% % %',found,searchcountrycode,countryname;
2570     IF countryname IS NOT NULL THEN
2571       location := ROW(null, null, null, countryname, 'place', 'country', null, true, true, 4, 0)::addressline;
2572       RETURN NEXT location;
2573     END IF;
2574   END IF;
2575
2576   IF searchcountrycode IS NOT NULL THEN
2577     location := ROW(null, null, null, hstore('ref', searchcountrycode), 'place', 'country_code', null, true, false, 4, 0)::addressline;
2578     RETURN NEXT location;
2579   END IF;
2580
2581   IF searchhousename IS NOT NULL THEN
2582     location := ROW(in_place_id, null, null, searchhousename, searchclass, searchtype, null, true, true, 29, 0)::addressline;
2583 --    location := ROW(in_place_id, null, null, searchhousename, 'place', 'house_name', null, true, true, 29, 0)::addressline;
2584     RETURN NEXT location;
2585   END IF;
2586
2587   IF searchhousenumber IS NOT NULL THEN
2588     location := ROW(in_place_id, null, null, hstore('ref', searchhousenumber), 'place', 'house_number', null, true, true, 28, 0)::addressline;
2589     RETURN NEXT location;
2590   END IF;
2591
2592   IF searchpostcode IS NOT NULL THEN
2593     location := ROW(null, null, null, hstore('ref', searchpostcode), 'place', 'postcode', null, true, true, 5, 0)::addressline;
2594     RETURN NEXT location;
2595   END IF;
2596
2597   RETURN;
2598 END;
2599 $$
2600 LANGUAGE plpgsql;
2601
2602
2603 CREATE OR REPLACE FUNCTION update_place(search_place_id BIGINT) RETURNS BOOLEAN
2604   AS $$
2605 DECLARE
2606   numfeatures integer;
2607 BEGIN
2608   update placex set 
2609       name = place.name,
2610       housenumber = place.housenumber,
2611       street = place.street,
2612       addr_place = place.addr_place,
2613       isin = place.isin,
2614       postcode = place.postcode,
2615       country_code = place.country_code,
2616       parent_place_id = null
2617       from place
2618       where placex.place_id = search_place_id 
2619         and place.osm_type = placex.osm_type and place.osm_id = placex.osm_id
2620         and place.class = placex.class and place.type = placex.type;
2621   update placex set indexed_status = 2 where place_id = search_place_id;
2622   update placex set indexed_status = 0 where place_id = search_place_id;
2623   return true;
2624 END;
2625 $$
2626 LANGUAGE plpgsql;
2627
2628 CREATE OR REPLACE FUNCTION get_searchrank_label(rank INTEGER) RETURNS TEXT
2629   AS $$
2630 DECLARE
2631 BEGIN
2632   IF rank < 2 THEN
2633     RETURN 'Continent';
2634   ELSEIF rank < 4 THEN
2635     RETURN 'Sea';
2636   ELSEIF rank < 8 THEN
2637     RETURN 'Country';
2638   ELSEIF rank < 12 THEN
2639     RETURN 'State';
2640   ELSEIF rank < 16 THEN
2641     RETURN 'County';
2642   ELSEIF rank = 16 THEN
2643     RETURN 'City';
2644   ELSEIF rank = 17 THEN
2645     RETURN 'Town / Island';
2646   ELSEIF rank = 18 THEN
2647     RETURN 'Village / Hamlet';
2648   ELSEIF rank = 20 THEN
2649     RETURN 'Suburb';
2650   ELSEIF rank = 21 THEN
2651     RETURN 'Postcode Area';
2652   ELSEIF rank = 22 THEN
2653     RETURN 'Croft / Farm / Locality / Islet';
2654   ELSEIF rank = 23 THEN
2655     RETURN 'Postcode Area';
2656   ELSEIF rank = 25 THEN
2657     RETURN 'Postcode Point';
2658   ELSEIF rank = 26 THEN
2659     RETURN 'Street / Major Landmark';
2660   ELSEIF rank = 27 THEN
2661     RETURN 'Minory Street / Path';
2662   ELSEIF rank = 28 THEN
2663     RETURN 'House / Building';
2664   ELSE
2665     RETURN 'Other: '||rank;
2666   END IF;
2667   
2668 END;
2669 $$
2670 LANGUAGE plpgsql;
2671
2672 CREATE OR REPLACE FUNCTION get_addressrank_label(rank INTEGER) RETURNS TEXT
2673   AS $$
2674 DECLARE
2675 BEGIN
2676   IF rank = 0 THEN
2677     RETURN 'None';
2678   ELSEIF rank < 2 THEN
2679     RETURN 'Continent';
2680   ELSEIF rank < 4 THEN
2681     RETURN 'Sea';
2682   ELSEIF rank = 5 THEN
2683     RETURN 'Postcode';
2684   ELSEIF rank < 8 THEN
2685     RETURN 'Country';
2686   ELSEIF rank < 12 THEN
2687     RETURN 'State';
2688   ELSEIF rank < 16 THEN
2689     RETURN 'County';
2690   ELSEIF rank = 16 THEN
2691     RETURN 'City';
2692   ELSEIF rank = 17 THEN
2693     RETURN 'Town / Village / Hamlet';
2694   ELSEIF rank = 20 THEN
2695     RETURN 'Suburb';
2696   ELSEIF rank = 21 THEN
2697     RETURN 'Postcode Area';
2698   ELSEIF rank = 22 THEN
2699     RETURN 'Croft / Farm / Locality / Islet';
2700   ELSEIF rank = 23 THEN
2701     RETURN 'Postcode Area';
2702   ELSEIF rank = 25 THEN
2703     RETURN 'Postcode Point';
2704   ELSEIF rank = 26 THEN
2705     RETURN 'Street / Major Landmark';
2706   ELSEIF rank = 27 THEN
2707     RETURN 'Minory Street / Path';
2708   ELSEIF rank = 28 THEN
2709     RETURN 'House / Building';
2710   ELSE
2711     RETURN 'Other: '||rank;
2712   END IF;
2713   
2714 END;
2715 $$
2716 LANGUAGE plpgsql;
2717
2718 CREATE OR REPLACE FUNCTION get_word_suggestion(srcword TEXT) RETURNS TEXT
2719   AS $$
2720 DECLARE
2721   trigramtoken TEXT;
2722   result TEXT;
2723 BEGIN
2724
2725   trigramtoken := regexp_replace(make_standard_name(srcword),E'([^0-9])\\1+',E'\\1','g');
2726   SELECT word FROM word WHERE word_trigram like ' %' and word_trigram % trigramtoken ORDER BY similarity(word_trigram, trigramtoken) DESC, word limit 1 into result;
2727
2728   return result;
2729 END;
2730 $$
2731 LANGUAGE plpgsql;
2732
2733 CREATE OR REPLACE FUNCTION get_word_suggestions(srcword TEXT) RETURNS TEXT[]
2734   AS $$
2735 DECLARE
2736   trigramtoken TEXT;
2737   result TEXT[];
2738   r RECORD;
2739 BEGIN
2740
2741   trigramtoken := regexp_replace(make_standard_name(srcword),E'([^0-9])\\1+',E'\\1','g');
2742
2743   FOR r IN SELECT word,similarity(word_trigram, trigramtoken) as score FROM word 
2744     WHERE word_trigram like ' %' and word_trigram % trigramtoken ORDER BY similarity(word_trigram, trigramtoken) DESC, word limit 4
2745   LOOP
2746     result[coalesce(array_upper(result,1)+1,1)] := r.word;
2747   END LOOP;
2748
2749   return result;
2750 END;
2751 $$
2752 LANGUAGE plpgsql;
2753
2754 CREATE OR REPLACE FUNCTION aux_create_property(pointgeo GEOMETRY, in_housenumber TEXT, 
2755   in_street TEXT, in_isin TEXT, in_postcode TEXT, in_countrycode char(2)) RETURNS INTEGER
2756   AS $$
2757 DECLARE
2758
2759   newpoints INTEGER;
2760   place_centroid GEOMETRY;
2761   out_partition INTEGER;
2762   out_parent_place_id BIGINT;
2763   location RECORD;
2764   address_street_word_id INTEGER;  
2765   out_postcode TEXT;
2766
2767 BEGIN
2768
2769   place_centroid := ST_Centroid(pointgeo);
2770   out_partition := get_partition(in_countrycode);
2771   out_parent_place_id := null;
2772
2773   address_street_word_id := get_name_id(make_standard_name(in_street));
2774   IF address_street_word_id IS NOT NULL THEN
2775     FOR location IN SELECT * from getNearestNamedRoadFeature(out_partition, place_centroid, address_street_word_id) LOOP
2776       out_parent_place_id := location.place_id;
2777     END LOOP;
2778   END IF;
2779
2780   IF out_parent_place_id IS NULL THEN
2781     FOR location IN SELECT place_id FROM getNearestRoadFeature(out_partition, place_centroid) LOOP
2782       out_parent_place_id := location.place_id;
2783     END LOOP;    
2784   END IF;
2785
2786   out_postcode := in_postcode;
2787   IF out_postcode IS NULL THEN
2788     SELECT postcode from placex where place_id = out_parent_place_id INTO out_postcode;
2789   END IF;
2790   IF out_postcode IS NULL THEN
2791     out_postcode := getNearestPostcode(out_partition, place_centroid);
2792   END IF;
2793
2794   newpoints := 0;
2795   insert into location_property_aux (place_id, partition, parent_place_id, housenumber, postcode, centroid)
2796     values (nextval('seq_place'), out_partition, out_parent_place_id, in_housenumber, out_postcode, place_centroid);
2797   newpoints := newpoints + 1;
2798
2799   RETURN newpoints;
2800 END;
2801 $$
2802 LANGUAGE plpgsql;
2803
2804 CREATE OR REPLACE FUNCTION get_osm_rel_members(members TEXT[], member TEXT) RETURNS TEXT[]
2805   AS $$
2806 DECLARE
2807   result TEXT[];
2808   i INTEGER;
2809 BEGIN
2810
2811   FOR i IN 1..ARRAY_UPPER(members,1) BY 2 LOOP
2812     IF members[i+1] = member THEN
2813       result := result || members[i];
2814     END IF;
2815   END LOOP;
2816
2817   return result;
2818 END;
2819 $$
2820 LANGUAGE plpgsql;
2821
2822 CREATE OR REPLACE FUNCTION get_osm_rel_members(members TEXT[], memberLabels TEXT[]) RETURNS SETOF TEXT
2823   AS $$
2824 DECLARE
2825   i INTEGER;
2826 BEGIN
2827
2828   FOR i IN 1..ARRAY_UPPER(members,1) BY 2 LOOP
2829     IF members[i+1] = ANY(memberLabels) THEN
2830       RETURN NEXT members[i];
2831     END IF;
2832   END LOOP;
2833
2834   RETURN;
2835 END;
2836 $$
2837 LANGUAGE plpgsql;
2838
2839 -- See: http://stackoverflow.com/questions/6410088/how-can-i-mimic-the-php-urldecode-function-in-postgresql
2840 CREATE OR REPLACE FUNCTION decode_url_part(p varchar) RETURNS varchar 
2841   AS $$
2842 SELECT convert_from(CAST(E'\\x' || array_to_string(ARRAY(
2843     SELECT CASE WHEN length(r.m[1]) = 1 THEN encode(convert_to(r.m[1], 'SQL_ASCII'), 'hex') ELSE substring(r.m[1] from 2 for 2) END
2844     FROM regexp_matches($1, '%[0-9a-f][0-9a-f]|.', 'gi') AS r(m)
2845 ), '') AS bytea), 'UTF8');
2846 $$ 
2847 LANGUAGE SQL IMMUTABLE STRICT;
2848
2849 CREATE OR REPLACE FUNCTION catch_decode_url_part(p varchar) RETURNS varchar
2850   AS $$
2851 DECLARE
2852 BEGIN
2853   RETURN decode_url_part(p);
2854 EXCEPTION
2855   WHEN others THEN return null;
2856 END;
2857 $$
2858 LANGUAGE plpgsql IMMUTABLE;
2859
2860 DROP TYPE wikipedia_article_match CASCADE;
2861 create type wikipedia_article_match as (
2862   language TEXT,
2863   title TEXT,
2864   importance FLOAT
2865 );
2866
2867 CREATE OR REPLACE FUNCTION get_wikipedia_match(extratags HSTORE, country_code varchar(2)) RETURNS wikipedia_article_match
2868   AS $$
2869 DECLARE
2870   langs TEXT[];
2871   i INT;
2872   wiki_article TEXT;
2873   wiki_article_title TEXT;
2874   wiki_article_language TEXT;
2875   result wikipedia_article_match;
2876 BEGIN
2877   langs := ARRAY['english','country','ar','bg','ca','cs','da','de','en','es','eo','eu','fa','fr','ko','hi','hr','id','it','he','lt','hu','ms','nl','ja','no','pl','pt','kk','ro','ru','sk','sl','sr','fi','sv','tr','uk','vi','vo','war','zh'];
2878   i := 1;
2879   WHILE langs[i] IS NOT NULL LOOP
2880     wiki_article := extratags->(case when langs[i] in ('english','country') THEN 'wikipedia' ELSE 'wikipedia:'||langs[i] END);
2881     IF wiki_article is not null THEN
2882       wiki_article := regexp_replace(wiki_article,E'^(.*?)([a-z]{2,3}).wikipedia.org/wiki/',E'\\2:');
2883       wiki_article := regexp_replace(wiki_article,E'^(.*?)([a-z]{2,3}).wikipedia.org/w/index.php\\?title=',E'\\2:');
2884       wiki_article := regexp_replace(wiki_article,E'^(.*?)/([a-z]{2,3})/wiki/',E'\\2:');
2885       --wiki_article := regexp_replace(wiki_article,E'^(.*?)([a-z]{2,3})[=:]',E'\\2:');
2886       wiki_article := replace(wiki_article,' ','_');
2887       IF strpos(wiki_article, ':') IN (3,4) THEN
2888         wiki_article_language := lower(trim(split_part(wiki_article, ':', 1)));
2889         wiki_article_title := trim(substr(wiki_article, strpos(wiki_article, ':')+1));
2890       ELSE
2891         wiki_article_title := trim(wiki_article);
2892         wiki_article_language := CASE WHEN langs[i] = 'english' THEN 'en' WHEN langs[i] = 'country' THEN get_country_language_code(country_code) ELSE langs[i] END;
2893       END IF;
2894
2895       select wikipedia_article.language,wikipedia_article.title,wikipedia_article.importance
2896         from wikipedia_article 
2897         where language = wiki_article_language and 
2898         (title = wiki_article_title OR title = catch_decode_url_part(wiki_article_title) OR title = replace(catch_decode_url_part(wiki_article_title),E'\\',''))
2899       UNION ALL
2900       select wikipedia_article.language,wikipedia_article.title,wikipedia_article.importance
2901         from wikipedia_redirect join wikipedia_article on (wikipedia_redirect.language = wikipedia_article.language and wikipedia_redirect.to_title = wikipedia_article.title)
2902         where wikipedia_redirect.language = wiki_article_language and 
2903         (from_title = wiki_article_title OR from_title = catch_decode_url_part(wiki_article_title) OR from_title = replace(catch_decode_url_part(wiki_article_title),E'\\',''))
2904       order by importance desc limit 1 INTO result;
2905
2906       IF result.language is not null THEN
2907         return result;
2908       END IF;
2909     END IF;
2910     i := i + 1;
2911   END LOOP;
2912   RETURN NULL;
2913 END;
2914 $$
2915 LANGUAGE plpgsql;
2916
2917 CREATE OR REPLACE FUNCTION quad_split_geometry(geometry GEOMETRY, maxarea FLOAT, maxdepth INTEGER) 
2918   RETURNS SETOF GEOMETRY
2919   AS $$
2920 DECLARE
2921   xmin FLOAT;
2922   ymin FLOAT;
2923   xmax FLOAT;
2924   ymax FLOAT;
2925   xmid FLOAT;
2926   ymid FLOAT;
2927   secgeo GEOMETRY;
2928   secbox GEOMETRY;
2929   seg INTEGER;
2930   geo RECORD;
2931   area FLOAT;
2932   remainingdepth INTEGER;
2933   added INTEGER;
2934   
2935 BEGIN
2936
2937 --  RAISE WARNING 'quad_split_geometry: maxarea=%, depth=%',maxarea,maxdepth;
2938
2939   IF (ST_GeometryType(geometry) not in ('ST_Polygon','ST_MultiPolygon') OR NOT ST_IsValid(geometry)) THEN
2940     RETURN NEXT geometry;
2941     RETURN;
2942   END IF;
2943
2944   remainingdepth := maxdepth - 1;
2945   area := ST_AREA(geometry);
2946   IF remainingdepth < 1 OR area < maxarea THEN
2947     RETURN NEXT geometry;
2948     RETURN;
2949   END IF;
2950
2951   xmin := st_xmin(geometry);
2952   xmax := st_xmax(geometry);
2953   ymin := st_ymin(geometry);
2954   ymax := st_ymax(geometry);
2955   secbox := ST_SetSRID(ST_MakeBox2D(ST_Point(ymin,xmin),ST_Point(ymax,xmax)),4326);
2956
2957   -- if the geometry completely covers the box don't bother to slice any more
2958   IF ST_AREA(secbox) = area THEN
2959     RETURN NEXT geometry;
2960     RETURN;
2961   END IF;
2962
2963   xmid := (xmin+xmax)/2;
2964   ymid := (ymin+ymax)/2;
2965
2966   added := 0;
2967   FOR seg IN 1..4 LOOP
2968
2969     IF seg = 1 THEN
2970       secbox := ST_SetSRID(ST_MakeBox2D(ST_Point(xmin,ymin),ST_Point(xmid,ymid)),4326);
2971     END IF;
2972     IF seg = 2 THEN
2973       secbox := ST_SetSRID(ST_MakeBox2D(ST_Point(xmin,ymid),ST_Point(xmid,ymax)),4326);
2974     END IF;
2975     IF seg = 3 THEN
2976       secbox := ST_SetSRID(ST_MakeBox2D(ST_Point(xmid,ymin),ST_Point(xmax,ymid)),4326);
2977     END IF;
2978     IF seg = 4 THEN
2979       secbox := ST_SetSRID(ST_MakeBox2D(ST_Point(xmid,ymid),ST_Point(xmax,ymax)),4326);
2980     END IF;
2981
2982     IF st_intersects(geometry, secbox) THEN
2983       secgeo := st_intersection(geometry, secbox);
2984       IF NOT ST_IsEmpty(secgeo) AND ST_GeometryType(secgeo) in ('ST_Polygon','ST_MultiPolygon') THEN
2985         FOR geo IN select quad_split_geometry(secgeo, maxarea, remainingdepth) as geom LOOP
2986           IF NOT ST_IsEmpty(geo.geom) AND ST_GeometryType(geo.geom) in ('ST_Polygon','ST_MultiPolygon') THEN
2987             added := added + 1;
2988             RETURN NEXT geo.geom;
2989           END IF;
2990         END LOOP;
2991       END IF;
2992     END IF;
2993   END LOOP;
2994
2995   RETURN;
2996 END;
2997 $$
2998 LANGUAGE plpgsql;
2999
3000 CREATE OR REPLACE FUNCTION split_geometry(geometry GEOMETRY) 
3001   RETURNS SETOF GEOMETRY
3002   AS $$
3003 DECLARE
3004   geo RECORD;
3005 BEGIN
3006   -- 10000000000 is ~~ 1x1 degree
3007   FOR geo IN select quad_split_geometry(geometry, 0.25, 20) as geom LOOP
3008     RETURN NEXT geo.geom;
3009   END LOOP;
3010   RETURN;
3011 END;
3012 $$
3013 LANGUAGE plpgsql;
3014
3015
3016 CREATE OR REPLACE FUNCTION place_force_delete(placeid BIGINT) RETURNS BOOLEAN
3017   AS $$
3018 DECLARE
3019     osmid BIGINT;
3020     osmtype character(1);
3021     pclass text;
3022     ptype text;
3023 BEGIN
3024   SELECT osm_type, osm_id, class, type FROM placex WHERE place_id = placeid INTO osmtype, osmid, pclass, ptype;
3025   DELETE FROM import_polygon_delete where osm_type = osmtype and osm_id = osmid and class = pclass and type = ptype;
3026   DELETE FROM import_polygon_error where osm_type = osmtype and osm_id = osmid and class = pclass and type = ptype;
3027   -- force delete from place/placex by making it a very small geometry
3028   UPDATE place set geometry = ST_SetSRID(ST_Point(0,0), 4326) where osm_type = osmtype and osm_id = osmid and class = pclass and type = ptype;
3029   DELETE FROM place where osm_type = osmtype and osm_id = osmid and class = pclass and type = ptype;
3030
3031   RETURN TRUE;
3032 END;
3033 $$
3034 LANGUAGE plpgsql;
3035
3036 CREATE OR REPLACE FUNCTION place_force_update(placeid BIGINT) RETURNS BOOLEAN
3037   AS $$
3038 DECLARE
3039   placegeom GEOMETRY;
3040   geom GEOMETRY;
3041   diameter FLOAT;
3042   rank INTEGER;
3043 BEGIN
3044   UPDATE placex SET indexed_status = 2 WHERE place_id = placeid;
3045   SELECT geometry, rank_search FROM placex WHERE place_id = placeid INTO placegeom, rank;
3046   IF placegeom IS NOT NULL AND ST_IsValid(placegeom) THEN
3047     IF ST_GeometryType(placegeom) in ('ST_Polygon','ST_MultiPolygon') THEN
3048       FOR geom IN select split_geometry(placegeom) FROM placex WHERE place_id = placeid LOOP
3049         update placex set indexed_status = 2 where (st_covers(geom, placex.geometry) OR ST_Intersects(geom, placex.geometry)) 
3050         AND rank_search > rank and indexed_status = 0 and ST_geometrytype(placex.geometry) = 'ST_Point' and (rank_search < 28 or name is not null or (rank >= 16 and addr_place is not null));
3051         update placex set indexed_status = 2 where (st_covers(geom, placex.geometry) OR ST_Intersects(geom, placex.geometry)) 
3052         AND rank_search > rank and indexed_status = 0 and ST_geometrytype(placex.geometry) != 'ST_Point' and (rank_search < 28 or name is not null or (rank >= 16 and addr_place is not null));
3053       END LOOP;
3054     ELSE
3055         diameter := 0;
3056         IF rank = 11 THEN
3057           diameter := 0.05;
3058         ELSEIF rank < 18 THEN
3059           diameter := 0.1;
3060         ELSEIF rank < 20 THEN
3061           diameter := 0.05;
3062         ELSEIF rank = 21 THEN
3063           diameter := 0.001;
3064         ELSEIF rank < 24 THEN
3065           diameter := 0.02;
3066         ELSEIF rank < 26 THEN
3067           diameter := 0.002; -- 100 to 200 meters
3068         ELSEIF rank < 28 THEN
3069           diameter := 0.001; -- 50 to 100 meters
3070         END IF;
3071         IF diameter > 0 THEN
3072           IF rank >= 26 THEN
3073             -- roads may cause reparenting for >27 rank places
3074             update placex set indexed_status = 2 where indexed_status = 0 and rank_search > rank and ST_DWithin(placex.geometry, placegeom, diameter);
3075           ELSEIF rank >= 16 THEN
3076             -- up to rank 16, street-less addresses may need reparenting
3077             update placex set indexed_status = 2 where indexed_status = 0 and rank_search > rank and ST_DWithin(placex.geometry, placegeom, diameter) and (rank_search < 28 or name is not null or addr_place is not null);
3078           ELSE
3079             -- for all other places the search terms may change as well
3080             update placex set indexed_status = 2 where indexed_status = 0 and rank_search > rank and ST_DWithin(placex.geometry, placegeom, diameter) and (rank_search < 28 or name is not null);
3081           END IF;
3082         END IF;
3083     END IF;
3084     RETURN TRUE;
3085   END IF;
3086
3087   RETURN FALSE;
3088 END;
3089 $$
3090 LANGUAGE plpgsql;