Uses of Class
org.opentrafficsim.kpi.sampling.Trajectory
-
Packages that use Trajectory Package Description org.opentrafficsim.kpi.sampling Classes for sampling simulation data. -
-
Uses of Trajectory in org.opentrafficsim.kpi.sampling
Methods in org.opentrafficsim.kpi.sampling that return Trajectory Modifier and Type Method Description Trajectory<?>
TrajectoryAcceptList. getTrajectory(int i)
Trajectory<G>
Trajectory. subSet(Length startPosition, Length endPosition)
Copies the trajectory but with a subset of the data.Trajectory<G>
Trajectory. subSet(Length startPosition, Length endPosition, Time startTime, Time endTime)
Copies the trajectory but with a subset of the data.Trajectory<G>
Trajectory. subSet(Time startTime, Time endTime)
Copies the trajectory but with a subset of the data.Methods in org.opentrafficsim.kpi.sampling that return types with arguments of type Trajectory Modifier and Type Method Description List<Trajectory<G>>
TrajectoryGroup. getTrajectories()
Returns a list of trajectories.Iterator<Trajectory<?>>
TrajectoryAcceptList. getTrajectoryIterator()
Iterator<Trajectory<G>>
TrajectoryGroup. iterator()
Methods in org.opentrafficsim.kpi.sampling with parameters of type Trajectory Modifier and Type Method Description void
TrajectoryAcceptList. acceptTrajectory(Trajectory<?> trajectory)
Accept given trajectory.void
TrajectoryAcceptList. acceptTrajectory(Trajectory<?> trajectory, boolean accept)
Accept or reject given trajectory.void
TrajectoryAcceptList. addTrajectory(Trajectory<?> trajectory, TrajectoryGroup trajectoryGroup)
Adds aTrajectory
with theTrajectoryGroup
it is from to the accept list.void
TrajectoryGroup. addTrajectory(Trajectory<G> trajectory)
Add trajectory.boolean
TrajectoryGroup. contains(Trajectory<?> trajectory)
Whether thisTrajectoryGroup
holds the given trajectory.boolean
TrajectoryAcceptList. isAccepted(Trajectory<?> trajectory)
Returns whether the given trajectory is accepted or not.void
TrajectoryAcceptList. rejectTrajectory(Trajectory<?> trajectory)
Reject given trajectory.
-