X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/cf23e10382806ddbdde588f5bb1bc6111590c4e1..00b1521a6361a5bf57f7d60c0b04f720cd146629:/sql/functions/address_lookup.sql diff --git a/sql/functions/address_lookup.sql b/sql/functions/address_lookup.sql index b20cb364..2426a698 100644 --- a/sql/functions/address_lookup.sql +++ b/sql/functions/address_lookup.sql @@ -90,13 +90,12 @@ DECLARE for_place_id BIGINT; result TEXT[]; search TEXT[]; - found INTEGER; + current_rank_address INTEGER; location RECORD; countrylocation RECORD; searchcountrycode varchar(2); searchhousenumber TEXT; searchhousename HSTORE; - searchrankaddress INTEGER; searchpostcode TEXT; postcode_isexact BOOL; searchclass TEXT; @@ -104,63 +103,63 @@ DECLARE search_unlisted_place TEXT; countryname HSTORE; BEGIN - -- The place ein question might not have a direct entry in place_addressline. + -- The place in question might not have a direct entry in place_addressline. -- Look for the parent of such places then and save if in for_place_id. postcode_isexact := false; -- first query osmline (interpolation lines) IF in_housenumber >= 0 THEN - SELECT parent_place_id, country_code, in_housenumber::text, 30, postcode, + SELECT parent_place_id, country_code, in_housenumber::text, postcode, null, 'place', 'house' FROM location_property_osmline WHERE place_id = in_place_id AND in_housenumber>=startnumber AND in_housenumber <= endnumber - INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress, + INTO for_place_id, searchcountrycode, searchhousenumber, searchpostcode, searchhousename, searchclass, searchtype; END IF; --then query tiger data -- %NOTIGERDATA% IF 0 THEN IF for_place_id IS NULL AND in_housenumber >= 0 THEN - SELECT parent_place_id, 'us', in_housenumber::text, 30, postcode, null, + SELECT parent_place_id, 'us', in_housenumber::text, postcode, null, 'place', 'house' FROM location_property_tiger WHERE place_id = in_place_id AND in_housenumber >= startnumber AND in_housenumber <= endnumber - INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress, + INTO for_place_id, searchcountrycode, searchhousenumber, searchpostcode, searchhousename, searchclass, searchtype; END IF; -- %NOTIGERDATA% END IF; -- %NOAUXDATA% IF 0 THEN IF for_place_id IS NULL THEN - SELECT parent_place_id, 'us', housenumber, 30, postcode, null, 'place', 'house' + SELECT parent_place_id, 'us', housenumber, postcode, null, 'place', 'house' FROM location_property_aux WHERE place_id = in_place_id - INTO for_place_id,searchcountrycode, searchhousenumber, searchrankaddress, + INTO for_place_id,searchcountrycode, searchhousenumber, searchpostcode, searchhousename, searchclass, searchtype; END IF; -- %NOAUXDATA% END IF; -- postcode table IF for_place_id IS NULL THEN - SELECT parent_place_id, country_code, rank_search, postcode, 'place', 'postcode' + SELECT parent_place_id, country_code, postcode, 'place', 'postcode' FROM location_postcode WHERE place_id = in_place_id - INTO for_place_id, searchcountrycode, searchrankaddress, searchpostcode, + INTO for_place_id, searchcountrycode, searchpostcode, searchclass, searchtype; END IF; -- POI objects in the placex table IF for_place_id IS NULL THEN - SELECT parent_place_id, country_code, housenumber, rank_search, + SELECT parent_place_id, country_code, housenumber, postcode, address is not null and address ? 'postcode', name, class, type, address -> '_unlisted_place' as unlisted_place FROM placex WHERE place_id = in_place_id and rank_search > 27 - INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress, + INTO for_place_id, searchcountrycode, searchhousenumber, searchpostcode, postcode_isexact, searchhousename, searchclass, searchtype, search_unlisted_place; END IF; @@ -170,17 +169,16 @@ BEGIN -- place we should be using instead. IF for_place_id IS NULL THEN select coalesce(linked_place_id, place_id), country_code, - housenumber, rank_search, postcode, + housenumber, postcode, address is not null and address ? 'postcode', null from placex where place_id = in_place_id - INTO for_place_id, searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode, postcode_isexact, searchhousename; + INTO for_place_id, searchcountrycode, searchhousenumber, searchpostcode, postcode_isexact, searchhousename; END IF; ---RAISE WARNING '% % % %',searchcountrycode, searchhousenumber, searchrankaddress, searchpostcode; +--RAISE WARNING '% % % %',searchcountrycode, searchhousenumber, searchpostcode; - found := 1000; -- the lowest rank_address included + -- --- Return the record for the base entry. - -- Return the record for the base entry. FOR location IN SELECT placex.place_id, osm_type, osm_id, name, coalesce(extratags->'linked_place', extratags->'place') as place_type, @@ -207,25 +205,28 @@ BEGIN location.admin_level, true, location.isaddress, location.rank_address, location.distance)::addressline; RETURN NEXT countrylocation; - found := location.rank_address; + + current_rank_address := location.rank_address; END LOOP; + -- --- Return records for address parts. + FOR location IN SELECT placex.place_id, osm_type, osm_id, name, class, type, coalesce(extratags->'linked_place', extratags->'place') as place_type, - admin_level, fromarea, isaddress, + admin_level, fromarea, isaddress and linked_place_id is NULL as isaddress, CASE WHEN rank_address = 11 THEN 5 ELSE rank_address END as rank_address, distance, country_code, postcode FROM place_addressline join placex on (address_place_id = placex.place_id) - WHERE place_addressline.place_id = for_place_id - AND (cached_rank_address >= 4 AND cached_rank_address < searchrankaddress) + WHERE place_addressline.place_id IN (for_place_id, in_place_id) AND linked_place_id is null AND (placex.country_code IS NULL OR searchcountrycode IS NULL OR placex.country_code = searchcountrycode) - ORDER BY rank_address desc, isaddress desc, fromarea desc, + ORDER BY rank_address desc, (place_addressline.place_id = in_place_id) desc, + isaddress desc, fromarea desc, distance asc, rank_search desc LOOP ---RAISE WARNING '%',location; + -- RAISE WARNING '%',location; IF searchcountrycode IS NULL AND location.country_code IS NOT NULL THEN searchcountrycode := location.country_code; END IF; @@ -245,17 +246,21 @@ BEGIN location.name, location.class, location.type, location.place_type, location.admin_level, location.fromarea, - location.isaddress, location.rank_address, + location.isaddress and location.rank_address != current_rank_address, + location.rank_address, location.distance)::addressline; RETURN NEXT countrylocation; - found := location.rank_address; + + IF location.isaddress THEN + current_rank_address := location.rank_address; + END IF; END LOOP; -- If no country was included yet, add the name information from country_name. - IF found > 4 THEN + IF current_rank_address > 4 THEN SELECT name FROM country_name WHERE country_code = searchcountrycode LIMIT 1 INTO countryname; ---RAISE WARNING '% % %',found,searchcountrycode,countryname; +--RAISE WARNING '% % %',current_rank_address,searchcountrycode,countryname; IF countryname IS NOT NULL THEN location := ROW(null, null, null, countryname, 'place', 'country', NULL, null, true, true, 4, 0)::addressline; @@ -284,7 +289,7 @@ BEGIN IF search_unlisted_place is not null THEN RETURN NEXT ROW(null, null, null, hstore('name', search_unlisted_place), - 'place', 'locality', null, null, true, true, 26, 0)::addressline; + 'place', 'locality', null, null, true, true, 25, 0)::addressline; END IF; IF searchpostcode IS NOT NULL THEN