1 package org.opentrafficsim.draw.graphs;
2
3 import java.util.ArrayList;
4 import java.util.Arrays;
5 import java.util.LinkedHashMap;
6 import java.util.LinkedHashSet;
7 import java.util.List;
8 import java.util.Map;
9 import java.util.Set;
10
11 import org.djunits.unit.SpeedUnit;
12 import org.djunits.value.vdouble.scalar.Duration;
13 import org.djunits.value.vdouble.scalar.Length;
14 import org.djunits.value.vdouble.scalar.Speed;
15 import org.djunits.value.vdouble.scalar.Time;
16 import org.djutils.exceptions.Throw;
17 import org.djutils.logger.CategoryLogger;
18 import org.opentrafficsim.core.egtf.Converter;
19 import org.opentrafficsim.core.egtf.DataSource;
20 import org.opentrafficsim.core.egtf.DataStream;
21 import org.opentrafficsim.core.egtf.EGTF;
22 import org.opentrafficsim.core.egtf.EgtfEvent;
23 import org.opentrafficsim.core.egtf.EgtfListener;
24 import org.opentrafficsim.core.egtf.Filter;
25 import org.opentrafficsim.core.egtf.Quantity;
26 import org.opentrafficsim.core.egtf.typed.TypedQuantity;
27 import org.opentrafficsim.draw.graphs.GraphPath.Section;
28 import org.opentrafficsim.kpi.interfaces.GtuDataInterface;
29 import org.opentrafficsim.kpi.sampling.KpiLaneDirection;
30 import org.opentrafficsim.kpi.sampling.Sampler;
31 import org.opentrafficsim.kpi.sampling.Trajectory;
32 import org.opentrafficsim.kpi.sampling.Trajectory.SpaceTimeView;
33 import org.opentrafficsim.kpi.sampling.TrajectoryGroup;
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50 public class ContourDataSource<G extends GtuDataInterface>
51 {
52
53
54
55
56
57
58 protected static final double[] DEFAULT_SPACE_GRANULARITIES = {10, 20, 50, 100, 200, 500, 1000};
59
60
61 protected static final int DEFAULT_SPACE_GRANULARITY_INDEX = 3;
62
63
64 protected static final double[] DEFAULT_TIME_GRANULARITIES = {1, 2, 5, 10, 20, 30, 60, 120, 300, 600};
65
66
67 protected static final int DEFAULT_TIME_GRANULARITY_INDEX = 3;
68
69
70 protected static final Time DEFAULT_LOWER_TIME_BOUND = Time.ZERO;
71
72
73
74
75
76
77 private static final int KERNEL_FACTOR = 5;
78
79
80 private static final Length SIGMA = Length.instantiateSI(300);
81
82
83 private static final Duration TAU = Duration.instantiateSI(30);
84
85
86 private static final Speed MAX_C_FREE = new Speed(80.0, SpeedUnit.KM_PER_HOUR);
87
88
89 private static final double VC_FACRTOR = 0.8;
90
91
92 private static final Speed C_CONG = new Speed(-18.0, SpeedUnit.KM_PER_HOUR);
93
94
95 private static final Speed DELTA_V = new Speed(10.0, SpeedUnit.KM_PER_HOUR);
96
97
98
99
100
101
102 private final Sampler<G> sampler;
103
104
105 private final Duration updateInterval;
106
107
108 private final Duration delay;
109
110
111 private final GraphPath<KpiLaneDirection> path;
112
113
114 final Axis spaceAxis;
115
116
117 final Axis timeAxis;
118
119
120 private Set<AbstractContourPlot<?>> plots = new LinkedHashSet<>();
121
122
123
124
125
126
127 private float[][] distance;
128
129
130 private float[][] time;
131
132
133 private final Map<ContourDataType<?, ?>, float[][]> additionalData = new LinkedHashMap<>();
134
135
136
137
138
139
140 private Speed cFree;
141
142
143 private Speed vc;
144
145
146 private EGTF egtf;
147
148
149 private DataStream<Speed> speedStream;
150
151
152 private DataStream<Duration> travelTimeStream;
153
154
155 private DataStream<Length> travelDistanceStream;
156
157
158 private final Quantity<Duration, double[][]> travelTimeQuantity = new Quantity<>("travel time", Converter.SI);
159
160
161 private final Quantity<Length, double[][]> travelDistanceQuantity = new Quantity<>("travel distance", Converter.SI);
162
163
164 private Map<ContourDataType<?, ?>, DataStream<?>> additionalStreams = new LinkedHashMap<>();
165
166
167
168
169
170
171 private final GraphUpdater<Time> graphUpdater;
172
173
174 private boolean redo = true;
175
176
177 private Time toTime;
178
179
180 private int readyItems = -1;
181
182
183 private Double desiredSpaceGranularity = null;
184
185
186 private Double desiredTimeGranularity = null;
187
188
189 private boolean smooth = false;
190
191
192
193
194
195
196
197
198
199
200 public ContourDataSource(final Sampler<G> sampler, final GraphPath<KpiLaneDirection> path)
201 {
202 this(sampler, Duration.instantiateSI(1.0), path, DEFAULT_SPACE_GRANULARITIES, DEFAULT_SPACE_GRANULARITY_INDEX,
203 DEFAULT_TIME_GRANULARITIES, DEFAULT_TIME_GRANULARITY_INDEX, DEFAULT_LOWER_TIME_BOUND,
204 AbstractPlot.DEFAULT_INITIAL_UPPER_TIME_BOUND);
205 }
206
207
208
209
210
211
212
213
214
215
216
217
218
219 @SuppressWarnings("parameternumber")
220 public ContourDataSource(final Sampler<G> sampler, final Duration delay, final GraphPath<KpiLaneDirection> path,
221 final double[] spaceGranularity, final int initSpaceIndex, final double[] timeGranularity, final int initTimeIndex,
222 final Time start, final Time initialEnd)
223 {
224 this.sampler = sampler;
225 this.updateInterval = Duration.instantiateSI(timeGranularity[initTimeIndex]);
226 this.delay = delay;
227 this.path = path;
228 this.spaceAxis = new Axis(0.0, path.getTotalLength().si, spaceGranularity[initSpaceIndex], spaceGranularity);
229 this.timeAxis = new Axis(start.si, initialEnd.si, timeGranularity[initTimeIndex], timeGranularity);
230
231
232 this.cFree = Speed.min(path.getSpeedLimit(), MAX_C_FREE);
233 this.vc = Speed.min(path.getSpeedLimit().times(VC_FACRTOR), MAX_C_FREE);
234
235
236 this.graphUpdater = new GraphUpdater<>("Contour Data Source worker", Thread.currentThread(), (t) -> update(t));
237 }
238
239
240
241
242
243
244
245
246
247 public final Sampler<G> getSampler()
248 {
249 return this.sampler;
250 }
251
252
253
254
255
256 final Duration getUpdateInterval()
257 {
258 return this.updateInterval;
259 }
260
261
262
263
264
265 final Duration getDelay()
266 {
267 return this.delay;
268 }
269
270
271
272
273
274 final GraphPath<KpiLaneDirection> getPath()
275 {
276 return this.path;
277 }
278
279
280
281
282
283 final void registerContourPlot(final AbstractContourPlot<?> contourPlot)
284 {
285 ContourDataType<?, ?> contourDataType = contourPlot.getContourDataType();
286 if (contourDataType != null)
287 {
288 this.additionalData.put(contourDataType, null);
289 }
290 this.plots.add(contourPlot);
291 }
292
293
294
295
296
297
298 final int getBinCount(final Dimension dimension)
299 {
300 return dimension.getAxis(this).getBinCount();
301 }
302
303
304
305
306
307
308
309 final synchronized double getBinSize(final Dimension dimension, final int item)
310 {
311 int n = dimension.equals(Dimension.DISTANCE) ? getSpaceBin(item) : getTimeBin(item);
312 double[] ticks = dimension.getAxis(this).getTicks();
313 return ticks[n + 1] - ticks[n];
314 }
315
316
317
318
319
320
321
322 final double getAxisValue(final Dimension dimension, final int item)
323 {
324 if (dimension.equals(Dimension.DISTANCE))
325 {
326 return this.spaceAxis.getBinValue(getSpaceBin(item));
327 }
328 return this.timeAxis.getBinValue(getTimeBin(item));
329 }
330
331
332
333
334
335
336
337 final int getAxisBin(final Dimension dimension, final double value)
338 {
339 if (dimension.equals(Dimension.DISTANCE))
340 {
341 return this.spaceAxis.getValueBin(value);
342 }
343 return this.timeAxis.getValueBin(value);
344 }
345
346
347
348
349
350
351 @SuppressWarnings("synthetic-access")
352 public final double[] getGranularities(final Dimension dimension)
353 {
354 return dimension.getAxis(this).granularities;
355 }
356
357
358
359
360
361
362 @SuppressWarnings("synthetic-access")
363 public final double getGranularity(final Dimension dimension)
364 {
365 return dimension.getAxis(this).granularity;
366 }
367
368
369
370
371
372 @SuppressWarnings("synthetic-access")
373 final synchronized void increaseTime(final Time updateTime)
374 {
375 if (updateTime.si > this.timeAxis.maxValue)
376 {
377 this.timeAxis.setMaxValue(updateTime.si);
378 for (AbstractContourPlot<?> plot : this.plots)
379 {
380 plot.setUpperDomainBound(updateTime.si);
381 }
382 }
383 if (this.toTime == null || updateTime.si > this.toTime.si)
384 {
385 invalidate(updateTime);
386 }
387 }
388
389
390
391
392
393
394 public final synchronized void setGranularity(final Dimension dimension, final double granularity)
395 {
396 if (dimension.equals(Dimension.DISTANCE))
397 {
398 this.desiredSpaceGranularity = granularity;
399 for (AbstractContourPlot<?> contourPlot : ContourDataSource.this.plots)
400 {
401 contourPlot.setSpaceGranularity(granularity);
402 }
403 }
404 else
405 {
406 this.desiredTimeGranularity = granularity;
407 for (AbstractContourPlot<?> contourPlot : ContourDataSource.this.plots)
408 {
409 contourPlot.setUpdateInterval(Duration.instantiateSI(granularity));
410 contourPlot.setTimeGranularity(granularity);
411 }
412 }
413 invalidate(null);
414 }
415
416
417
418
419
420 public final void setInterpolate(final boolean interpolate)
421 {
422 if (this.timeAxis.interpolate != interpolate)
423 {
424 synchronized (this)
425 {
426 this.timeAxis.setInterpolate(interpolate);
427 this.spaceAxis.setInterpolate(interpolate);
428 for (AbstractContourPlot<?> contourPlot : ContourDataSource.this.plots)
429 {
430 contourPlot.setInterpolation(interpolate);
431 }
432 invalidate(null);
433 }
434 }
435 }
436
437
438
439
440
441 public final void setSmooth(final boolean smooth)
442 {
443 if (this.smooth != smooth)
444 {
445 synchronized (this)
446 {
447 this.smooth = smooth;
448 for (AbstractContourPlot<?> contourPlot : ContourDataSource.this.plots)
449 {
450 System.out.println("not notifying plot " + contourPlot);
451
452 }
453 invalidate(null);
454 }
455 }
456 }
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473 private synchronized void invalidate(final Time t)
474 {
475 if (t != null)
476 {
477 this.toTime = t;
478 }
479 else
480 {
481 this.redo = true;
482 }
483 if (this.toTime != null)
484 {
485
486
487 this.graphUpdater.offer(this.toTime);
488 }
489 }
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506 @SuppressWarnings({"synthetic-access", "methodlength"})
507 private void update(final Time t)
508 {
509 Throw.when(this.plots.isEmpty(), IllegalStateException.class, "ContourDataSource is used, but not by a contour plot!");
510
511 if (t.si < this.toTime.si)
512 {
513
514 return;
515 }
516
517
518
519
520
521
522 boolean redo0;
523 boolean smooth0;
524 boolean interpolate0;
525 double timeGranularity;
526 double spaceGranularity;
527 double[] spaceTicks;
528 double[] timeTicks;
529 int fromSpaceIndex = 0;
530 int fromTimeIndex = 0;
531 int toTimeIndex;
532 double tFromEgtf = 0;
533 int nFromEgtf = 0;
534 synchronized (this)
535 {
536
537 redo0 = this.redo;
538 smooth0 = this.smooth;
539 interpolate0 = this.timeAxis.interpolate;
540
541 if (this.desiredTimeGranularity != null)
542 {
543 this.timeAxis.setGranularity(this.desiredTimeGranularity);
544 this.desiredTimeGranularity = null;
545 }
546 if (this.desiredSpaceGranularity != null)
547 {
548 this.spaceAxis.setGranularity(this.desiredSpaceGranularity);
549 this.desiredSpaceGranularity = null;
550 }
551 timeGranularity = this.timeAxis.granularity;
552 spaceGranularity = this.spaceAxis.granularity;
553 spaceTicks = this.spaceAxis.getTicks();
554 timeTicks = this.timeAxis.getTicks();
555 if (!redo0)
556 {
557
558 fromSpaceIndex = getSpaceBin(this.readyItems + 1);
559 fromTimeIndex = getTimeBin(this.readyItems + 1);
560 }
561 toTimeIndex = ((int) (t.si / timeGranularity)) - (interpolate0 ? 0 : 1);
562 if (smooth0)
563 {
564
565 tFromEgtf = this.timeAxis.getBinValue(redo0 ? 0 : this.timeAxis.getValueBin(
566 this.timeAxis.getBinValue(fromTimeIndex) - Math.max(TAU.si, timeGranularity / 2) * KERNEL_FACTOR));
567 nFromEgtf = this.timeAxis.getValueBin(tFromEgtf);
568 }
569
570 this.redo = false;
571 }
572
573
574 if (redo0)
575 {
576 this.readyItems = -1;
577
578
579 int nSpace = spaceTicks.length - 1;
580 int nTime = timeTicks.length - 1;
581 this.distance = new float[nSpace][nTime];
582 this.time = new float[nSpace][nTime];
583 for (ContourDataType<?, ?> contourDataType : this.additionalData.keySet())
584 {
585 this.additionalData.put(contourDataType, new float[nSpace][nTime]);
586 }
587
588
589 if (smooth0)
590 {
591
592 this.egtf = new EGTF(C_CONG.si, this.cFree.si, DELTA_V.si, this.vc.si);
593
594
595 DataSource generic = this.egtf.getDataSource("generic");
596 generic.addStream(TypedQuantity.SPEED, Speed.instantiateSI(1.0), Speed.instantiateSI(1.0));
597 generic.addStreamSI(this.travelTimeQuantity, 1.0, 1.0);
598 generic.addStreamSI(this.travelDistanceQuantity, 1.0, 1.0);
599 this.speedStream = generic.getStream(TypedQuantity.SPEED);
600 this.travelTimeStream = generic.getStream(this.travelTimeQuantity);
601 this.travelDistanceStream = generic.getStream(this.travelDistanceQuantity);
602 for (ContourDataType<?, ?> contourDataType : this.additionalData.keySet())
603 {
604 this.additionalStreams.put(contourDataType, generic.addStreamSI(contourDataType.getQuantity(), 1.0, 1.0));
605 }
606
607
608 double tau2 = Math.max(TAU.si, timeGranularity / 2);
609 double sigma2 = Math.max(SIGMA.si, spaceGranularity / 2);
610
611 this.egtf.setGaussKernelSI(sigma2 * KERNEL_FACTOR, tau2 * KERNEL_FACTOR, sigma2, tau2);
612
613
614 this.egtf.addListener(new EgtfListener()
615 {
616
617 @Override
618 public void notifyProgress(final EgtfEvent event)
619 {
620
621 if (ContourDataSource.this.redo)
622 {
623
624 event.interrupt();
625 setStatusLabel(" ");
626 return;
627 }
628 String status =
629 event.getProgress() >= 1.0 ? " " : String.format("ASM at %.2f%%", event.getProgress() * 100);
630 setStatusLabel(status);
631 }
632 });
633 }
634 }
635
636
637 if (!smooth0)
638 {
639
640 this.egtf = null;
641 this.speedStream = null;
642 this.travelTimeStream = null;
643 this.travelDistanceStream = null;
644 this.additionalStreams.clear();
645 }
646
647
648 for (int i = 0; i < this.distance.length; i++)
649 {
650 this.distance[i] = GraphUtil.ensureCapacity(this.distance[i], toTimeIndex + 1);
651 this.time[i] = GraphUtil.ensureCapacity(this.time[i], toTimeIndex + 1);
652 for (float[][] additional : this.additionalData.values())
653 {
654 additional[i] = GraphUtil.ensureCapacity(additional[i], toTimeIndex + 1);
655 }
656 }
657
658
659 for (int j = fromTimeIndex; j <= toTimeIndex; j++)
660 {
661 Time tFrom = Time.instantiateSI(timeTicks[j]);
662 Time tTo = Time.instantiateSI(timeTicks[j + 1]);
663
664
665
666 for (int i = fromSpaceIndex; i < spaceTicks.length - 1; i++)
667 {
668
669 if ((j == 0 || i == 0) && interpolate0)
670 {
671 this.distance[i][j] = Float.NaN;
672 this.time[i][j] = Float.NaN;
673 this.readyItems++;
674 continue;
675 }
676
677
678 fromSpaceIndex = 0;
679 Length xFrom = Length.instantiateSI(spaceTicks[i]);
680 Length xTo = Length.instantiateSI(Math.min(spaceTicks[i + 1], this.path.getTotalLength().si));
681
682
683 double totalDistance = 0.0;
684 double totalTime = 0.0;
685 Map<ContourDataType<?, ?>, Object> additionalIntermediate = new LinkedHashMap<>();
686 for (ContourDataType<?, ?> contourDataType : this.additionalData.keySet())
687 {
688 additionalIntermediate.put(contourDataType, contourDataType.identity());
689 }
690
691
692 for (int series = 0; series < this.path.getNumberOfSeries(); series++)
693 {
694
695 List<TrajectoryGroup<?>> trajectories = new ArrayList<>();
696 for (Section<KpiLaneDirection> section : getPath().getSections())
697 {
698 trajectories.add(this.sampler.getTrajectoryGroup(section.getSource(series)));
699 }
700
701
702 List<TrajectoryGroup<?>> included = new ArrayList<>();
703 List<Length> xStart = new ArrayList<>();
704 List<Length> xEnd = new ArrayList<>();
705 for (int k = 0; k < trajectories.size(); k++)
706 {
707 TrajectoryGroup<?> trajectoryGroup = trajectories.get(k);
708 KpiLaneDirection lane = trajectoryGroup.getLaneDirection();
709 Length startDistance = this.path.getStartDistance(this.path.get(k));
710 if (startDistance.si + this.path.get(k).getLength().si > spaceTicks[i]
711 && startDistance.si < spaceTicks[i + 1])
712 {
713 included.add(trajectoryGroup);
714 double scale = this.path.get(k).getLength().si / lane.getLaneData().getLength().si;
715
716 xStart.add(Length.max(xFrom.minus(startDistance).divide(scale), Length.ZERO));
717 xEnd.add(Length.min(xTo.minus(startDistance).divide(scale),
718 trajectoryGroup.getLaneDirection().getLaneData().getLength()));
719 }
720 }
721
722
723 for (int k = 0; k < included.size(); k++)
724 {
725 TrajectoryGroup<?> trajectoryGroup = included.get(k);
726 for (Trajectory<?> trajectory : trajectoryGroup.getTrajectories())
727 {
728
729
730 if (GraphUtil.considerTrajectory(trajectory, tFrom, tTo))
731 {
732
733 SpaceTimeView spaceTimeView;
734 try
735 {
736 spaceTimeView = trajectory.getSpaceTimeView(xStart.get(k), xEnd.get(k), tFrom, tTo);
737 }
738 catch (IllegalArgumentException exception)
739 {
740 CategoryLogger.always().debug(exception,
741 "Unable to generate space-time view from x = {} to {} and t = {} to {}.",
742 xStart.get(k), xEnd.get(k), tFrom, tTo);
743 continue;
744 }
745 totalDistance += spaceTimeView.getDistance().si;
746 totalTime += spaceTimeView.getTime().si;
747 }
748 }
749 }
750
751
752 for (ContourDataType<?, ?> contourDataType : this.additionalData.keySet())
753 {
754 addAdditional(additionalIntermediate, contourDataType, included, xStart, xEnd, tFrom, tTo);
755 }
756
757 }
758
759
760 double norm = spaceGranularity / (xTo.si - xFrom.si) / this.path.getNumberOfSeries();
761 totalDistance *= norm;
762 totalTime *= norm;
763 this.distance[i][j] = (float) totalDistance;
764 this.time[i][j] = (float) totalTime;
765 for (ContourDataType<?, ?> contourDataType : this.additionalData.keySet())
766 {
767 this.additionalData.get(contourDataType)[i][j] =
768 finalizeAdditional(additionalIntermediate, contourDataType);
769 }
770
771
772 if (smooth0)
773 {
774
775 double xDat = (xFrom.si + xTo.si) / 2.0;
776 double tDat = (tFrom.si + tTo.si) / 2.0;
777
778 this.egtf.addPointDataSI(this.speedStream, xDat, tDat, totalDistance / totalTime);
779 this.egtf.addPointDataSI(this.travelDistanceStream, xDat, tDat, totalDistance);
780 this.egtf.addPointDataSI(this.travelTimeStream, xDat, tDat, totalTime);
781 for (ContourDataType<?, ?> contourDataType : this.additionalStreams.keySet())
782 {
783 ContourDataSource.this.egtf.addPointDataSI(
784 ContourDataSource.this.additionalStreams.get(contourDataType), xDat, tDat,
785 this.additionalData.get(contourDataType)[i][j]);
786 }
787 }
788
789
790 if (this.redo)
791 {
792
793 return;
794 }
795
796
797 this.readyItems++;
798 }
799
800
801 this.plots.forEach((plot) -> plot.notifyPlotChange());
802 }
803
804
805 if (smooth0)
806 {
807 Set<Quantity<?, ?>> quantities = new LinkedHashSet<>();
808 quantities.add(this.travelDistanceQuantity);
809 quantities.add(this.travelTimeQuantity);
810 for (ContourDataType<?, ?> contourDataType : this.additionalData.keySet())
811 {
812 quantities.add(contourDataType.getQuantity());
813 }
814 Filter filter = this.egtf.filterFastSI(spaceTicks[0] + 0.5 * spaceGranularity, spaceGranularity,
815 spaceTicks[0] + (-1.5 + spaceTicks.length) * spaceGranularity, tFromEgtf, timeGranularity, t.si,
816 quantities.toArray(new Quantity<?, ?>[quantities.size()]));
817 if (filter != null)
818 {
819 overwriteSmoothed(this.distance, nFromEgtf, filter.getSI(this.travelDistanceQuantity));
820 overwriteSmoothed(this.time, nFromEgtf, filter.getSI(this.travelTimeQuantity));
821 for (ContourDataType<?, ?> contourDataType : this.additionalData.keySet())
822 {
823 overwriteSmoothed(this.additionalData.get(contourDataType), nFromEgtf,
824 filter.getSI(contourDataType.getQuantity()));
825 }
826 this.plots.forEach((plot) -> plot.notifyPlotChange());
827 }
828 }
829 }
830
831
832
833
834
835
836
837
838
839
840
841
842 @SuppressWarnings("unchecked")
843 private <I> void addAdditional(final Map<ContourDataType<?, ?>, Object> additionalIntermediate,
844 final ContourDataType<?, ?> contourDataType, final List<TrajectoryGroup<?>> included, final List<Length> xStart,
845 final List<Length> xEnd, final Time tFrom, final Time tTo)
846 {
847 additionalIntermediate.put(contourDataType, ((ContourDataType<?, I>) contourDataType)
848 .processSeries((I) additionalIntermediate.get(contourDataType), included, xStart, xEnd, tFrom, tTo));
849 }
850
851
852
853
854
855
856
857
858 @SuppressWarnings("unchecked")
859 private <I> float finalizeAdditional(final Map<ContourDataType<?, ?>, Object> additionalIntermediate,
860 final ContourDataType<?, ?> contourDataType)
861 {
862 return ((ContourDataType<?, I>) contourDataType).finalize((I) additionalIntermediate.get(contourDataType)).floatValue();
863 }
864
865
866
867
868
869
870
871 private void overwriteSmoothed(final float[][] raw, final int rawCol, final double[][] smoothed)
872 {
873 for (int i = 0; i < raw.length; i++)
874 {
875
876 for (int j = 0; j < smoothed[i].length; j++)
877 {
878 raw[i][j + rawCol] = (float) smoothed[i][j];
879 }
880 }
881 }
882
883
884
885
886
887 private void setStatusLabel(final String status)
888 {
889 for (AbstractContourPlot<?> plot : ContourDataSource.this.plots)
890 {
891
892 }
893 }
894
895
896
897
898
899
900
901
902
903
904 public double getSpeed(final int item)
905 {
906 if (item > this.readyItems)
907 {
908 return Double.NaN;
909 }
910 return getTotalDistance(item) / getTotalTime(item);
911 }
912
913
914
915
916
917
918 public double getTotalDistance(final int item)
919 {
920 if (item > this.readyItems)
921 {
922 return Double.NaN;
923 }
924 return this.distance[getSpaceBin(item)][getTimeBin(item)];
925 }
926
927
928
929
930
931
932 public double getTotalTime(final int item)
933 {
934 if (item > this.readyItems)
935 {
936 return Double.NaN;
937 }
938 return this.time[getSpaceBin(item)][getTimeBin(item)];
939 }
940
941
942
943
944
945
946
947 public double get(final int item, final ContourDataType<?, ?> contourDataType)
948 {
949 if (item > this.readyItems)
950 {
951 return Double.NaN;
952 }
953 return this.additionalData.get(contourDataType)[getSpaceBin(item)][getTimeBin(item)];
954 }
955
956
957
958
959
960
961 private int getTimeBin(final int item)
962 {
963 return item / this.spaceAxis.getBinCount();
964 }
965
966
967
968
969
970
971 private int getSpaceBin(final int item)
972 {
973 return item % this.spaceAxis.getBinCount();
974 }
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992 public enum Dimension
993 {
994
995 DISTANCE
996 {
997
998 @Override
999 protected Axis getAxis(final ContourDataSource<?> dataPool)
1000 {
1001 return dataPool.spaceAxis;
1002 }
1003 },
1004
1005
1006 TIME
1007 {
1008
1009 @Override
1010 protected Axis getAxis(final ContourDataSource<?> dataPool)
1011 {
1012 return dataPool.timeAxis;
1013 }
1014 };
1015
1016
1017
1018
1019
1020
1021 protected abstract Axis getAxis(ContourDataSource<?> dataPool);
1022 }
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036 static class Axis
1037 {
1038
1039 private final double minValue;
1040
1041
1042 private double maxValue;
1043
1044
1045 private double granularity;
1046
1047
1048 private final double[] granularities;
1049
1050
1051 private boolean interpolate = true;
1052
1053
1054 private double[] ticks;
1055
1056
1057
1058
1059
1060
1061
1062
1063 Axis(final double minValue, final double maxValue, final double granularity, final double[] granularities)
1064 {
1065 this.minValue = minValue;
1066 this.maxValue = maxValue;
1067 this.granularity = granularity;
1068 this.granularities = granularities;
1069 }
1070
1071
1072
1073
1074
1075 void setMaxValue(final double maxValue)
1076 {
1077 if (this.maxValue != maxValue)
1078 {
1079 this.maxValue = maxValue;
1080 this.ticks = null;
1081 }
1082 }
1083
1084
1085
1086
1087
1088 void setGranularity(final double granularity)
1089 {
1090 if (this.granularity != granularity)
1091 {
1092 this.granularity = granularity;
1093 this.ticks = null;
1094 }
1095 }
1096
1097
1098
1099
1100
1101 double[] getTicks()
1102 {
1103 if (this.ticks == null)
1104 {
1105 int n = getBinCount() + 1;
1106 this.ticks = new double[n];
1107 int di = this.interpolate ? 1 : 0;
1108 for (int i = 0; i < n; i++)
1109 {
1110 if (i == n - 1)
1111 {
1112 this.ticks[i] = Math.min((i - di) * this.granularity, this.maxValue);
1113 }
1114 else
1115 {
1116 this.ticks[i] = (i - di) * this.granularity;
1117 }
1118 }
1119 }
1120 return this.ticks;
1121 }
1122
1123
1124
1125
1126
1127 int getBinCount()
1128 {
1129 return (int) Math.ceil((this.maxValue - this.minValue) / this.granularity) + (this.interpolate ? 1 : 0);
1130 }
1131
1132
1133
1134
1135
1136
1137 double getBinValue(final int bin)
1138 {
1139 return this.minValue + (0.5 + bin - (this.interpolate ? 1 : 0)) * this.granularity;
1140 }
1141
1142
1143
1144
1145
1146
1147 int getValueBin(final double value)
1148 {
1149 getTicks();
1150 if (value > this.ticks[this.ticks.length - 1])
1151 {
1152 return this.ticks.length - 1;
1153 }
1154 int i = 0;
1155 while (i < this.ticks.length - 1 && this.ticks[i + 1] < value + 1e-9)
1156 {
1157 i++;
1158 }
1159 return i;
1160 }
1161
1162
1163
1164
1165
1166 void setInterpolate(final boolean interpolate)
1167 {
1168 if (this.interpolate != interpolate)
1169 {
1170 this.interpolate = interpolate;
1171 this.ticks = null;
1172 }
1173 }
1174
1175
1176
1177
1178
1179 public boolean isInterpolate()
1180 {
1181 return interpolate;
1182 }
1183
1184
1185 @Override
1186 public String toString()
1187 {
1188 return "Axis [minValue=" + this.minValue + ", maxValue=" + this.maxValue + ", granularity=" + this.granularity
1189 + ", granularities=" + Arrays.toString(this.granularities) + ", interpolate=" + this.interpolate
1190 + ", ticks=" + Arrays.toString(this.ticks) + "]";
1191 }
1192
1193 }
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210 public interface ContourDataType<Z extends Number, I>
1211 {
1212
1213
1214
1215
1216 I identity();
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228 I processSeries(I intermediate, List<TrajectoryGroup<?>> trajectories, List<Length> xFrom, List<Length> xTo, Time tFrom,
1229 Time tTo);
1230
1231
1232
1233
1234
1235
1236 Z finalize(I intermediate);
1237
1238
1239
1240
1241
1242 Quantity<Z, ?> getQuantity();
1243 }
1244
1245
1246 @Override
1247 public String toString()
1248 {
1249 return "ContourDataSource [sampler=" + this.sampler + ", updateInterval=" + this.updateInterval + ", delay="
1250 + this.delay + ", path=" + this.path + ", spaceAxis=" + this.spaceAxis + ", timeAxis=" + this.timeAxis
1251 + ", plots=" + this.plots + ", distance=" + Arrays.toString(this.distance) + ", time="
1252 + Arrays.toString(this.time) + ", additionalData=" + this.additionalData + ", smooth=" + this.smooth
1253 + ", cFree=" + this.cFree + ", vc=" + this.vc + ", egtf=" + this.egtf + ", speedStream=" + this.speedStream
1254 + ", travelTimeStream=" + this.travelTimeStream + ", travelDistanceStream=" + this.travelDistanceStream
1255 + ", travelTimeQuantity=" + this.travelTimeQuantity + ", travelDistanceQuantity=" + this.travelDistanceQuantity
1256 + ", additionalStreams=" + this.additionalStreams + ", graphUpdater=" + this.graphUpdater + ", redo="
1257 + this.redo + ", toTime=" + this.toTime + ", readyItems=" + this.readyItems + ", desiredSpaceGranularity="
1258 + this.desiredSpaceGranularity + ", desiredTimeGranularity=" + this.desiredTimeGranularity + "]";
1259 }
1260
1261 }