mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
exclude unnamed highway areas
These are used to mark large paved areas. Sometimes they exists together with named regular streets. In such cases the unnamed area may overshadow the actual street when computing the address parent. As unnamed highways are not very useful anyway, we simply remove them from the database.
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
"no" : "skip"
|
||||
}
|
||||
},
|
||||
{ "keys" : ["wikipedia", "wikipedia:*", "wikidata"],
|
||||
{ "keys" : ["wikipedia", "wikipedia:*", "wikidata", "area"],
|
||||
"values" : {
|
||||
"" : "extra"
|
||||
}
|
||||
|
||||
@@ -237,7 +237,8 @@
|
||||
"population", "description", "image", "attribution", "fax",
|
||||
"email", "url", "website", "phone", "real_ale", "smoking",
|
||||
"food", "camera", "brewery", "locality", "wikipedia",
|
||||
"wikipedia:*", "access:*", "contact:*", "drink:*", "toll:*"],
|
||||
"wikipedia:*", "access:*", "contact:*", "drink:*", "toll:*",
|
||||
"area"],
|
||||
"values" : {
|
||||
"" : "extra"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[
|
||||
{ "keys" : ["wikipedia", "wikipedia:*", "wikidata"],
|
||||
{ "keys" : ["wikipedia", "wikipedia:*", "wikidata", "area"],
|
||||
"values" : {
|
||||
"" : "extra"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user