Alliegaytor
- Mapper since:
- September 02, 2023
- Last map edit:
- December 20, 2025
Chronically sleepy mapper from Melbourne, Australia. I have interests in public transport and walkability and predominantly map those as that is how I get about.
I really like editing in JOSM as constructing intricate shapes and using geometry is an art and is beautiful to me.
I think I spend more time reordering ptv2 ways and unduplicaiting duplicated ways though!
https://hdyc.neis-one.org/?Alliegaytor
Current Projects
- Mapping of houses, Bendigo
- Fixing broken ptv2 route relations in Perth, Adelaide, Brisbane
- Reviewing changesets in Melbourne
- Adding bus stops, Melbourne
- Improving bus stop tagging, VIC
Useful overpass queries:
// bus stop within 5m of bus stop
node["highway"="bus_stop"]({{bbox}})->.a;
foreach.a->.elem(
node.a(around.elem:5);
(._; - .elem;);
out meta;
);
// 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;