Hi, <br>I wonder why pgRouting is giving back a wrong order of edges in the calculated shortest path? <br>e.g. shortest path order should be: 1,2,3,4,5 but a different one is returned, e.g.: 1,3,5,2,4<br><br>We use this code: <br>
<br>SELECT * FROM shortest_path('SELECT gid AS id, source::int4, target::int4,<br> to_cost_shortest::double precision AS cost,reverse_cost_shortest::double<br> precision AS reverse_cost FROM ways', $startVertex, $endVertex, true, true)<br>
<br>Anyone got an idea? <br><br>