Hey gang. I&#39;ve been working on text-based (turn by turn) driving directions. I noticed a couple days ago that OSM data stores information about motorway junctions in the node tags... things like junction reference and exit text, which would allow me to add more detail to the directions (ie, &quot;take exit 1A towards yada...&quot;). I modified osm2pgrouting to pull this data so I could apply it to the ways, but it&#39;s not working out very well so far. It&#39;s probably a flaw in my logic, so I wanted to run it by you guys. Right now, when the ways are being split I checkall the nodes to see if one is a junction, and I check the way to see if it&#39;s a motorway_link and if they are I populate the two columns I added to ways: junction_reference and exit_text. Then, when constructing the directions, if I have either of these I can print &quot;take exit&quot; instead of &quot;turn right&quot; or whatever.<br>
<br>It doesn&#39;t seem to be populating the data for all the appropriate ways. Do you see any flaws in the way I&#39;m approaching this?<br><br>Thanks,<br>JD<br>