2 Feature: Query of address interpolations
 
   3     Tests that interpolated addresses can be queried correctly
 
  11     Scenario: Find interpolations with single number
 
  13           | osm | class   | type    | name    | geometry |
 
  14           | W10 | highway | primary | Nickway | 10,12,13 |
 
  16           | osm | class | type   | addr+interpolation | geometry |
 
  17           | W1  | place | houses | odd                | 1,3      |
 
  19           | osm | class | type  | housenr | geometry |
 
  20           | N1  | place | house | 1       | 1        |
 
  21           | N3  | place | house | 5       | 3        |
 
  26         When sending v1/reverse N2
 
  30         When sending search query "Nickway 3"
 
  32           | osm | display_name |
 
  36     Scenario: Find interpolations with multiple numbers
 
  38           | osm | class   | type    | name    | geometry |
 
  39           | W10 | highway | primary | Nickway | 10,12,13 |
 
  41           | osm | class | type   | addr+interpolation | geometry |
 
  42           | W1  | place | houses | even               | 1,3      |
 
  44           | osm | class | type  | housenr | geometry |
 
  45           | N1  | place | house | 2       | 1        |
 
  46           | N3  | place | house | 18      | 3        |
 
  51         When sending v1/reverse N2
 
  53           | ID | display_name | centroid |
 
  54           | 0  | 10, Nickway  | 2 |
 
  55         When sending search query "Nickway 10"
 
  57           | osm | display_name  | centroid |
 
  58           | W1  | 10, Nickway   | 2 |