1 -- Functions for returning address information for a place.
3 DROP TYPE IF EXISTS addressline CASCADE;
4 CREATE TYPE addressline as (
20 CREATE OR REPLACE FUNCTION get_name_by_language(name hstore, languagepref TEXT[])
30 FOR j IN 1..array_upper(languagepref,1) LOOP
31 IF name ? languagepref[j] THEN
32 result := trim(name->languagepref[j]);
39 -- anything will do as a fallback - just take the first name type thing there is
40 RETURN trim((avals(name))[1]);
43 LANGUAGE plpgsql IMMUTABLE;
46 --housenumber only needed for tiger data
47 CREATE OR REPLACE FUNCTION get_address_by_language(for_place_id BIGINT,
64 CASE WHEN place_id = for_place_id THEN 99 ELSE rank_address END as rank_address
65 FROM get_addressdata(for_place_id, housenumber)
66 WHERE isaddress order by rank_address desc
68 currresult := trim(get_name_by_language(location.name, languagepref));
69 IF currresult != prevresult AND currresult IS NOT NULL
70 AND result[(100 - location.rank_address)] IS NULL
72 result[(100 - location.rank_address)] := currresult;
73 prevresult := currresult;
77 RETURN array_to_string(result,', ');
80 LANGUAGE plpgsql STABLE;
83 -- Compute the list of address parts for the given place.
85 -- If in_housenumber is greator or equal 0, look for an interpolation.
86 CREATE OR REPLACE FUNCTION get_addressdata(in_place_id BIGINT, in_housenumber INTEGER)
87 RETURNS setof addressline
95 countrylocation RECORD;
96 searchcountrycode varchar(2);
97 searchhousenumber TEXT;
98 searchhousename HSTORE;
99 searchrankaddress INTEGER;
101 postcode_isexact BOOL;
106 -- The place ein question might not have a direct entry in place_addressline.
107 -- Look for the parent of such places then and save if in for_place_id.
109 postcode_isexact := false;
111 -- first query osmline (interpolation lines)
112 IF in_housenumber >= 0 THEN
113 SELECT parent_place_id, country_code, in_housenumber::text, 30, postcode,
114 null, 'place', 'house'
115 FROM location_property_osmline
116 WHERE place_id = in_place_id AND in_housenumber>=startnumber
117 AND in_housenumber <= endnumber
118 INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress,
119 searchpostcode, searchhousename, searchclass, searchtype;
122 --then query tiger data
123 -- %NOTIGERDATA% IF 0 THEN
124 IF for_place_id IS NULL AND in_housenumber >= 0 THEN
125 SELECT parent_place_id, 'us', in_housenumber::text, 30, postcode, null,
127 FROM location_property_tiger
128 WHERE place_id = in_place_id AND in_housenumber >= startnumber
129 AND in_housenumber <= endnumber
130 INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress,
131 searchpostcode, searchhousename, searchclass, searchtype;
133 -- %NOTIGERDATA% END IF;
135 -- %NOAUXDATA% IF 0 THEN
136 IF for_place_id IS NULL THEN
137 SELECT parent_place_id, 'us', housenumber, 30, postcode, null, 'place', 'house'
138 FROM location_property_aux
139 WHERE place_id = in_place_id
140 INTO for_place_id,searchcountrycode, searchhousenumber, searchrankaddress,
141 searchpostcode, searchhousename, searchclass, searchtype;
143 -- %NOAUXDATA% END IF;
146 IF for_place_id IS NULL THEN
147 SELECT parent_place_id, country_code, rank_search, postcode, 'place', 'postcode'
148 FROM location_postcode
149 WHERE place_id = in_place_id
150 INTO for_place_id, searchcountrycode, searchrankaddress, searchpostcode,
151 searchclass, searchtype;
154 -- POI objects in the placex table
155 IF for_place_id IS NULL THEN
156 SELECT parent_place_id, country_code, housenumber, rank_search,
157 postcode, address is not null and address ? 'postcode',
160 WHERE place_id = in_place_id and rank_search > 27
161 INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress,
162 searchpostcode, postcode_isexact, searchhousename, searchclass, searchtype;
165 -- If for_place_id is still NULL at this point then the object has its own
166 -- entry in place_address line. However, still check if there is not linked
167 -- place we should be using instead.
168 IF for_place_id IS NULL THEN
169 select coalesce(linked_place_id, place_id), country_code,
170 housenumber, rank_search, postcode,
171 address is not null and address ? 'postcode', null
172 from placex where place_id = in_place_id
173 INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode, postcode_isexact, searchhousename;
176 --RAISE WARNING '% % % %',searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode;
178 found := 1000; -- the lowest rank_address included
180 -- Return the record for the base entry.
182 SELECT placex.place_id, osm_type, osm_id, name,
183 coalesce(extratags->'linked_place', extratags->'place') as place_type,
184 class, type, admin_level,
185 type not in ('postcode', 'postal_code') as isaddress,
186 CASE WHEN rank_address = 0 THEN 100
187 WHEN rank_address = 11 THEN 5
188 ELSE rank_address END as rank_address,
189 0 as distance, country_code, postcode
191 WHERE place_id = for_place_id
193 --RAISE WARNING '%',location;
194 IF searchcountrycode IS NULL AND location.country_code IS NOT NULL THEN
195 searchcountrycode := location.country_code;
197 IF location.rank_address < 4 THEN
198 -- no country locations for ranks higher than country
199 searchcountrycode := NULL;
201 countrylocation := ROW(location.place_id, location.osm_type, location.osm_id,
202 location.name, location.class, location.type,
204 location.admin_level, true, location.isaddress,
205 location.rank_address, location.distance)::addressline;
206 RETURN NEXT countrylocation;
207 found := location.rank_address;
211 SELECT placex.place_id, osm_type, osm_id, name, class, type,
212 coalesce(extratags->'linked_place', extratags->'place') as place_type,
213 admin_level, fromarea, isaddress,
214 CASE WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address,
215 distance, country_code, postcode
216 FROM place_addressline join placex on (address_place_id = placex.place_id)
217 WHERE place_addressline.place_id = for_place_id
218 AND (cached_rank_address >= 4 AND cached_rank_address < searchrankaddress)
219 AND linked_place_id is null
220 AND (placex.country_code IS NULL OR searchcountrycode IS NULL
221 OR placex.country_code = searchcountrycode)
222 ORDER BY rank_address desc, isaddress desc, fromarea desc,
223 distance asc, rank_search desc
225 --RAISE WARNING '%',location;
226 IF searchcountrycode IS NULL AND location.country_code IS NOT NULL THEN
227 searchcountrycode := location.country_code;
229 IF location.type in ('postcode', 'postal_code')
230 AND searchpostcode is not null
232 -- If the place had a postcode assigned, take this one only
233 -- into consideration when it is an area and the place does not have
234 -- a postcode itself.
235 IF location.fromarea AND not postcode_isexact AND location.isaddress THEN
236 searchpostcode := null; -- remove the less exact postcode
238 location.isaddress := false;
241 countrylocation := ROW(location.place_id, location.osm_type, location.osm_id,
242 location.name, location.class, location.type,
244 location.admin_level, location.fromarea,
245 location.isaddress, location.rank_address,
246 location.distance)::addressline;
247 RETURN NEXT countrylocation;
248 found := location.rank_address;
251 -- If no country was included yet, add the name information from country_name.
253 SELECT name FROM country_name
254 WHERE country_code = searchcountrycode LIMIT 1 INTO countryname;
255 --RAISE WARNING '% % %',found,searchcountrycode,countryname;
256 IF countryname IS NOT NULL THEN
257 location := ROW(null, null, null, countryname, 'place', 'country', NULL,
258 null, true, true, 4, 0)::addressline;
259 RETURN NEXT location;
263 -- Finally add some artificial rows.
264 IF searchcountrycode IS NOT NULL THEN
265 location := ROW(null, null, null, hstore('ref', searchcountrycode),
266 'place', 'country_code', null, null, true, false, 4, 0)::addressline;
267 RETURN NEXT location;
270 IF searchhousename IS NOT NULL THEN
271 location := ROW(in_place_id, null, null, searchhousename, searchclass,
272 searchtype, null, null, true, true, 29, 0)::addressline;
273 RETURN NEXT location;
276 IF searchhousenumber IS NOT NULL THEN
277 location := ROW(null, null, null, hstore('ref', searchhousenumber),
278 'place', 'house_number', null, null, true, true, 28, 0)::addressline;
279 RETURN NEXT location;
282 IF searchpostcode IS NOT NULL THEN
283 location := ROW(null, null, null, hstore('ref', searchpostcode), 'place',
284 'postcode', null, null, false, true, 5, 0)::addressline;
285 RETURN NEXT location;
291 LANGUAGE plpgsql STABLE;