null entries need to be typed

This commit is contained in:
Sarah Hoffmann
2020-12-01 14:54:42 +01:00
parent 7295cad715
commit 63544db8f9
2 changed files with 20 additions and 16 deletions

View File

@@ -93,15 +93,15 @@ DECLARE
location_isaddress BOOLEAN; location_isaddress BOOLEAN;
BEGIN BEGIN
-- The place in 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. -- Look for the parent of such places then and save it in place.
-- first query osmline (interpolation lines) -- first query osmline (interpolation lines)
IF in_housenumber >= 0 THEN IF in_housenumber >= 0 THEN
SELECT parent_place_id as place_id, country_code, SELECT parent_place_id as place_id, country_code,
in_housenumber::text as housenumber, postcode, in_housenumber::text as housenumber, postcode,
'place' as class, 'house' as type, 'place' as class, 'house' as type,
null as name, null::hstore as address, null::hstore as name, null::hstore as address,
centroid ST_Centroid(linegeo) as centroid
INTO place INTO place
FROM location_property_osmline FROM location_property_osmline
WHERE place_id = in_place_id WHERE place_id = in_place_id
@@ -114,7 +114,7 @@ BEGIN
SELECT parent_place_id as place_id, 'us' as country_code, SELECT parent_place_id as place_id, 'us' as country_code,
in_housenumber::text as housenumber, postcode, in_housenumber::text as housenumber, postcode,
'place' as class, 'house' as type, '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 ST_Centroid(linegeo) as centroid
INTO place INTO place
FROM location_property_tiger FROM location_property_tiger
@@ -128,7 +128,7 @@ BEGIN
SELECT parent_place_id as place_id, 'us' as country_code, SELECT parent_place_id as place_id, 'us' as country_code,
housenumber, postcode, housenumber, postcode,
'place' as class, 'house' as type, 'place' as class, 'house' as type,
null as name, null::hstore as address, null::hstore as name, null::hstore as address,
centroid centroid
INTO place INTO place
FROM location_property_aux FROM location_property_aux
@@ -139,10 +139,10 @@ BEGIN
-- postcode table -- postcode table
IF place IS NULL THEN IF place IS NULL THEN
SELECT parent_place_id as place_id, country_code, SELECT parent_place_id as place_id, country_code,
null as housenumber, postcode, null::text as housenumber, postcode,
'place' as class, 'postcode' as type, 'place' as class, 'postcode' as type,
null as name, null::hstore as address, null::hstore as name, null::hstore as address,
null as centroid null::geometry as centroid
INTO place INTO place
FROM location_postcode FROM location_postcode
WHERE place_id = in_place_id; WHERE place_id = in_place_id;
@@ -160,15 +160,15 @@ BEGIN
WHERE place_id = in_place_id and rank_search > 27; WHERE place_id = in_place_id and rank_search > 27;
END IF; 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 -- entry in place_address line. However, still check if there is not linked
-- place we should be using instead. -- place we should be using instead.
IF place IS NULL THEN IF place IS NULL THEN
select coalesce(linked_place_id, place_id) as place_id, country_code, select coalesce(linked_place_id, place_id) as place_id, country_code,
housenumber, postcode, housenumber, postcode,
class, type, class, type,
null as name, address, null::hstore as name, address,
null as centroid null::geometry as centroid
INTO place INTO place
FROM placex where place_id = in_place_id; FROM placex where place_id = in_place_id;
END IF; END IF;

View File

@@ -5,11 +5,11 @@ Feature: Address computation
Scenario: place nodes are added to the address when they are close enough Scenario: place nodes are added to the address when they are close enough
Given the 0.002 grid Given the 0.002 grid
| 2 | | | | | | 1 | | 3 | | 2 | | | | | | 1 | | 3 |
And the named places And the places
| osm | class | type | geometry | | osm | class | type | name | geometry |
| N1 | place | square | 1 | | N1 | place | square | Square | 1 |
| N2 | place | hamlet | 2 | | N2 | place | hamlet | West Farm | 2 |
| N3 | place | hamlet | 3 | | N3 | place | hamlet | East Farm | 3 |
When importing When importing
Then place_addressline contains Then place_addressline contains
| object | address | fromarea | | object | address | fromarea |
@@ -17,6 +17,10 @@ Feature: Address computation
Then place_addressline doesn't contain Then place_addressline doesn't contain
| object | address | | object | address |
| N1 | N2 | | N1 | N2 |
When searching for "Square"
Then results contain
| osm_type | osm_id | name |
| N | 1 | Square, East Farm |
Scenario: given two place nodes, the closer one wins for the address Scenario: given two place nodes, the closer one wins for the address
Given the grid Given the grid