When importing
Then placex contains
| object | parent_place_id |
- | W1 | W3 |
+ | W1 | W2 |
Scenario: Building with addr:street tags
Given the scene building-on-street-corner
| W1 | N4 | 3 |
| N1 | W2 | None |
| N2 | W3 | 4 |
- | N3 | W2 | None |
+ | N3 | N4 | None |
Scenario: POIs parent a road if they are attached to it
Given the scene points-on-roads
| object | parent_place_id |
| N1 | W2 |
+ # github #1056
+ Scenario: Full names should be preferably matched for nearest road
+ Given the grid
+ | 1 | | 2 | 5 |
+ | | | | |
+ | 3 | | | 4 |
+ | | 10| | |
+ And the places
+ | osm | class | type | name+name | geometry |
+ | W1 | highway | residential | Via Cavassico superiore | 1, 2 |
+ | W3 | highway | residential | Via Cavassico superiore | 2, 5 |
+ | W2 | highway | primary | Via Frazione Cavassico | 3, 4 |
+ And the named places
+ | osm | class | type | addr+street |
+ | N10 | shop | yes | Via Cavassico superiore |
+ When importing
+ Then placex contains
+ | object | parent_place_id |
+ | N10 | W1 |
+
+ Scenario: place=square may be parented via addr:place
+ Given the grid
+ | | | 9 | | |
+ | | 5 | | 6 | |
+ | | 8 | | 7 | |
+ And the places
+ | osm | class | type | name+name | geometry |
+ | W2 | place | square | Foo pl | (5, 6, 7, 8, 5) |
+ And the places
+ | osm | class | type | name+name | housenr | addr_place | geometry |
+ | N10 | shop | grocery | le shop | 5 | Foo pl | 9 |
+ When importing
+ Then placex contains
+ | object | rank_address |
+ | W2 | 25 |
+ Then placex contains
+ | object | parent_place_id |
+ | N10 | W2 |
+