├── .gitignore ├── LICENSE ├── README.md ├── Tutorial 1 Scenario category.ipynb ├── Tutorial 2 Scenario.ipynb ├── Tutorial 3 Scenario from data.ipynb ├── Tutorial 4 Scenario database.ipynb ├── Tutorial 5 Scenario category including I2V communication.ipynb ├── _config.yml ├── domain_model ├── __init__.py ├── activity.py ├── activity_category.py ├── actor.py ├── actor_category.py ├── document_management.py ├── event.py ├── model.py ├── physical_element.py ├── physical_element_category.py ├── qualitative_element.py ├── quantitative_element.py ├── scenario.py ├── scenario_category.py ├── scenario_element.py ├── state.py ├── state_variable.py ├── tags.py ├── time_interval.py └── type_checking.py ├── examples ├── cutin_left_qualitative.json ├── cutin_qualitative.json ├── cutin_quantitative.json ├── data_cutin_scenario.csv ├── i2v_quantitative.json ├── images │ ├── cut-in.png │ ├── i2v.png │ ├── low speed curve1.pdf │ ├── low speed curve2.pdf │ ├── pedestrian_crossing.pdf │ └── pedestrian_zebra.png ├── low_speed_curve.py ├── lvd_scenarios.json ├── overtaking_with_vehicle_in_front.json ├── overtaking_with_vehicle_in_front.py └── pedestrian_crossing.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial 1 Scenario category.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/Tutorial 1 Scenario category.ipynb -------------------------------------------------------------------------------- /Tutorial 2 Scenario.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/Tutorial 2 Scenario.ipynb -------------------------------------------------------------------------------- /Tutorial 3 Scenario from data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/Tutorial 3 Scenario from data.ipynb -------------------------------------------------------------------------------- /Tutorial 4 Scenario database.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/Tutorial 4 Scenario database.ipynb -------------------------------------------------------------------------------- /Tutorial 5 Scenario category including I2V communication.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/Tutorial 5 Scenario category including I2V communication.ipynb -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/_config.yml -------------------------------------------------------------------------------- /domain_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/__init__.py -------------------------------------------------------------------------------- /domain_model/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/activity.py -------------------------------------------------------------------------------- /domain_model/activity_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/activity_category.py -------------------------------------------------------------------------------- /domain_model/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/actor.py -------------------------------------------------------------------------------- /domain_model/actor_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/actor_category.py -------------------------------------------------------------------------------- /domain_model/document_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/document_management.py -------------------------------------------------------------------------------- /domain_model/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/event.py -------------------------------------------------------------------------------- /domain_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/model.py -------------------------------------------------------------------------------- /domain_model/physical_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/physical_element.py -------------------------------------------------------------------------------- /domain_model/physical_element_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/physical_element_category.py -------------------------------------------------------------------------------- /domain_model/qualitative_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/qualitative_element.py -------------------------------------------------------------------------------- /domain_model/quantitative_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/quantitative_element.py -------------------------------------------------------------------------------- /domain_model/scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/scenario.py -------------------------------------------------------------------------------- /domain_model/scenario_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/scenario_category.py -------------------------------------------------------------------------------- /domain_model/scenario_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/scenario_element.py -------------------------------------------------------------------------------- /domain_model/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/state.py -------------------------------------------------------------------------------- /domain_model/state_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/state_variable.py -------------------------------------------------------------------------------- /domain_model/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/tags.py -------------------------------------------------------------------------------- /domain_model/time_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/time_interval.py -------------------------------------------------------------------------------- /domain_model/type_checking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/domain_model/type_checking.py -------------------------------------------------------------------------------- /examples/cutin_left_qualitative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/cutin_left_qualitative.json -------------------------------------------------------------------------------- /examples/cutin_qualitative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/cutin_qualitative.json -------------------------------------------------------------------------------- /examples/cutin_quantitative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/cutin_quantitative.json -------------------------------------------------------------------------------- /examples/data_cutin_scenario.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/data_cutin_scenario.csv -------------------------------------------------------------------------------- /examples/i2v_quantitative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/i2v_quantitative.json -------------------------------------------------------------------------------- /examples/images/cut-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/images/cut-in.png -------------------------------------------------------------------------------- /examples/images/i2v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/images/i2v.png -------------------------------------------------------------------------------- /examples/images/low speed curve1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/images/low speed curve1.pdf -------------------------------------------------------------------------------- /examples/images/low speed curve2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/images/low speed curve2.pdf -------------------------------------------------------------------------------- /examples/images/pedestrian_crossing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/images/pedestrian_crossing.pdf -------------------------------------------------------------------------------- /examples/images/pedestrian_zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/images/pedestrian_zebra.png -------------------------------------------------------------------------------- /examples/low_speed_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/low_speed_curve.py -------------------------------------------------------------------------------- /examples/lvd_scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/lvd_scenarios.json -------------------------------------------------------------------------------- /examples/overtaking_with_vehicle_in_front.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/overtaking_with_vehicle_in_front.json -------------------------------------------------------------------------------- /examples/overtaking_with_vehicle_in_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/overtaking_with_vehicle_in_front.py -------------------------------------------------------------------------------- /examples/pedestrian_crossing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/examples/pedestrian_crossing.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErwindeGelder/ScenarioDomainModel/HEAD/setup.py --------------------------------------------------------------------------------