I want to use Arc Flags for routing in road networks. Let's say I have just a database with all nodes and ways I am interested in:
> db.ways.findOne(){"properties" : { ... }, "nodes" : ["2345", ...]}> db.nodes.findOne(){"coordinates" : [10.0, 53.0], "type" : "Point"}I understand that just...