UK Supermarkets
Hi I'd like to get a list of the location of all the Tesco supermarkets in the UK into excel. I'm running a query through Overpass Turbo but I'm not getting a full list of results. I shows ~600 nodes but I know there are over 3000 Tesco's in the UK. Here is my query
<!--
This has been generated by the overpass-turbo wizard.
The original search was:
“ALDI”
-->
<osm-script output="xml" timeout="100000">
<!-- gather results -->
<union>
<query type="way">
<has-kv k="name" v="Tesco"/>
<bbox-query {{bbox}}/>
</query>
</union>
<!-- print results -->
<print mode="body"/>
<recurse type="down"/>
<print mode="skeleton" order="quadtile"/>
</osm-script>
Am I missing something? Also, this Also - can I use a wildcard for the name search? It only returns stores with the exact name "Tesco". Can I use a wildcard so it would return "Tesco" rather than "Tesco Express" as well as "Tesco"?Express".