Uses of Class
org.opentrafficsim.draw.egtf.DataStream
Packages that use DataStream
Package
Description
Contains classes to use the Extended Generalized Treiber-Helbing Filter, which is equal to the Adaptive Smoothing Method if a
single data source is used.
Contains extensions of the EGTF classes with strongly typed parameters.
-
Uses of DataStream in org.opentrafficsim.draw.egtf
Methods in org.opentrafficsim.draw.egtf that return DataStreamModifier and TypeMethodDescription<T extends Number>
DataStream<T>Add a non-speed stream for the quantity to this data source.<T extends Number>
DataStream<T>DataSource.addStreamSI(Quantity<T, ?> quantity, double thetaCong, double thetaFree) Add a stream for the quantity to this data source.<T extends Number>
DataStream<T>Get a stream for the quantity of this data source.Methods in org.opentrafficsim.draw.egtf with parameters of type DataStreamModifier and TypeMethodDescriptionvoidEgtf.addGridDataSI(DataStream<?> dataStream, double[] location, double[] time, double[][] values) Adds grid data.voidEgtf.addPointDataSI(DataStream<?> dataStream, double location, double time, double value) Adds point data.voidEgtf.addVectorDataSI(DataStream<?> dataStream, double[] location, double[] time, double[] values) Adds vector data. -
Uses of DataStream in org.opentrafficsim.draw.egtf.typed
Methods in org.opentrafficsim.draw.egtf.typed with parameters of type DataStreamModifier and TypeMethodDescriptionTypedEgtf.addGridData(DataStream<Z> dataStream, LengthVector location, DurationVector time, DoubleMatrix<U, ?, ?, ?> values) Adds grid data.TypedEgtf.addPointData(DataStream<Z> dataStream, Length location, Duration time, Z value) Adds point data.TypedEgtf.addVectorData(DataStream<Z> dataStream, LengthVector location, DurationVector time, DoubleVector<U, ?, ?> values) Adds vector data.