You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The shortest travel time is computed with the `cppRouting` function `get_distance_matrix`. In order to compute multiple distances from one source, original uni-directional Dijkstra algorithm is ran without early stopping.
1218
-
We compute travel time from all commune nodes to all maternity ward nodes (i.e ~36000\*400 distances).
1216
+
**Shortest travel time matrix**
1217
+
1218
+
The shortest travel time is computed with the `cppRouting` function `get_distance_matrix`.
1219
+
We compute travel time from all commune nodes to all maternity ward nodes (i.e ~36000\*400 distances). Since the matrix is quite rectangular (factor of ~100), we use PHAST algorithm on the contracted graph.
0 commit comments