view python/tests/events.txt @ 620:aee4cbac9e0e

corrected bug to plot trajectories on world image (the norm on image coordinates seems to have changed in matplotlib)
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 09 Dec 2014 17:27:14 -0500
parents 000bddf84ad0
children 72174e66aba5
line wrap: on
line source

>>> from events import *
>>> from moving import MovingObject, TimeInterval

>>> objects = [MovingObject(num = i, timeInterval = TimeInterval(0,10)) for i in range(10)]
>>> interactions = createInteractions(objects)
>>> len([i for i in interactions if len(i.roadUserNumbers) == 1])
0
>>> objects2 = [MovingObject(num = i, timeInterval = TimeInterval(0,10)) for i in range(100, 110)]
>>> interactions = createInteractions(objects, objects2)
>>> len([i for i in interactions if len(i.roadUserNumbers) == 1])
0