opendilab/DOS

DOS_X_town05.json

Opened this issue · 2 comments

a1wj1 commented

Hello, may I ask what content is saved in this file? For example, what does “available_event_configurations” mean, and what does each “transform” mean?Thank you!

Hi!
These concepts are complex and difficult to explain in few words:
available_event_configurations is just a key name, its value is all the trigger points.
transform means a trigger location. When the ego car arrive at the trigger location, the scenario will start.

If you want to know more details or edit the scenario, i have some suggestions:

  1. You can get the mapping from scenario_name to scenario_class here:
    NUMBER_CLASS_TRANSLATION = {
  2. Then you can dig in each scenario class and get more details. For example, this class (
    class CuttingInStationaryObject(BasicScenario):
    ) define the behavior of DOS_01.
a1wj1 commented

Thanks!