2 Feature: XML output for Reverse API
3 Testing correctness of xml output (API version v1).
5 Scenario Outline: OSM result with and without addresses
6 When sending v1/reverse at 47.066,9.504 with format xml
9 Then result has attributes place_id
10 Then result has <attributes> address
12 | osm_type | osm_id | place_rank | address_rank |
13 | node | 6522627624 | 30 | 30 |
15 | lat | lon | boundingbox |
16 | 47.0660892 | 9.5036065 | 47.0660392,47.0661392,9.5035565,9.5036565 |
18 | ref | display_name |
19 | Dorfbäckerei Herrmann | Dorfbäckerei Herrmann, 29, Gnetsch, Mäls, Balzers, Oberland, 9496, Liechtenstein |
22 | has_address | attributes |
24 | 0 | not attributes |
28 Scenario: Tiger address
29 When sending v1/reverse at 32.4752389363,-86.4810198619 with format xml
31 | osm_type | osm_id | place_rank | address_rank |
32 | way | 396009653 | 30 | 30 |
34 | lat | lon | boundingbox |
35 | 32.47535802569396 | -86.48085532585448 | 32.475308025694,32.475408025694,-86.480905325854,-86.480805325854 |
38 | 707, Upper Kingston Road, Upper Kingston, Prattville, Autauga County, 36067, United States |
41 Scenario: Interpolation address
42 When sending v1/reverse at 47.118533,9.57056562 with format xml
44 | osm_type | osm_id | place_rank | address_rank |
47 | lat | lon | boundingbox |
48 | 47.118545392 | 9.57054676 | 47.118495392,47.118595392,9.57049676,9.57059676 |
51 | 1019, Grosssteg, Sücka, Triesenberg, Oberland, 9497, Liechtenstein |
54 Scenario: Output of geojson
55 When sending v1/reverse at 47.06597,9.50467 with format xml
57 | polygon_geojson | 1 |
60 | {"type":"LineString","coordinates":[[9.5039353,47.0657546],[9.5040437,47.0657781],[9.5040808,47.065787],[9.5054298,47.0661407]]} |
63 Scenario: Output of WKT
64 When sending v1/reverse at 47.06597,9.50467 with format xml
69 | LINESTRING(9.5039353 47.0657546,9.5040437 47.0657781,9.5040808 47.065787,9.5054298 47.0661407) |
72 Scenario: Output of SVG
73 When sending v1/reverse at 47.06597,9.50467 with format xml
78 | M 9.5039353 -47.0657546 L 9.5040437 -47.0657781 9.5040808 -47.065787 9.5054298 -47.0661407 |
81 Scenario: Output of KML
82 When sending v1/reverse at 47.06597,9.50467 with format xml
87 | <geokml><LineString><coordinates>9.5039353,47.0657546 9.5040437,47.0657781 9.5040808,47.065787 9.5054298,47.0661407</coordinates></LineString></geokml> |