Mercurial > hg > nsaunier > traffic-intelligence
view python/tests/indicators.txt @ 286:fa95796a76b3
simplified indicators (only non-measured values, whether measurable or not)
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Sun, 27 Jan 2013 00:22:55 -0500 |
| parents | 5957aa1d69e1 |
| children | 66691c06928c |
line wrap: on
line source
>>> from indicators import * >>> from moving import TimeInterval,Trajectory >>> indic1 = TemporalIndicator('bla', [0,3,-4], TimeInterval(4,6)) >>> indic1.empty() False >>> indic1.valueAtInstant(5) 3 >>> indic1.valueAtInstant(3) >>> indic1[1] 3 >>> indic1[5] >>> [v for v in indic1] [0, 3, -4] >>> indic1 = TemporalIndicator('bla', {2:0,4:3,5:-5}) >>> indic1.valueAtInstant(4) 3 >>> indic1.valueAtInstant(3) >>> indic1[2] -5 >>> t1 = Trajectory([[0.5,1.5,2.5],[0.5,3.5,6.5]]) >>> indicatorMap([1,2,3], t1, 1) {(1.0, 3.0): 2.0, (2.0, 6.0): 3.0, (0.0, 0.0): 1.0} >>> indicatorMap([1,2,3], t1, 4) {(0.0, 1.0): 3.0, (0.0, 0.0): 1.5}
