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;
82 DROP TYPE IF EXISTS addressdata_place;
83 CREATE TYPE addressdata_place AS (
85 country_code VARCHAR(2),
95 -- Compute the list of address parts for the given place.
97 -- If in_housenumber is greator or equal 0, look for an interpolation.
98 CREATE OR REPLACE FUNCTION get_addressdata(in_place_id BIGINT, in_housenumber INTEGER)
99 RETURNS setof addressline
102 place addressdata_place;
104 current_rank_address INTEGER;
105 location_isaddress BOOLEAN;
107 -- The place in question might not have a direct entry in place_addressline.
108 -- Look for the parent of such places then and save it in place.
110 -- first query osmline (interpolation lines)
111 IF in_housenumber >= 0 THEN
112 SELECT parent_place_id as place_id, country_code,
113 in_housenumber as housenumber, postcode,
114 'place' as class, 'house' as type,
115 null as name, null as address,
116 ST_Centroid(linegeo) as centroid
118 FROM location_property_osmline
119 WHERE place_id = in_place_id
120 AND in_housenumber between startnumber and endnumber;
123 --then query tiger data
124 {% if config.get_bool('USE_US_TIGER_DATA') %}
125 IF place IS NULL AND in_housenumber >= 0 THEN
126 SELECT parent_place_id as place_id, 'us' as country_code,
127 in_housenumber as housenumber, postcode,
128 'place' as class, 'house' as type,
129 null as name, null as address,
130 ST_Centroid(linegeo) as centroid
132 FROM location_property_tiger
133 WHERE place_id = in_place_id
134 AND in_housenumber between startnumber and endnumber;
138 -- then additional data
139 {% if config.get_bool('USE_AUX_LOCATION_DATA') %}
140 IF place IS NULL THEN
141 SELECT parent_place_id as place_id, 'us' as country_code,
142 housenumber, postcode,
143 'place' as class, 'house' as type,
144 null as name, null as address,
147 FROM location_property_aux
148 WHERE place_id = in_place_id;
153 IF place IS NULL THEN
154 SELECT parent_place_id as place_id, country_code,
155 null::text as housenumber, postcode,
156 'place' as class, 'postcode' as type,
157 null as name, null as address,
160 FROM location_postcode
161 WHERE place_id = in_place_id;
164 -- POI objects in the placex table
165 IF place IS NULL THEN
166 SELECT parent_place_id as place_id, country_code,
167 coalesce(address->'housenumber',
168 address->'streetnumber',
169 address->'conscriptionnumber')::text as housenumber,
176 WHERE place_id = in_place_id and rank_search > 27;
179 -- If place is still NULL at this point then the object has its own
180 -- entry in place_address line. However, still check if there is not linked
181 -- place we should be using instead.
182 IF place IS NULL THEN
183 select coalesce(linked_place_id, place_id) as place_id, country_code,
184 null::text as housenumber, postcode,
186 null as name, address,
189 FROM placex where place_id = in_place_id;
192 --RAISE WARNING '% % % %',searchcountrycode, searchhousenumber, searchpostcode;
194 -- --- Return the record for the base entry.
197 SELECT placex.place_id, osm_type, osm_id, name,
198 coalesce(extratags->'linked_place', extratags->'place') as place_type,
199 class, type, admin_level,
200 CASE WHEN rank_address = 0 THEN 100
201 WHEN rank_address = 11 THEN 5
202 ELSE rank_address END as rank_address,
205 WHERE place_id = place.place_id
207 --RAISE WARNING '%',location;
208 IF location.rank_address < 4 THEN
209 -- no country locations for ranks higher than country
210 place.country_code := NULL::varchar(2);
211 ELSEIF place.country_code IS NULL AND location.country_code IS NOT NULL THEN
212 place.country_code := location.country_code;
215 RETURN NEXT ROW(location.place_id, location.osm_type, location.osm_id,
216 location.name, location.class, location.type,
218 location.admin_level, true,
219 location.type not in ('postcode', 'postal_code'),
220 location.rank_address, 0)::addressline;
222 current_rank_address := location.rank_address;
225 -- --- Return records for address parts.
228 SELECT placex.place_id, osm_type, osm_id, name, class, type,
229 coalesce(extratags->'linked_place', extratags->'place') as place_type,
230 admin_level, fromarea, isaddress and linked_place_id is NULL as isaddress,
231 CASE WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address,
232 distance, country_code, postcode
233 FROM place_addressline join placex on (address_place_id = placex.place_id)
234 WHERE place_addressline.place_id IN (place.place_id, in_place_id)
235 AND linked_place_id is null
236 AND (placex.country_code IS NULL OR place.country_code IS NULL
237 OR placex.country_code = place.country_code)
238 ORDER BY rank_address desc,
239 (place_addressline.place_id = in_place_id) desc,
240 (fromarea and place.centroid is not null and not isaddress
241 and (place.address is null or avals(name) && avals(place.address))
242 and ST_Contains(geometry, place.centroid)) desc,
243 isaddress desc, fromarea desc,
244 distance asc, rank_search desc
246 -- RAISE WARNING '%',location;
247 location_isaddress := location.rank_address != current_rank_address;
249 IF place.country_code IS NULL AND location.country_code IS NOT NULL THEN
250 place.country_code := location.country_code;
252 IF location.type in ('postcode', 'postal_code')
253 AND place.postcode is not null
255 -- If the place had a postcode assigned, take this one only
256 -- into consideration when it is an area and the place does not have
257 -- a postcode itself.
258 IF location.fromarea AND location.isaddress
259 AND (place.address is null or not place.address ? 'postcode')
261 place.postcode := null; -- remove the less exact postcode
263 location_isaddress := false;
266 RETURN NEXT ROW(location.place_id, location.osm_type, location.osm_id,
267 location.name, location.class, location.type,
269 location.admin_level, location.fromarea,
271 location.rank_address,
272 location.distance)::addressline;
274 current_rank_address := location.rank_address;
277 -- If no country was included yet, add the name information from country_name.
278 IF current_rank_address > 4 THEN
280 SELECT name FROM country_name WHERE country_code = place.country_code LIMIT 1
282 --RAISE WARNING '% % %',current_rank_address,searchcountrycode,countryname;
283 RETURN NEXT ROW(null, null, null, location.name, 'place', 'country', NULL,
284 null, true, true, 4, 0)::addressline;
288 -- Finally add some artificial rows.
289 IF place.country_code IS NOT NULL THEN
290 location := ROW(null, null, null, hstore('ref', place.country_code),
291 'place', 'country_code', null, null, true, false, 4, 0)::addressline;
292 RETURN NEXT location;
295 IF place.name IS NOT NULL THEN
296 location := ROW(in_place_id, null, null, place.name, place.class,
297 place.type, null, null, true, true, 29, 0)::addressline;
298 RETURN NEXT location;
301 IF place.housenumber IS NOT NULL THEN
302 location := ROW(null, null, null, hstore('ref', place.housenumber),
303 'place', 'house_number', null, null, true, true, 28, 0)::addressline;
304 RETURN NEXT location;
307 IF place.address is not null and place.address ? '_unlisted_place' THEN
308 RETURN NEXT ROW(null, null, null, hstore('name', place.address->'_unlisted_place'),
309 'place', 'locality', null, null, true, true, 25, 0)::addressline;
312 IF place.postcode is not null THEN
313 location := ROW(null, null, null, hstore('ref', place.postcode), 'place',
314 'postcode', null, null, false, true, 5, 0)::addressline;
315 RETURN NEXT location;
321 LANGUAGE plpgsql STABLE;