You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you tell me where could I find the definition of Trajdata? Because based on the hints below, we could find the explicit definitions of Trajdata. But I could not find it in AutomotiveDrivingModels.jl/src/simulation/.
The resulting files can then be loaded into a Julia program as Trajdata, a type defined in AutomotiveDrivingModels.jl. See jnotebooks/Demo.ipynb for example usage.
Trajdata was an alias to ListRecord, a container used to store a sequence of scenes. For the NGSIM data case, it was used as a means to read in the vehicle trajectory information from the NGSIM provided files, in a format that was then amenable to being replayed using AutomotiveDrivingModels and visualized using AutoViz. As Maxime mentioned, the same functionality can be replicated by using Vector{Scene}. Here is an example of doing that for another dataset, called the interaction dataset.
Could you tell me where could I find the definition of
Trajdata
? Because based on the hints below, we could find the explicit definitions of Trajdata. But I could not find it inAutomotiveDrivingModels.jl/src/simulation/
.In the file https://github.com/sisl/NGSIM.jl/blob/83378b59f8f766ad30be87a9ddba0ead1de9562a/src/trajdata.jl#L201
The
NGSIMTrajdata
is converted toTrajdata
. Could you tell me why should we do that? BTW, could you tell me what is the difference between NGSIMTrajdata and Trajdata? I could find the definition of NGSIMTrajdata.The text was updated successfully, but these errors were encountered: