| ok | from | to | route | details |
| x | a | b | ab | |
| x | a | c | ca | |
| x | b | c | bc | |
| x | b | a | ab | |
| x | c | a | ca | |
| | b | a | bc,ca | [["Head", "bc", 248, 0, 127, "0", "NE", 22.5], ["Turn sharp right", "ca", 248, 1, 127, "1", "NE", 22.5]] |
| x | c | b | bc | |
| x | c | a | ca | |
| | c | b | ca,ab | [["Head", "ca", 248, 0, 127, "0", "NE", 22.5], ["Turn sharp right", "ab", 222, 1, 114, "1", "NE", 22.5], ["Turn sharp right", "bc", 0, 2, 0, "2", "NE", 22.5]] |
(note: i'm temporarily filtering out instructions with length<=1, that why the last line shows 2 steps under route, but 3 under details...)
expected routes marked with stars
so it seems i'm getting routed the long way around on some of the trips?
when going from b to a, i get bc,ca, instead of just ab
when going from c to b, i get ca,ab, instead of just bc
(note: i'm temporarily filtering out instructions with length<=1, that why the last line shows 2 steps under route, but 3 under details...)