Alliegaytor
- Mapper since:
- September 02, 2023
- Last map edit:
- July 05, 2026
Chronically sleepy mapper from Naarm (Melbourne), Australia. I have interests in public transport and walkability and predominantly map those as that is how I get about.
I frequently check and fix ptv2 route relations as those tend to get damaged by iD editor. The ordering of ptv2 ways matters. The routes can be verified at OSMI.
https://hdyc.neis-one.org/?Alliegaytor
Current Projects
- Mapping of houses, Bendigo
- Fixing broken ptv2 route relations
- Reviewing changesets in Melbourne, Bendigo
- Mapping footway=crossing ways (streetcomplete users can add kerb and tactile paving info once those are mapped properly)
Useful overpass queries:
// bus stops on interesting ways
node["highway"="bus_stop"]({{bbox}})->.b;
way["highway"!~"\\b(footway|cycleway|path|platform)"]({{bbox}});
node(w)->.t;
node.b.t;
out;
// likely crossings on footways
[bbox:{{bbox}}];
way[highway!~"^(service|track|path|footway)"]->.road;
way[highway=footway][footway!=crossing]->.footpath;
node(w.road)(w.footpath)[highway=crossing];
out meta;