Package org.opentrafficsim.core.egtf
Class DataSource
- java.lang.Object
- 
- org.opentrafficsim.core.egtf.DataSource
 
- 
 public final class DataSource extends Object Data source for the EGTF. These are obtained usingEGTF.getDataSource().Copyright (c) 2013-2022 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. 
 BSD-style license. See OpenTrafficSim License.- Version:
- $Revision$, $LastChangedDate$, by $Author$, initial version 24 okt. 2018 
- Author:
- Wouter Schakel
 
- 
- 
Constructor SummaryConstructors Constructor Description DataSource(String name)Constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends Number>
 DataStream<T>addStream(Quantity<T,?> quantity, T thetaCong, T thetaFree)Add a non-speed stream for the quantity to this data source.<T extends Number>
 DataStream<T>addStreamSI(Quantity<T,?> quantity, double thetaCong, double thetaFree)Add a stream for the quantity to this data source.booleanequals(Object obj)StringgetName()Returns the name.<T extends Number>
 DataStream<T>getStream(Quantity<T,?> quantity)Get a stream for the quantity of this data source.inthashCode()StringtoString()
 
- 
- 
- 
Constructor Detail- 
DataSourceDataSource(String name) Constructor.- Parameters:
- name- String; unique name
 
 
- 
 - 
Method Detail- 
getNamepublic String getName() Returns the name.- Returns:
- String; name
 
 - 
addStreampublic <T extends Number> DataStream<T> addStream(Quantity<T,?> quantity, T thetaCong, T thetaFree) Add a non-speed stream for the quantity to this data source.- Type Parameters:
- T- implicit data type
- Parameters:
- quantity- Quantity<T, ?>; quantity
- thetaCong- T; standard deviation of this quantity of measurements in congestion by this data source
- thetaFree- T; standard deviation of this quantity of measurements in free flow by this data source
- Returns:
- DataStream; the created data stream
- Throws:
- IllegalArgumentException- if the quantity is speed
 
 - 
addStreamSIpublic <T extends Number> DataStream<T> addStreamSI(Quantity<T,?> quantity, double thetaCong, double thetaFree) Add a stream for the quantity to this data source.- Type Parameters:
- T- implicit data type
- Parameters:
- quantity- Quantity<T, ?>; quantity
- thetaCong- double; standard deviation of this quantity of measurements in congestion by this data source in SI
- thetaFree- double; standard deviation of this quantity of measurements in free flow by this data source in SI
- Returns:
- DataStream; the created data stream
 
 - 
getStreampublic <T extends Number> DataStream<T> getStream(Quantity<T,?> quantity) Get a stream for the quantity of this data source. If no stream has been created, one will be created with 1.0 standard deviation.- Type Parameters:
- T- implicit data type
- Parameters:
- quantity- Quantity<T, ?>; quantity
- Returns:
- DataStream<T>; stream for the quantity of this data source
 
 
- 
 
-