Auto-add nomatch properties for certain special tag pairs

['amenity/fuel', 'shop/convenience']
 ['amenity/pharmacy', 'shop/chemist']
 ['shop/car', 'shop/car_repair']

This means that we are allowing both versions in the index
and don't want to be warned about the duplicate name.
e.g. amenity/pharmacy|Walgreens and shop/chemist|Walgreens
This commit is contained in:
Bryan Housel 2018-09-17 10:01:03 -04:00
parent fc1e59267e
commit 136cb5b082
2 changed files with 356 additions and 0 deletions

View file

@ -97,6 +97,32 @@ function mergeConfig() {
var name = diacritics.remove(k.split('|', 2)[1].toLowerCase());
var other = seen[name];
if (other) {
// one-time code to nomatch some special tags
var nomatch = false;
var thistag = k.split('|', 2)[0];
var othertag = other.split('|', 2)[0];
// var special = ['amenity/fuel', 'shop/convenience'];
// var special = ['amenity/pharmacy', 'shop/chemist'];
// var special = ['shop/car', 'shop/car_repair'];
var special = ['',''];
if ((thistag === special[0] && othertag === special[1]) || (thistag === special[1] && othertag === special[0])) {
if (canonical[other].nomatch) {
if (canonical[other].nomatch.indexOf(k) === -1) {
canonical[other].nomatch.push(k);
}
} else {
canonical[other].nomatch = [k];
}
if (canonical[k].nomatch) {
if (canonical[k].nomatch.indexOf(other) === -1) {
canonical[k].nomatch.push(other);
}
} else {
canonical[k].nomatch = [other];
}
}
// suppress warning?
var suppress = false;
if (canonical[other].nomatch && canonical[other].nomatch.indexOf(k) !== -1) {

View file

@ -7407,6 +7407,9 @@
"amenity/fuel|7 Eleven",
"amenity/fuel|7-11"
],
"nomatch": [
"shop/convenience|7-Eleven"
],
"tags": {
"amenity": "fuel",
"brand": "7-Eleven",
@ -7415,6 +7418,9 @@
},
"amenity/fuel|ABC": {
"count": 84,
"nomatch": [
"shop/convenience|ABC"
],
"tags": {
"amenity": "fuel",
"brand": "ABC",
@ -7602,6 +7608,9 @@
"match": [
"amenity/fuel|bp"
],
"nomatch": [
"shop/convenience|BP"
],
"tags": {
"amenity": "fuel",
"brand": "BP",
@ -7719,6 +7728,9 @@
"match": [
"amenity/fuel|Casey's"
],
"nomatch": [
"shop/convenience|Casey's General Store"
],
"tags": {
"amenity": "fuel",
"brand": "Casey's General Store",
@ -7743,6 +7755,9 @@
},
"amenity/fuel|Chevron": {
"count": 2047,
"nomatch": [
"shop/convenience|Chevron"
],
"tags": {
"amenity": "fuel",
"brand": "Chevron",
@ -7751,6 +7766,9 @@
},
"amenity/fuel|Circle K": {
"count": 1264,
"nomatch": [
"shop/convenience|Circle K"
],
"tags": {
"amenity": "fuel",
"brand": "Circle K",
@ -7759,6 +7777,9 @@
},
"amenity/fuel|Citgo": {
"count": 873,
"nomatch": [
"shop/convenience|Citgo"
],
"tags": {
"amenity": "fuel",
"brand": "Citgo",
@ -7793,6 +7814,9 @@
},
"amenity/fuel|Coles Express": {
"count": 338,
"nomatch": [
"shop/convenience|Coles Express"
],
"tags": {
"amenity": "fuel",
"brand": "Coles Express",
@ -7846,6 +7870,9 @@
},
"amenity/fuel|Couche-Tard": {
"count": 67,
"nomatch": [
"shop/convenience|Couche-Tard"
],
"tags": {
"amenity": "fuel",
"brand": "Couche-Tard",
@ -7870,6 +7897,9 @@
},
"amenity/fuel|Cumberland Farms": {
"count": 117,
"nomatch": [
"shop/convenience|Cumberland Farms"
],
"tags": {
"amenity": "fuel",
"brand": "Cumberland Farms",
@ -7975,6 +8005,9 @@
"amenity/fuel|ESSO",
"amenity/fuel|Station Esso"
],
"nomatch": [
"shop/convenience|Esso"
],
"tags": {
"amenity": "fuel",
"brand": "Esso",
@ -7991,6 +8024,9 @@
},
"amenity/fuel|Exxon": {
"count": 1363,
"nomatch": [
"shop/convenience|Exxon"
],
"tags": {
"amenity": "fuel",
"brand": "Exxon",
@ -8202,6 +8238,9 @@
},
"amenity/fuel|Holiday": {
"count": 191,
"nomatch": [
"shop/convenience|Holiday"
],
"tags": {
"amenity": "fuel",
"brand": "Holiday",
@ -8210,6 +8249,9 @@
},
"amenity/fuel|Husky": {
"count": 387,
"nomatch": [
"shop/convenience|Husky"
],
"tags": {
"amenity": "fuel",
"brand": "Husky",
@ -8282,6 +8324,9 @@
},
"amenity/fuel|Irving": {
"count": 419,
"nomatch": [
"shop/convenience|Irving"
],
"tags": {
"amenity": "fuel",
"brand": "Irving",
@ -8325,6 +8370,9 @@
},
"amenity/fuel|Kangaroo": {
"count": 110,
"nomatch": [
"shop/convenience|Kangaroo"
],
"tags": {
"amenity": "fuel",
"brand": "Kangaroo",
@ -8357,6 +8405,9 @@
},
"amenity/fuel|Kum & Go": {
"count": 168,
"nomatch": [
"shop/convenience|Kum & Go"
],
"tags": {
"amenity": "fuel",
"brand": "Kum & Go",
@ -8365,6 +8416,9 @@
},
"amenity/fuel|Kwik Trip": {
"count": 261,
"nomatch": [
"shop/convenience|Kwik Trip"
],
"tags": {
"amenity": "fuel",
"brand": "Kwik Trip",
@ -8452,6 +8506,9 @@
},
"amenity/fuel|Mac's": {
"count": 59,
"nomatch": [
"shop/convenience|Mac's"
],
"tags": {
"amenity": "fuel",
"brand": "Mac's",
@ -8468,6 +8525,9 @@
},
"amenity/fuel|Marathon": {
"count": 938,
"nomatch": [
"shop/convenience|Marathon"
],
"tags": {
"amenity": "fuel",
"brand": "Marathon",
@ -8476,6 +8536,9 @@
},
"amenity/fuel|Maverik": {
"count": 97,
"nomatch": [
"shop/convenience|Maverik"
],
"tags": {
"amenity": "fuel",
"brand": "Maverik",
@ -8516,6 +8579,9 @@
},
"amenity/fuel|Mobil": {
"count": 1727,
"nomatch": [
"shop/convenience|Mobil"
],
"tags": {
"amenity": "fuel",
"brand": "Mobil",
@ -8629,6 +8695,9 @@
},
"amenity/fuel|Orlen": {
"count": 1319,
"nomatch": [
"shop/convenience|Orlen"
],
"tags": {
"amenity": "fuel",
"brand": "Orlen",
@ -8724,6 +8793,9 @@
"match": [
"amenity/fuel|Petro Canada"
],
"nomatch": [
"shop/convenience|Petro-Canada"
],
"tags": {
"amenity": "fuel",
"brand": "Petro-Canada",
@ -8966,6 +9038,9 @@
},
"amenity/fuel|QuikTrip": {
"count": 301,
"nomatch": [
"shop/convenience|QuikTrip"
],
"tags": {
"amenity": "fuel",
"brand": "QuikTrip",
@ -9022,6 +9097,9 @@
},
"amenity/fuel|Royal Farms": {
"count": 87,
"nomatch": [
"shop/convenience|Royal Farms"
],
"tags": {
"amenity": "fuel",
"brand": "Royal Farms",
@ -9105,6 +9183,9 @@
},
"amenity/fuel|Sheetz": {
"count": 384,
"nomatch": [
"shop/convenience|Sheetz"
],
"tags": {
"amenity": "fuel",
"brand": "Sheetz",
@ -9120,6 +9201,9 @@
"amenity/fuel|Station Shell",
"amenity/fuel|shell"
],
"nomatch": [
"shop/convenience|Shell"
],
"tags": {
"amenity": "fuel",
"brand": "Shell",
@ -9195,6 +9279,9 @@
},
"amenity/fuel|Speedway": {
"count": 787,
"nomatch": [
"shop/convenience|Speedway"
],
"tags": {
"amenity": "fuel",
"brand": "Speedway",
@ -9263,6 +9350,9 @@
},
"amenity/fuel|Stewart's": {
"count": 79,
"nomatch": [
"shop/convenience|Stewart's"
],
"tags": {
"amenity": "fuel",
"brand": "Stewart's",
@ -9271,6 +9361,9 @@
},
"amenity/fuel|Sunoco": {
"count": 1090,
"nomatch": [
"shop/convenience|Sunoco"
],
"tags": {
"amenity": "fuel",
"brand": "Sunoco",
@ -9359,6 +9452,9 @@
},
"amenity/fuel|Tesco": {
"count": 226,
"nomatch": [
"shop/convenience|Tesco"
],
"tags": {
"amenity": "fuel",
"brand": "Tesco",
@ -9367,6 +9463,9 @@
},
"amenity/fuel|Texaco": {
"count": 1318,
"nomatch": [
"shop/convenience|Texaco"
],
"tags": {
"amenity": "fuel",
"brand": "Texaco",
@ -9395,6 +9494,9 @@
"amenity/fuel|Station Total",
"amenity/fuel|TOTAL"
],
"nomatch": [
"shop/convenience|Total"
],
"tags": {
"amenity": "fuel",
"brand": "Total",
@ -9422,6 +9524,9 @@
},
"amenity/fuel|Turkey Hill": {
"count": 109,
"nomatch": [
"shop/convenience|Turkey Hill"
],
"tags": {
"amenity": "fuel",
"brand": "Turkey Hill",
@ -9438,6 +9543,9 @@
},
"amenity/fuel|Ultramar": {
"count": 631,
"nomatch": [
"shop/convenience|Ultramar"
],
"tags": {
"amenity": "fuel",
"brand": "Ultramar",
@ -9470,6 +9578,9 @@
},
"amenity/fuel|Valero": {
"count": 974,
"nomatch": [
"shop/convenience|Valero"
],
"tags": {
"amenity": "fuel",
"brand": "Valero",
@ -9502,6 +9613,9 @@
},
"amenity/fuel|Wawa": {
"count": 236,
"nomatch": [
"shop/convenience|Wawa"
],
"tags": {
"amenity": "fuel",
"brand": "Wawa",
@ -9518,6 +9632,9 @@
},
"amenity/fuel|Woolworths Petrol": {
"count": 209,
"nomatch": [
"shop/convenience|Woolworths Petrol"
],
"tags": {
"amenity": "fuel",
"brand": "Woolworths Petrol",
@ -9670,6 +9787,9 @@
},
"amenity/fuel|КазМунайГаз": {
"count": 152,
"nomatch": [
"shop/convenience|КазМунайГаз"
],
"tags": {
"amenity": "fuel",
"brand": "КазМунайГаз",
@ -9681,6 +9801,9 @@
"match": [
"amenity/fuel|Лукоил"
],
"nomatch": [
"shop/convenience|Лукойл"
],
"tags": {
"amenity": "fuel",
"brand": "Лукойл",
@ -10197,6 +10320,9 @@
"match": [
"amenity/pharmacy|Boots Pharmacy"
],
"nomatch": [
"shop/chemist|Boots"
],
"tags": {
"amenity": "pharmacy",
"brand": "Boots",
@ -10266,6 +10392,9 @@
"amenity/pharmacy|CVS/pharmacy",
"shop/convenience|CVS"
],
"nomatch": [
"shop/chemist|CVS"
],
"tags": {
"amenity": "pharmacy",
"brand": "CVS",
@ -11052,6 +11181,9 @@
"amenity/pharmacy|Rite Aid Pharmacy",
"amenity/pharmacy|Rite-Aid"
],
"nomatch": [
"shop/chemist|Rite Aid"
],
"tags": {
"amenity": "pharmacy",
"brand": "Rite Aid",
@ -11180,6 +11312,9 @@
},
"amenity/pharmacy|Superdrug": {
"count": 211,
"nomatch": [
"shop/chemist|Superdrug"
],
"tags": {
"amenity": "pharmacy",
"brand": "Superdrug",
@ -11229,6 +11364,9 @@
"amenity/pharmacy|Walgreen's",
"shop/convenience|Walgreens"
],
"nomatch": [
"shop/chemist|Walgreens"
],
"tags": {
"amenity": "pharmacy",
"brand": "Walgreens",
@ -11259,6 +11397,9 @@
},
"amenity/pharmacy|Watsons": {
"count": 128,
"nomatch": [
"shop/chemist|Watsons"
],
"tags": {
"amenity": "pharmacy",
"brand": "Watsons",
@ -11679,6 +11820,9 @@
},
"amenity/pharmacy|スギ薬局": {
"count": 168,
"nomatch": [
"shop/chemist|スギ薬局"
],
"tags": {
"amenity": "pharmacy",
"brand": "スギ薬局",
@ -11724,6 +11868,9 @@
},
"amenity/pharmacy|丁丁藥局": {
"count": 83,
"nomatch": [
"shop/chemist|丁丁藥局"
],
"tags": {
"amenity": "pharmacy",
"brand": "丁丁藥局",
@ -11733,6 +11880,9 @@
},
"amenity/pharmacy|屈臣氏": {
"count": 52,
"nomatch": [
"shop/chemist|屈臣氏"
],
"tags": {
"amenity": "pharmacy",
"brand": "屈臣氏",
@ -17385,6 +17535,9 @@
},
"shop/car_repair|Citroën": {
"count": 117,
"nomatch": [
"shop/car|Citroën"
],
"tags": {
"brand": "Citroën",
"name": "Citroën",
@ -17433,6 +17586,9 @@
},
"shop/car_repair|Ford": {
"count": 67,
"nomatch": [
"shop/car|Ford"
],
"tags": {
"brand": "Ford",
"name": "Ford",
@ -17567,6 +17723,9 @@
},
"shop/car_repair|Peugeot": {
"count": 163,
"nomatch": [
"shop/car|Peugeot"
],
"tags": {
"brand": "Peugeot",
"name": "Peugeot",
@ -17591,6 +17750,9 @@
},
"shop/car_repair|Renault": {
"count": 314,
"nomatch": [
"shop/car|Renault"
],
"tags": {
"brand": "Renault",
"name": "Renault",
@ -17631,6 +17793,9 @@
},
"shop/car_repair|Toyota": {
"count": 67,
"nomatch": [
"shop/car|Toyota"
],
"tags": {
"brand": "Toyota",
"name": "Toyota",
@ -17746,6 +17911,9 @@
"match": [
"shop/car|Citroen"
],
"nomatch": [
"shop/car_repair|Citroën"
],
"tags": {
"brand": "Citroën",
"name": "Citroën",
@ -17770,6 +17938,9 @@
},
"shop/car|Ford": {
"count": 524,
"nomatch": [
"shop/car_repair|Ford"
],
"tags": {
"brand": "Ford",
"name": "Ford",
@ -17915,6 +18086,9 @@
},
"shop/car|Peugeot": {
"count": 582,
"nomatch": [
"shop/car_repair|Peugeot"
],
"tags": {
"brand": "Peugeot",
"name": "Peugeot",
@ -17931,6 +18105,9 @@
},
"shop/car|Renault": {
"count": 769,
"nomatch": [
"shop/car_repair|Renault"
],
"tags": {
"brand": "Renault",
"name": "Renault",
@ -17979,6 +18156,9 @@
},
"shop/car|Toyota": {
"count": 710,
"nomatch": [
"shop/car_repair|Toyota"
],
"tags": {
"brand": "Toyota",
"name": "Toyota",
@ -18153,6 +18333,9 @@
},
"shop/chemist|Boots": {
"count": 395,
"nomatch": [
"amenity/pharmacy|Boots"
],
"tags": {
"brand": "Boots",
"name": "Boots",
@ -18169,6 +18352,9 @@
},
"shop/chemist|CVS": {
"count": 108,
"nomatch": [
"amenity/pharmacy|CVS"
],
"tags": {
"brand": "CVS",
"name": "CVS",
@ -18233,6 +18419,9 @@
},
"shop/chemist|Rite Aid": {
"count": 71,
"nomatch": [
"amenity/pharmacy|Rite Aid"
],
"tags": {
"brand": "Rite Aid",
"name": "Rite Aid",
@ -18249,6 +18438,9 @@
},
"shop/chemist|Superdrug": {
"count": 184,
"nomatch": [
"amenity/pharmacy|Superdrug"
],
"tags": {
"brand": "Superdrug",
"name": "Superdrug",
@ -18281,6 +18473,9 @@
},
"shop/chemist|Walgreens": {
"count": 198,
"nomatch": [
"amenity/pharmacy|Walgreens"
],
"tags": {
"brand": "Walgreens",
"name": "Walgreens",
@ -18289,6 +18484,9 @@
},
"shop/chemist|Watsons": {
"count": 152,
"nomatch": [
"amenity/pharmacy|Watsons"
],
"tags": {
"brand": "Watsons",
"name": "Watsons",
@ -18376,6 +18574,9 @@
},
"shop/chemist|スギ薬局": {
"count": 77,
"nomatch": [
"amenity/pharmacy|スギ薬局"
],
"tags": {
"brand": "スギ薬局",
"name": "スギ薬局",
@ -18384,6 +18585,9 @@
},
"shop/chemist|丁丁藥局": {
"count": 78,
"nomatch": [
"amenity/pharmacy|丁丁藥局"
],
"tags": {
"brand": "丁丁藥局",
"name": "丁丁藥局",
@ -18392,6 +18596,9 @@
},
"shop/chemist|屈臣氏": {
"count": 169,
"nomatch": [
"amenity/pharmacy|屈臣氏"
],
"tags": {
"brand": "屈臣氏",
"name": "屈臣氏",
@ -20416,6 +20623,9 @@
"shop/convenience|Seven Eleven",
"shop/supermarket|7-Eleven"
],
"nomatch": [
"amenity/fuel|7-Eleven"
],
"tags": {
"brand": "7-Eleven",
"name": "7-Eleven",
@ -20440,6 +20650,9 @@
},
"shop/convenience|ABC": {
"count": 798,
"nomatch": [
"amenity/fuel|ABC"
],
"tags": {
"brand": "ABC",
"name": "ABC",
@ -20555,6 +20768,9 @@
},
"shop/convenience|BP": {
"count": 288,
"nomatch": [
"amenity/fuel|BP"
],
"tags": {
"brand": "BP",
"name": "BP",
@ -20659,6 +20875,9 @@
},
"shop/convenience|Casey's General Store": {
"count": 271,
"nomatch": [
"amenity/fuel|Casey's General Store"
],
"tags": {
"brand": "Casey's General Store",
"name": "Casey's General Store",
@ -20715,6 +20934,9 @@
},
"shop/convenience|Chevron": {
"count": 135,
"nomatch": [
"amenity/fuel|Chevron"
],
"tags": {
"brand": "Chevron",
"name": "Chevron",
@ -20727,6 +20949,9 @@
"shop/convenience|OK",
"shop/convenience|OK-Mart"
],
"nomatch": [
"amenity/fuel|Circle K"
],
"tags": {
"brand": "Circle K",
"name": "Circle K",
@ -20735,6 +20960,9 @@
},
"shop/convenience|Citgo": {
"count": 80,
"nomatch": [
"amenity/fuel|Citgo"
],
"tags": {
"brand": "Citgo",
"name": "Citgo",
@ -20770,6 +20998,9 @@
},
"shop/convenience|Coles Express": {
"count": 243,
"nomatch": [
"amenity/fuel|Coles Express"
],
"tags": {
"brand": "Coles Express",
"name": "Coles Express",
@ -20802,6 +21033,9 @@
},
"shop/convenience|Couche-Tard": {
"count": 194,
"nomatch": [
"amenity/fuel|Couche-Tard"
],
"tags": {
"brand": "Couche-Tard",
"name": "Couche-Tard",
@ -20810,6 +21044,9 @@
},
"shop/convenience|Cumberland Farms": {
"count": 132,
"nomatch": [
"amenity/fuel|Cumberland Farms"
],
"tags": {
"brand": "Cumberland Farms",
"name": "Cumberland Farms",
@ -20874,6 +21111,9 @@
},
"shop/convenience|Esso": {
"count": 276,
"nomatch": [
"amenity/fuel|Esso"
],
"tags": {
"brand": "Esso",
"name": "Esso",
@ -20898,6 +21138,9 @@
},
"shop/convenience|Exxon": {
"count": 60,
"nomatch": [
"amenity/fuel|Exxon"
],
"tags": {
"brand": "Exxon",
"name": "Exxon",
@ -20984,6 +21227,9 @@
},
"shop/convenience|Holiday": {
"count": 77,
"nomatch": [
"amenity/fuel|Holiday"
],
"tags": {
"brand": "Holiday",
"name": "Holiday",
@ -21000,6 +21246,9 @@
},
"shop/convenience|Husky": {
"count": 54,
"nomatch": [
"amenity/fuel|Husky"
],
"tags": {
"brand": "Husky",
"name": "Husky",
@ -21016,6 +21265,9 @@
},
"shop/convenience|Irving": {
"count": 64,
"nomatch": [
"amenity/fuel|Irving"
],
"tags": {
"brand": "Irving",
"name": "Irving",
@ -21056,6 +21308,9 @@
},
"shop/convenience|Kangaroo": {
"count": 53,
"nomatch": [
"amenity/fuel|Kangaroo"
],
"tags": {
"brand": "Kangaroo",
"name": "Kangaroo",
@ -21088,6 +21343,9 @@
},
"shop/convenience|Kum & Go": {
"count": 158,
"nomatch": [
"amenity/fuel|Kum & Go"
],
"tags": {
"brand": "Kum & Go",
"name": "Kum & Go",
@ -21096,6 +21354,9 @@
},
"shop/convenience|Kwik Trip": {
"count": 169,
"nomatch": [
"amenity/fuel|Kwik Trip"
],
"tags": {
"brand": "Kwik Trip",
"name": "Kwik Trip",
@ -21150,6 +21411,9 @@
},
"shop/convenience|Mac's": {
"count": 307,
"nomatch": [
"amenity/fuel|Mac's"
],
"tags": {
"brand": "Mac's",
"name": "Mac's",
@ -21214,6 +21478,9 @@
},
"shop/convenience|Marathon": {
"count": 91,
"nomatch": [
"amenity/fuel|Marathon"
],
"tags": {
"brand": "Marathon",
"name": "Marathon",
@ -21238,6 +21505,9 @@
},
"shop/convenience|Maverik": {
"count": 63,
"nomatch": [
"amenity/fuel|Maverik"
],
"tags": {
"brand": "Maverik",
"name": "Maverik",
@ -21318,6 +21588,9 @@
},
"shop/convenience|Mobil": {
"count": 93,
"nomatch": [
"amenity/fuel|Mobil"
],
"tags": {
"brand": "Mobil",
"name": "Mobil",
@ -21402,6 +21675,9 @@
},
"shop/convenience|Orlen": {
"count": 61,
"nomatch": [
"amenity/fuel|Orlen"
],
"tags": {
"brand": "Orlen",
"name": "Orlen",
@ -21437,6 +21713,9 @@
},
"shop/convenience|Petro-Canada": {
"count": 134,
"nomatch": [
"amenity/fuel|Petro-Canada"
],
"tags": {
"brand": "Petro-Canada",
"name": "Petro-Canada",
@ -21517,6 +21796,9 @@
},
"shop/convenience|QuikTrip": {
"count": 207,
"nomatch": [
"amenity/fuel|QuikTrip"
],
"tags": {
"brand": "QuikTrip",
"name": "QuikTrip",
@ -21541,6 +21823,9 @@
},
"shop/convenience|Royal Farms": {
"count": 106,
"nomatch": [
"amenity/fuel|Royal Farms"
],
"tags": {
"brand": "Royal Farms",
"name": "Royal Farms",
@ -21581,6 +21866,9 @@
},
"shop/convenience|Sheetz": {
"count": 192,
"nomatch": [
"amenity/fuel|Sheetz"
],
"tags": {
"brand": "Sheetz",
"name": "Sheetz",
@ -21589,6 +21877,9 @@
},
"shop/convenience|Shell": {
"count": 609,
"nomatch": [
"amenity/fuel|Shell"
],
"tags": {
"brand": "Shell",
"name": "Shell",
@ -21648,6 +21939,9 @@
},
"shop/convenience|Speedway": {
"count": 158,
"nomatch": [
"amenity/fuel|Speedway"
],
"tags": {
"brand": "Speedway",
"name": "Speedway",
@ -21680,6 +21974,9 @@
},
"shop/convenience|Stewart's": {
"count": 262,
"nomatch": [
"amenity/fuel|Stewart's"
],
"tags": {
"brand": "Stewart's",
"name": "Stewart's",
@ -21712,6 +22009,9 @@
},
"shop/convenience|Sunoco": {
"count": 87,
"nomatch": [
"amenity/fuel|Sunoco"
],
"tags": {
"brand": "Sunoco",
"name": "Sunoco",
@ -21752,6 +22052,9 @@
},
"shop/convenience|Tesco": {
"count": 54,
"nomatch": [
"amenity/fuel|Tesco"
],
"tags": {
"brand": "Tesco",
"name": "Tesco",
@ -21776,6 +22079,9 @@
},
"shop/convenience|Texaco": {
"count": 56,
"nomatch": [
"amenity/fuel|Texaco"
],
"tags": {
"brand": "Texaco",
"name": "Texaco",
@ -21805,6 +22111,9 @@
},
"shop/convenience|Total": {
"count": 179,
"nomatch": [
"amenity/fuel|Total"
],
"tags": {
"brand": "Total",
"name": "Total",
@ -21813,6 +22122,9 @@
},
"shop/convenience|Turkey Hill": {
"count": 55,
"nomatch": [
"amenity/fuel|Turkey Hill"
],
"tags": {
"brand": "Turkey Hill",
"name": "Turkey Hill",
@ -21821,6 +22133,9 @@
},
"shop/convenience|Ultramar": {
"count": 57,
"nomatch": [
"amenity/fuel|Ultramar"
],
"tags": {
"brand": "Ultramar",
"name": "Ultramar",
@ -21845,6 +22160,9 @@
},
"shop/convenience|Valero": {
"count": 92,
"nomatch": [
"amenity/fuel|Valero"
],
"tags": {
"brand": "Valero",
"name": "Valero",
@ -21893,6 +22211,9 @@
},
"shop/convenience|Wawa": {
"count": 375,
"nomatch": [
"amenity/fuel|Wawa"
],
"tags": {
"brand": "Wawa",
"name": "Wawa",
@ -21909,6 +22230,9 @@
},
"shop/convenience|Woolworths Petrol": {
"count": 110,
"nomatch": [
"amenity/fuel|Woolworths Petrol"
],
"tags": {
"brand": "Woolworths Petrol",
"name": "Woolworths Petrol",
@ -22216,6 +22540,9 @@
},
"shop/convenience|КазМунайГаз": {
"count": 118,
"nomatch": [
"amenity/fuel|КазМунайГаз"
],
"tags": {
"brand": "КазМунайГаз",
"name": "КазМунайГаз",
@ -22368,6 +22695,9 @@
},
"shop/convenience|Лукойл": {
"count": 53,
"nomatch": [
"amenity/fuel|Лукойл"
],
"tags": {
"brand": "Лукойл",
"name": "Лукойл",