User:Eternaltyro
Jump to navigation
Jump to search
I am interested in mapping public amenities in general and in particular:
- Public Transportation nodes and routes
- Public Libraries
- Public healthcare facilities
- Water bodies - Rivers and lakes
- Public spaces and nature preserves (protected forests, parks, nature trails etc.)
- Public toilets
- Postboxes and post-offices
- Public schools
Mostly focusing on the Indian subcontinent
Useful Overpass queries for public transport mapping
Download all roads - except residential roads and other unmaintained tracks
[out:xml][timeout:90][bbox:{{bbox}}];
(
nwr["highway"="primary"];
nwr["highway"="primary_link"];
nwr["highway"="secondary"];
nwr["highway"="secondary_link"];
nwr["highway"="tertiary"];
nwr["highway"="tertiary_link"];
nwr["highway"="trunk"];
nwr["highway"="trunk_link"];
);
(._;>;);
out meta;
Downloading bus_stops and platforms. Excluding routes (nw instead of nwr)
[out:xml][timeout:90][bbox:{{bbox}}];
(
nwr["highway"="bus_stop"];
nwr["public_transport"="platform"];
nwr["public_transport"="stop_position"];
nw["bus"="yes"];
);
(._;>;);
out meta;