1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“name="Taco Bell" and cuisine="mexican" global”
*/
[out:csv(cuisine,count)][timeout:25];
// gather results
(
  // query part for: “name="Taco Bell" and cuisine=mexican”
  node["shop"="supermarket"]["cuisine"];
  way["shop"="supermarket"]["cuisine"];
  relation["shop"="supermarket"]["cuisine"];
);
// print results
for (t["cuisine"])
(
  make stat ::id=count(nodes)+count(ways)+count(relations),cuisine=_.val,count=count(nodes)+count(ways)+count(relations);
  (._;.tags;)->.tags;
);
.tags out;
3000 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet