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
When I used write_benchmark function to write the trips and legs from population.xml, I found the last activity for every agent’s trip was defined as None which should be home. I have checked all of the None value comes from the last trips.
An easy fix can be replacing the 'None' with 'home' in the function.
trips_input
seq purp
0 0 work
1 1 work
2 2 work
3 3 work
4 4 work
5 5 work
6 6 work
7 7 None
8 0 work
9 1 work
The text was updated successfully, but these errors were encountered:
When I used
write_benchmark
function to write the trips and legs frompopulation.xml,
I found the last activity for every agent’s trip was defined asNone
which should behome
. I have checked all of the None value comes from the last trips.An easy fix can be replacing the 'None' with 'home' in the function.
The text was updated successfully, but these errors were encountered: