-
Notifications
You must be signed in to change notification settings - Fork 104
/
mkdocs.yml
123 lines (112 loc) · 5.52 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
site_name: AWSIM document
repo_url: https://github.com/tier4/AWSIM
theme:
name: material
palette:
primary: indigo
features:
- navigation.sections
- navigation.footer
- content.tabs.link
icon:
repo: fontawesome/brands/github
markdown_extensions:
- tables
- admonition
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- Home: index.md
- Getting started:
- Quick Start Demo: GettingStarted/QuickStartDemo/index.md
- Setup Unity Project: GettingStarted/SetupUnityProject/index.md
- Using OpenSCENARIO: GettingStarted/UsingOpenSCENARIO/index.md
- Introduction:
- Autoware: Introduction/Autoware/index.md
- AWSIM: Introduction/AWSIM/index.md
- CombinationWithAutoware: Introduction/CombinationWithAutoware/index.md
- Project guide:
- Directory: ProjectGuide/Directory/index.md
- Hotkey List: ProjectGuide/HotkeyList/index.md
- Scenes: ProjectGuide/Scenes/index.md
- Git Branch: ProjectGuide/GitBranch/index.md
- External Libraries: ProjectGuide/ExternalLibraries/index.md
- Testing: ProjectGuide/Testing/index.md
- Running headless: ProjectGuide/RunningHeadless/index.md
- Components:
- Clock:
- Clock Publisher: Components/Clock/ClockPublisher/index.md
- Vehicle:
- Ego Vehicle: Components/Vehicle/EgoVehicle/index.md
- Vehicle Input: Components/Vehicle/VehicleInput/index.md
- URDF And Sensors: Components/Vehicle/URDFAndSensors/index.md
- Add New Vehicle:
- Add Vehicle: Components/Vehicle/AddNewVehicle/AddAVehicle/index.md
- Add Colliders: Components/Vehicle/AddNewVehicle/AddColliders/index.md
- Add Sensors: Components/Vehicle/AddNewVehicle/AddSensors/index.md
- Add Visual Elements: Components/Vehicle/AddNewVehicle/AddVisualElements/index.md
- Customize Slip: Components/Vehicle/CustomizeSlip/index.md
- FollowCamera: Components/Vehicle/FollowCamera/index.md
- Sensors:
- LiDAR Sensor:
- LiDAR Sensor: Components/Sensors/LiDARSensor/LiDARSensor/index.md
- Add New LiDAR: Components/Sensors/LiDARSensor/AddNewLiDAR/index.md
- Read Material Information: Components/Sensors/LiDARSensor/ReadMaterialInformation/index.md
- RGLUnityPlugin: Components/Sensors/LiDARSensor/RGLUnityPlugin/index.md
- Radar Sensor: Components/Sensors/RadarSensor/index.md
- Camera Sensor: Components/Sensors/CameraSensor/index.md
- IMU Sensor: Components/Sensors/IMUSensor/index.md
- GNSS Sensor: Components/Sensors/GNSSSensor/index.md
- Vehicle Status Sensor: Components/Sensors/VehicleStatusSensor/index.md
- Environment:
- AWSIM Environment: Components/Environment/AWSIMEnvironment/index.md
- Add New Environment:
- Add Environment: Components/Environment/AddNewEnvironment/AddEnvironment/index.md
- Add RandomTraffic:
- Load Items From Lanelet: Components/Environment/AddNewEnvironment/AddRandomTraffic/LoadItemsFromLanelet/index.md
- Add Random Traffic: Components/Environment/AddNewEnvironment/AddRandomTraffic/AddRandomTraffic/index.md
- Add Traffic Intersection: Components/Environment/AddNewEnvironment/AddRandomTraffic/AddTrafficIntersection/index.md
- Add TrafficLights: Components/Environment/AddNewEnvironment/AddTrafficLights/index.md
- Create PCD: Components/Environment/CreatePCD/index.md
- LaneletBoundsVisualizer: Components/Environment/LaneletBoundsVisualizer/index.md
- SmokeSimulator: Components/Environment/SmokeSimulator/index.md
- V2I: Components/Environment/V2I/index.md
- Traffic:
- Traffic Components: Components/Traffic/TrafficComponents/index.md
- Random Traffic:
- Random Traffic Simulator: Components/Traffic/RandomTraffic/RandomTrafficSimulator/index.md
- Yielding Rules: Components/Traffic/RandomTraffic/YieldingRules/index.md
- Add Random Traffic Environment: Components/Traffic/RandomTraffic/AddRandomTrafficEnvironment/index.md
- NPCs:
- Pedestrian: Components/Traffic/NPCs/Pedestrian/index.md
- Vehicle: Components/Traffic/NPCs/Vehicle/index.md
- ROS2:
- ROS2 topic & service list: Components/ROS2/ROS2TopicAndServiceList/index.md
- Add custom ROS2 msg: Components/ROS2/AddACustomROS2Message/index.md
- ROS2 For Unity: Components/ROS2/ROS2ForUnity/index.md
- OpenSCENARIO:
- Setup Unity project for scenario simulation: Components/ScenarioSimulation/SetupUnityProjectForScenarioSimulation/index.md
- Preparing the connection between AWSIM and scenario_simulator_v2: Components/ScenarioSimulation/PreparingTheConnectionBetweenAWSIMAndScenarioSimulator/index.md
- Developer guide:
- Setup VSCode: DeveloperGuide/SetupVscode/index.md
- How to Contribute: DeveloperGuide/HowToContribute/index.md
- Trouble shooting: DeveloperGuide/TroubleShooting/index.md
- Documentation: DeveloperGuide/Documentation/index.md
- License : DeveloperGuide/License/index.md
- Contact : DeveloperGuide/Contact/index.md