Jodeln Outputs

Jodeln can output 4 csv files related to the network and routes.

  1. csv of nodes along the routes for each origin-destination pair.

A,W,X,Z,D
  1. csv of links (sequence of 2 nodes) between the origin and destination. Each route is automatically assigned a unique name based on the lowest-cost route. The lowest-cost route between A and D goes through link W-X, and is therefore assigned the route name W_X.

o_node,d_node,route,a_node,b_node
A,D,W_X,A,W
A,D,W_X,W,X
A,D,W_X,X,Z
A,D,W_X,Z,D
...
  1. csv of turns (sequence of 3 nodes) between the origin and destination.

o_node,d_node,route,a_node,b_node,c_node
A,D,W_X,A,W,X
A,D,W_X,W,X,Z
A,D,W_X,X,Z,D
  1. csv of all turns (sequence of 3 nodes) within the network. This is useful for creating a file of target turning volumes for OD matrix estimation.

a_node,b_node,c_node
A,W,B
A,W,X
A,W,Y
...