1. List of street names
Create a query using overpass turbo to generate a list of street names from the city you're working on.
Step 1: Create a local repository for your city
Step 2: Generate a list of the street names in your city
[out:csv(::type, ::id, name, "name:fr", "name:nl", wikidata, "name:etymology:wikidata")][timeout:120];
// Mons: Code INS 53053
( area["admin_level"="8"]["ref:INS"="53053"]; )->.a;
(
way["highway"]["name"]["highway"!="bus_stop"]["highway"!="service"](area.a);
relation["type"="associatedStreet"](area.a);
relation["type"="multipolygon"]["place"]["name"](area.a);
relation["type"="multipolygon"]["highway"]["name"](area.a);
);
out body;Last updated
Was this helpful?