Do the lines need to be in time order? e.g.
#node time(s) x y
0 1.1 50.26 139.3
1 1.1 55.26 144.3
0 1.3 60.26 153.1
1 1.3 65.26 158.1 ...
I've only done single-node movement myself, but that's what I'd guess based on the error you're getting.
Hi everyone,
I have been able to incorporate the mobility plugin with Cooja and am able to make a single node traverse a particular path (via specifying the time instants and coordinate positions in the 'positions.dat' file).
I now wish to enable two or more nodes to move simultaneously along different paths.
Is this possible in Cooja? I have tried to write the contents of the positions.dat file in the following manner to achieve it but either only one node would move at a time or the 'java.lang.RuntimeException: Next event is in the past' error is encountered.
#node time(s) x y
0 1.1 50.26 139.3
0 1.3 60.26 153.1
0 1.5 70.26 174.1
0 1.7 50.26 139.3
1 1.1 55.26 144.3
1 1.3 65.26 158.1
1 1.5.26 179.1
1 1.7 85.26 144.3
Any information regarding the above would be highly appreciated.