mirror of https://github.com/pelias/docker.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
{ |
|
"name": "locality geodisambiguation", |
|
"description": [ |
|
"Counties and boroughs are often labeled locality in sturctured search or libpostal results.", |
|
"This leads to us not finding the expected result eventhough it exists in the index." |
|
], |
|
"priorityThresh": 1, |
|
"tests": [ |
|
{ |
|
"id": 1, |
|
"status": "pass", |
|
"user": "Diana", |
|
"in": { |
|
"text": "Bichlachweg 83, 6370 Kitzbühel, Austria" |
|
}, |
|
"expected": { |
|
"properties": [ |
|
{ |
|
"layer": "address", |
|
"name": "83 Bichlachweg", |
|
"county": "Kitzbühel" |
|
} |
|
] |
|
} |
|
}, |
|
{ |
|
"id": 2, |
|
"status": "pass", |
|
"user": "Diana", |
|
"endpoint": "search/structured", |
|
"in": { |
|
"address": "Bichlachweg 83", |
|
"locality": "Kitzbühel", |
|
"country": "Austria" |
|
}, |
|
"expected": { |
|
"properties": [ |
|
{ |
|
"layer": "address", |
|
"name": "83 Bichlachweg", |
|
"county": "Kitzbühel" |
|
} |
|
] |
|
} |
|
} |
|
] |
|
} |
|
|
|
|