1 Feature: Query of address interpolations
2 Tests that interpolated addresses can be queried correctly
10 Scenario: Find interpolations with single number
12 | osm | class | type | name | geometry |
13 | W10 | highway | primary | Nickway | 10,12,13 |
15 | osm | class | type | addr+interpolation | geometry |
16 | W1 | place | houses | odd | 1,3 |
18 | osm | class | type | housenr | geometry |
19 | N1 | place | house | 1 | 1 |
20 | N3 | place | house | 5 | 3 |
25 When reverse geocoding at node 2
26 Then the result contains
29 When geocoding "Nickway 3"
30 Then all results contain
31 | object | display_name |
35 Scenario: Find interpolations with multiple numbers
37 | osm | class | type | name | geometry |
38 | W10 | highway | primary | Nickway | 10,12,13 |
40 | osm | class | type | addr+interpolation | geometry |
41 | W1 | place | houses | even | 1,3 |
43 | osm | class | type | housenr | geometry |
44 | N1 | place | house | 2 | 1 |
45 | N3 | place | house | 18 | 3 |
50 When reverse geocoding at node 2
51 Then the result contains
52 | display_name | centroid!wkt |
54 When geocoding "Nickway 10"
55 Then all results contain
56 | object | display_name | centroid!wkt |
57 | W1 | 10, Nickway | 2 |