Skip to content

Commit 1f8a4a7

Browse files
Merge pull request #328 from tier4/sync-awf-latest
chore: sync awf-latest
2 parents de97dc2 + d9f53c9 commit 1f8a4a7

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

.github/CODEOWNERS-manual

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# /**
2+
# .github/**
3+
autoware_launch/** yukihiro.saito@tier4.jp ryohsuke.mitsudome@tier4.jp
4+
autoware_launch/config/control/** takayuki.murooka@tier4.jp fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp
5+
autoware_launch/config/localization/** masahiro.sakamoto@tier4.jp yamato.ando@tier4.jp ryu.yamamoto@tier4.jp kento.yabuuchi.2@tier4.jp shintaro.sakoda@tier4.jp taiki.yamada@tier4.jp anh.nguyen.2@tier4.jp
6+
autoware_launch/config/map/** masahiro.sakamoto@tier4.jp yamato.ando@tier4.jp ryu.yamamoto@tier4.jp kento.yabuuchi.2@tier4.jp shintaro.sakoda@tier4.jp taiki.yamada@tier4.jp anh.nguyen.2@tier4.jp
7+
autoware_launch/config/perception/** shunsuke.miura@tier4.jp yoshi.ri@tier4.jp koji.minoda@tier4.jp
8+
autoware_launch/config/planning/** takayuki.murooka@tier4.jp fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp
9+
autoware_launch/config/simulator/** takayuki.murooka@tier4.jp fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp
10+
autoware_launch/config/system/** fumihito.ito@tier4.jp isamu.takagi@tier4.jp
11+
autoware_launch/config/vehicle/** takayuki.murooka@tier4.jp fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp
12+
autoware_launch/launch/components/tier4_autoware_api_component.launch.xml isamu.takagi@tier4.jp
13+
autoware_launch/launch/components/tier4_control_component.launch.xml takayuki.murooka@tier4.jp fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp
14+
autoware_launch/launch/components/tier4_localization_component.launch.xml masahiro.sakamoto@tier4.jp yamato.ando@tier4.jp ryu.yamamoto@tier4.jp kento.yabuuchi.2@tier4.jp shintaro.sakoda@tier4.jp taiki.yamada@tier4.jp anh.nguyen.2@tier4.jp
15+
autoware_launch/launch/components/tier4_map_component.launch.xml masahiro.sakamoto@tier4.jp yamato.ando@tier4.jp ryu.yamamoto@tier4.jp kento.yabuuchi.2@tier4.jp shintaro.sakoda@tier4.jp taiki.yamada@tier4.jp anh.nguyen.2@tier4.jp
16+
autoware_launch/launch/components/tier4_perception_component.launch.xml shunsuke.miura@tier4.jp yoshi.ri@tier4.jp koji.minoda@tier4.jp
17+
autoware_launch/launch/components/tier4_planning_component.launch.xml takayuki.murooka@tier4.jp fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp
18+
autoware_launch/launch/components/tier4_sensing_component.launch.xml shunsuke.miura@tier4.jp yoshi.ri@tier4.jp koji.minoda@tier4.jp
19+
autoware_launch/launch/components/tier4_simulator_component.launch.xml takayuki.murooka@tier4.jp fumiya.watanabe@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp
20+
autoware_launch/launch/components/tier4_system_component.launch.xml fumihito.ito@tier4.jp isamu.takagi@tier4.jp
21+
autoware_launch/rviz/** # no codeowners
22+
autoware_launch/rviz/image/** yukihiro.saito@tier4.jp ryohsuke.mitsudome@tier4.jp

autoware_launch/launch/autoware.launch.xml

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
<arg name="traffic_light_recognition/enable_fine_detection" default="true" description="enable traffic light fine detection"/>
4646
<!-- Auto mode setting-->
4747
<arg name="enable_all_modules_auto_mode" default="false" description="enable all module's auto mode"/>
48+
<arg name="is_simulation" default="false" description="Autoware's behavior will change depending on whether this is a simulation or not."/>
4849

4950
<!-- Global parameters -->
5051
<group scoped="false">
@@ -104,6 +105,7 @@
104105
<include file="$(find-pkg-share autoware_launch)/launch/components/tier4_planning_component.launch.xml">
105106
<arg name="module_preset" value="$(var planning_module_preset)"/>
106107
<arg name="enable_all_modules_auto_mode" value="$(var enable_all_modules_auto_mode)"/>
108+
<arg name="is_simulation" value="$(var is_simulation)"/>
107109
</include>
108110
</group>
109111

autoware_launch/launch/components/tier4_planning_component.launch.xml

+2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
<!-- NOTE: optional parameters are written here -->
44
<arg name="module_preset" default="default"/>
55
<arg name="enable_all_modules_auto_mode" default="false"/>
6+
<arg name="is_simulation" default="false"/>
67
<include file="$(find-pkg-share autoware_launch)/config/planning/preset/$(var module_preset)_preset.yaml"/>
78

89
<include file="$(find-pkg-share tier4_planning_launch)/launch/planning.launch.xml">
910
<arg name="vehicle_param_file" value="$(find-pkg-share $(var vehicle_model)_description)/config/vehicle_info.param.yaml"/>
1011
<arg name="pointcloud_container_name" value="$(var pointcloud_container_name)"/>
1112
<arg name="enable_all_modules_auto_mode" value="$(var enable_all_modules_auto_mode)"/>
13+
<arg name="is_simulation" value="$(var is_simulation)"/>
1214

1315
<!-- common -->
1416
<arg name="common_config_path" value="$(find-pkg-share autoware_launch)/config/planning/scenario_planning/common"/>

autoware_launch/launch/planning_simulator.launch.xml

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
<arg name="rviz_respawn" value="$(var rviz_respawn)"/>
7070
<!-- Auto mode setting-->
7171
<arg name="enable_all_modules_auto_mode" value="$(var enable_all_modules_auto_mode)"/>
72+
<arg name="is_simulation" value="true"/>
7273
</include>
7374
</group>
7475

0 commit comments

Comments
 (0)