location_isaddress BOOLEAN;
BEGIN
-- 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.
+ -- Look for the parent of such places then and save it in place.
-- first query osmline (interpolation lines)
IF in_housenumber >= 0 THEN
SELECT parent_place_id as place_id, country_code,
in_housenumber::text as housenumber, postcode,
'place' as class, 'house' as type,
- null as name, null::hstore as address,
- centroid
+ null::hstore as name, null::hstore as address,
+ ST_Centroid(linegeo) as centroid
INTO place
FROM location_property_osmline
WHERE place_id = in_place_id
--then query tiger data
-- %NOTIGERDATA% IF 0 THEN
IF place IS NULL AND in_housenumber >= 0 THEN
- SELECT parent_place_id as place_id, 'us' as country_code,
+ SELECT parent_place_id as place_id, 'us'::varchar(2) as country_code,
in_housenumber::text as housenumber, postcode,
'place' as class, 'house' as type,
- null as name, null::hstore as address,
+ null::hstore as name, null::hstore as address,
ST_Centroid(linegeo) as centroid
INTO place
FROM location_property_tiger
-- %NOAUXDATA% IF 0 THEN
IF place IS NULL THEN
- SELECT parent_place_id as place_id, 'us' as country_code,
+ SELECT parent_place_id as place_id, 'us'::varchar(2) as country_code,
housenumber, postcode,
'place' as class, 'house' as type,
- null as name, null::hstore as address,
+ null::hstore as name, null::hstore as address,
centroid
INTO place
FROM location_property_aux
-- postcode table
IF place IS NULL THEN
SELECT parent_place_id as place_id, country_code,
- null as housenumber, postcode,
+ null::text as housenumber, postcode,
'place' as class, 'postcode' as type,
- null as name, null::hstore as address,
- null as centroid
+ null::hstore as name, null::hstore as address,
+ null::geometry as centroid
INTO place
FROM location_postcode
WHERE place_id = in_place_id;
WHERE place_id = in_place_id and rank_search > 27;
END IF;
- -- If for_place_id is still NULL at this point then the object has its own
+ -- If place is still NULL at this point then the object has its own
-- entry in place_address line. However, still check if there is not linked
-- place we should be using instead.
IF place IS NULL THEN
select coalesce(linked_place_id, place_id) as place_id, country_code,
housenumber, postcode,
class, type,
- null as name, address,
- null as centroid
+ null::hstore as name, address,
+ null::geometry as centroid
INTO place
FROM placex where place_id = in_place_id;
END IF;
--RAISE WARNING '%',location;
IF location.rank_address < 4 THEN
-- no country locations for ranks higher than country
- place.country_code := NULL;
+ place.country_code := NULL::varchar(2);
ELSEIF place.country_code IS NULL AND location.country_code IS NOT NULL THEN
place.country_code := location.country_code;
END IF;
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)