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,
63 SELECT * FROM get_addressdata(for_place_id, housenumber)
64 WHERE isaddress order by rank_address desc
66 currresult := trim(get_name_by_language(location.name, languagepref));
67 IF currresult != prevresult AND currresult IS NOT NULL
68 AND result[(100 - location.rank_address)] IS NULL
70 result[(100 - location.rank_address)] := trim(get_name_by_language(location.name, languagepref));
71 prevresult := currresult;
75 RETURN array_to_string(result,', ');
78 LANGUAGE plpgsql STABLE;
81 -- Compute the list of address parts for the given place.
83 -- If in_housenumber is greator or equal 0, look for an interpolation.
84 CREATE OR REPLACE FUNCTION get_addressdata(in_place_id BIGINT, in_housenumber INTEGER)
85 RETURNS setof addressline
93 countrylocation RECORD;
94 searchcountrycode varchar(2);
95 searchhousenumber TEXT;
96 searchhousename HSTORE;
97 searchrankaddress INTEGER;
99 postcode_isexact BOOL;
104 -- The place ein question might not have a direct entry in place_addressline.
105 -- Look for the parent of such places then and save if in for_place_id.
107 postcode_isexact := false;
109 -- first query osmline (interpolation lines)
110 IF in_housenumber >= 0 THEN
111 SELECT parent_place_id, country_code, in_housenumber::text, 30, postcode,
112 null, 'place', 'house'
113 FROM location_property_osmline
114 WHERE place_id = in_place_id AND in_housenumber>=startnumber
115 AND in_housenumber <= endnumber
116 INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress,
117 searchpostcode, searchhousename, searchclass, searchtype;
120 --then query tiger data
121 -- %NOTIGERDATA% IF 0 THEN
122 IF for_place_id IS NULL AND in_housenumber >= 0 THEN
123 SELECT parent_place_id, 'us', in_housenumber::text, 30, postcode, null,
125 FROM location_property_tiger
126 WHERE place_id = in_place_id AND in_housenumber >= startnumber
127 AND in_housenumber <= endnumber
128 INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress,
129 searchpostcode, searchhousename, searchclass, searchtype;
131 -- %NOTIGERDATA% END IF;
133 -- %NOAUXDATA% IF 0 THEN
134 IF for_place_id IS NULL THEN
135 SELECT parent_place_id, 'us', housenumber, 30, postcode, null, 'place', 'house'
136 FROM location_property_aux
137 WHERE place_id = in_place_id
138 INTO for_place_id,searchcountrycode, searchhousenumber, searchrankaddress,
139 searchpostcode, searchhousename, searchclass, searchtype;
141 -- %NOAUXDATA% END IF;
144 IF for_place_id IS NULL THEN
145 SELECT parent_place_id, country_code, rank_search, postcode, 'place', 'postcode'
146 FROM location_postcode
147 WHERE place_id = in_place_id
148 INTO for_place_id, searchcountrycode, searchrankaddress, searchpostcode,
149 searchclass, searchtype;
152 -- POI objects in the placex table
153 IF for_place_id IS NULL THEN
154 SELECT parent_place_id, country_code, housenumber, rank_search,
155 postcode, address is not null and address ? 'postcode',
158 WHERE place_id = in_place_id and rank_search > 27
159 INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress,
160 searchpostcode, postcode_isexact, searchhousename, searchclass, searchtype;
163 -- If for_place_id is still NULL at this point then the object has its own
164 -- entry in place_address line. However, still check if there is not linked
165 -- place we should be using instead.
166 IF for_place_id IS NULL THEN
167 select coalesce(linked_place_id, place_id), country_code,
168 housenumber, rank_search, postcode,
169 address is not null and address ? 'postcode', null
170 from placex where place_id = in_place_id
171 INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode, postcode_isexact, searchhousename;
174 --RAISE WARNING '% % % %',searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode;
176 found := 1000; -- the lowest rank_address included
178 -- Return the record for the base entry.
180 SELECT placex.place_id, osm_type, osm_id, name,
181 class, type, admin_level,
182 type not in ('postcode', 'postal_code') as isaddress,
183 CASE WHEN rank_address = 0 THEN 100
184 WHEN rank_address = 11 THEN 5
185 ELSE rank_address END as rank_address,
186 0 as distance, country_code, postcode
188 WHERE place_id = for_place_id
190 --RAISE WARNING '%',location;
191 IF searchcountrycode IS NULL AND location.country_code IS NOT NULL THEN
192 searchcountrycode := location.country_code;
194 IF location.rank_address < 4 THEN
195 -- no country locations for ranks higher than country
196 searchcountrycode := NULL;
198 countrylocation := ROW(location.place_id, location.osm_type, location.osm_id,
199 location.name, location.class, location.type, NULL,
200 location.admin_level, true, location.isaddress,
201 location.rank_address, location.distance)::addressline;
202 RETURN NEXT countrylocation;
203 found := location.rank_address;
207 SELECT placex.place_id, osm_type, osm_id, name, class, type,
208 coalesce(extratags->'place', extratags->'linked_place') as place_type,
209 admin_level, fromarea, isaddress,
210 CASE WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address,
211 distance, country_code, postcode
212 FROM place_addressline join placex on (address_place_id = placex.place_id)
213 WHERE place_addressline.place_id = for_place_id
214 AND (cached_rank_address >= 4 AND cached_rank_address < searchrankaddress)
215 AND linked_place_id is null
216 AND (placex.country_code IS NULL OR searchcountrycode IS NULL
217 OR placex.country_code = searchcountrycode)
218 ORDER BY rank_address desc, isaddress desc, fromarea desc,
219 distance asc, rank_search desc
221 --RAISE WARNING '%',location;
222 IF searchcountrycode IS NULL AND location.country_code IS NOT NULL THEN
223 searchcountrycode := location.country_code;
225 IF location.type in ('postcode', 'postal_code')
226 AND searchpostcode is not null
228 -- If the place had a postcode assigned, take this one only
229 -- into consideration when it is an area and the place does not have
230 -- a postcode itself.
231 IF location.fromarea AND not postcode_isexact AND location.isaddress THEN
232 searchpostcode := null; -- remove the less exact postcode
234 location.isaddress := false;
237 countrylocation := ROW(location.place_id, location.osm_type, location.osm_id,
238 location.name, location.class, location.type,
240 location.admin_level, location.fromarea,
241 location.isaddress, location.rank_address,
242 location.distance)::addressline;
243 RETURN NEXT countrylocation;
244 found := location.rank_address;
247 -- If no country was included yet, add the name information from country_name.
249 SELECT name FROM country_name
250 WHERE country_code = searchcountrycode LIMIT 1 INTO countryname;
251 --RAISE WARNING '% % %',found,searchcountrycode,countryname;
252 IF countryname IS NOT NULL THEN
253 location := ROW(null, null, null, countryname, 'place', 'country', NULL,
254 null, true, true, 4, 0)::addressline;
255 RETURN NEXT location;
259 -- Finally add some artificial rows.
260 IF searchcountrycode IS NOT NULL THEN
261 location := ROW(null, null, null, hstore('ref', searchcountrycode),
262 'place', 'country_code', null, null, true, false, 4, 0)::addressline;
263 RETURN NEXT location;
266 IF searchhousename IS NOT NULL THEN
267 location := ROW(in_place_id, null, null, searchhousename, searchclass,
268 searchtype, null, null, true, true, 29, 0)::addressline;
269 RETURN NEXT location;
272 IF searchhousenumber IS NOT NULL THEN
273 location := ROW(in_place_id, null, null, hstore('ref', searchhousenumber),
274 'place', 'house_number', null, null, true, true, 28, 0)::addressline;
275 RETURN NEXT location;
278 IF searchpostcode IS NOT NULL THEN
279 location := ROW(null, null, null, hstore('ref', searchpostcode), 'place',
280 'postcode', null, null, false, true, 5, 0)::addressline;
281 RETURN NEXT location;
287 LANGUAGE plpgsql STABLE;