Gabriel,
You stumbled upon a REALLY nasty bug in the underlying AequilibraE library (the Python side) where the order of the centroids as added to the network matter. Something silly and that should not be there.
If you want to take a chance at a quick local fix before a new version is available, this is the deal (assuming you are using Windows):
1. Go to the Python file at C:\Users\HOUR_USER_NAME\AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins\AequilibraE-GUI\aequilibrae\aequilibrae\project\network\network.py
And replace line 281
it is
curr.execute('select node_id from nodes where is_centroid=1;')
It should be
curr.execute('select node_id from nodes where is_centroid=1 order by node_id;')
I am filling that bug report to fix in the underlying library and it would be in the next QGIS version (around the new year).
Cheers,
Pedro
PS - You also have a problem with node connectivity for your zone 200, as your modes moto and car are not allowed through the connector...
---- On Tue, 13 Oct 2020 05:39:50 +1000
Gabriel Mormilho <gmor...@gmail.com> wrote ----