-
Notifications
You must be signed in to change notification settings - Fork 360
feat(psim)!: change a setting parameter type from bool to string #1106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(psim)!: change a setting parameter type from bool to string #1106
Conversation
@@ -81,13 +81,14 @@ | |||
<let name="launch_dummy_perception" value="true" unless="$(var scenario_simulation)"/> | |||
<let name="launch_dummy_vehicle" value="false" if="$(var scenario_simulation)"/> | |||
<let name="launch_dummy_vehicle" value="true" unless="$(var scenario_simulation)"/> | |||
<let name="launch_dummy_localization" value="true"/> | |||
<!-- The following modes are available as localization_sim_mode: nothing, api --> | |||
<let name="localization_sim_mode" value="api"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about making the following change and adding <arg name="localization_sim_mode" default="foo" description="none, foo, ..."/>
in the Optional parameters section?
<let name="localization_sim_mode" value="api"/> | |
<let name="localization_sim_mode" value="$(var localization_sim_mode)"/> |
6f4dabb
to
158bb67
Compare
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
158bb67
to
93d3715
Compare
@mitsudome-r @yukkysaito |
@@ -81,13 +83,13 @@ | |||
<let name="launch_dummy_perception" value="true" unless="$(var scenario_simulation)"/> | |||
<let name="launch_dummy_vehicle" value="false" if="$(var scenario_simulation)"/> | |||
<let name="launch_dummy_vehicle" value="true" unless="$(var scenario_simulation)"/> | |||
<let name="launch_dummy_localization" value="true"/> | |||
<let name="localization_sim_mode" value="$(var localization_sim_mode)"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now that we added localization_sim_mode as arg
in the in the same file, I think we can remove this let
statement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for my poor understanding. Thank you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -37,6 +37,8 @@ | |||
<arg name="enable_all_modules_auto_mode" default="$(var scenario_simulation)" description="enable all module's auto mode"/> | |||
<!-- Simulated time --> | |||
<arg name="use_sim_time" default="$(var scenario_simulation)"/> | |||
<!-- Localization--> | |||
<arg name="localization_sim_mode" default="api" description="select localization mode. none, api"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<arg name="localization_sim_mode" default="api" description="select localization mode. none, api"/> | |
<arg name="localization_sim_mode" default="api" description="select localization mode. Options are 'none' or 'api'. 'api' starts an external API for initial position estimation. 'none' does not start any localization-related process."/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've add description. 226f872
Signed-off-by: Yuki Takagi <[email protected]>
* change a param type, bool to string --------- Signed-off-by: Yuki Takagi <[email protected]>
…owarefoundation#1106) * change a param type, bool to string --------- Signed-off-by: Yuki Takagi <[email protected]>
…owarefoundation#1106) * change a param type, bool to string --------- Signed-off-by: Yuki Takagi <[email protected]>
…autowarefoundation#1106) Signed-off-by: Tomohito Ando <[email protected]>
* feat(behavior_path _planner): divide planner manager modules into dependent slots (autowarefoundation#1091) * Revert "fix(api): disable rosbridge to fix duplicated node" (#523) Revert "fix(api): disable rosbridge to fix duplicated node (#497)" This reverts commit 1b04604. * feat(autonomous_emergency_braking): add info marker to aeb and state check override (autowarefoundation#1103) * add info marker and override for state Signed-off-by: Daniel Sanchez <[email protected]> * make stop wall viz default Signed-off-by: Daniel Sanchez <[email protected]> --------- Signed-off-by: Daniel Sanchez <[email protected]> * feat(lane_change): add param for lateral angle deviation (autowarefoundation#1087) * RT1-6514 adding lateral angle deviation param Signed-off-by: Zulfaqar Azmi <[email protected]> * decrease angle deviation threshold to fix rtc issue Signed-off-by: Zulfaqar Azmi <[email protected]> --------- Signed-off-by: Zulfaqar Azmi <[email protected]> * feat(lane_change): use different rss param to deal with parked vehicle (autowarefoundation#1104) use separate rss for parked vehicle Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]> * feat: increase the number of processes monitored by process_monitor (autowarefoundation#1110) Signed-off-by: tomoya.kimura <[email protected]> * fix(mpc_lateral_controller): publish predicted trajectory in Frenet coordinate and visualize it on Rviz (autowarefoundation#1111) Signed-off-by: Takayuki Murooka <[email protected]> * feat(tracking_object_merger): add merge frame (autowarefoundation#1112) * fix(lane_change): skip generating path if longitudinal distance difference is less than threshold (autowarefoundation#1108) add skip process lon dist diff threshold Signed-off-by: Zulfaqar Azmi <[email protected]> * feat(static_obstacle_avoidance): change policy for ambiguous avoidance situation (autowarefoundation#1113) * feat(static_obstacle_avoidance): change policy for ambiguous avoidance situation Signed-off-by: satoshi-ota <[email protected]> * fix(static_obstacle_avoidance): tune ambiguous vehicle ignore area Signed-off-by: satoshi-ota <[email protected]> --------- Signed-off-by: satoshi-ota <[email protected]> * fix(goal_planner): fix lane departure check not working correctly due to uninitialized variable (autowarefoundation#1116) Signed-off-by: kosuke55 <[email protected]> * feat(psim)!: change a setting parameter type from bool to string (autowarefoundation#1106) * change a param type, bool to string --------- Signed-off-by: Yuki Takagi <[email protected]> * feat(autoware_map_based_prediction): add debug parameters for map-based prediction (autowarefoundation#1118) * feat: add debug parameters for map-based prediction Signed-off-by: Taekjin LEE <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: Taekjin LEE <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * fix(lane_change): parameter update (autowarefoundation#1115) Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]> * feat(psim)!: preapre settings to launch localization modules on psim (autowarefoundation#1094) Signed-off-by: Yuki Takagi <[email protected]> * chore(autoware_multi_object_tracker): fix typo in input_channels (autowarefoundation#1121) chore: fix typo of lidar_pointpainitng channel Signed-off-by: Taekjin LEE <[email protected]> * fix(lidar_model): add centerpoint_sigma param file (autowarefoundation#1086) fix: add centerpoint_sigma param file Signed-off-by: badai-nguyen <[email protected]> * feat(tier4_perception_launch): add transfusion option for lidar_detection_model (autowarefoundation#1124) Signed-off-by: Shumpei Wakabayashi <[email protected]> * feat(freespace_planning_algorithms): add new parameters for astar planning algorithm (autowarefoundation#1120) * add new astar planner parameters Signed-off-by: mohammad alqudah <[email protected]> * add flag for obstacle confidence check Signed-off-by: mohammad alqudah <[email protected]> * reduce freespace planner th_arrived_distance_m param value Signed-off-by: mohammad alqudah <[email protected]> * reduce object polygon expand size in costmap generator Signed-off-by: mohammad alqudah <[email protected]> * reduce vehicle shape margin in freespace planner Signed-off-by: mohammad alqudah <[email protected]> * replace flag param by time threshold param Signed-off-by: mohammad alqudah <[email protected]> --------- Signed-off-by: mohammad alqudah <[email protected]> * chore(vehicle_cmd_gate): delete deprecated parameters (autowarefoundation#1127) delete deprecated params in vehicle_cmd_gate.param.yaml Signed-off-by: Autumn60 <[email protected]> * perf(goal_planner): faster path sorting and selection (autowarefoundation#1119) Signed-off-by: kosuke55 <[email protected]> * feat(static_obstacle_avoidance): add parameter for envelope polygon creation (autowarefoundation#1130) * add threshold for eclipse long radius Signed-off-by: Go Sakayori <[email protected]> * change parameter Signed-off-by: Go Sakayori <[email protected]> --------- Signed-off-by: Go Sakayori <[email protected]> Signed-off-by: Go Sakayori <[email protected]> * refactor(lane_change): rename prepare_segment_ignore_object_velocity_thresh (autowarefoundation#1125) change parameter name to a more expressive one Signed-off-by: Zulfaqar Azmi <[email protected]> * feat(lane_change): consider deceleration in safety check for cancel (autowarefoundation#1068) Signed-off-by: Fumiya Watanabe <[email protected]> * feat(raw_vehicle_cmd_converter): add steer command conversion with VGR (autowarefoundation#1131) Signed-off-by: kosuke55 <[email protected]> * chore(e2e_launch): add launch_sensing_driver arg (autowarefoundation#1095) * feat(raw_vehicle_cmd_converter): disable actuation to steering (autowarefoundation#1132) Signed-off-by: kosuke55 <[email protected]> * feat(localization): add lidar_marker_localizer (#861) * add config files Signed-off-by: Yamato Ando <[email protected]> * style(pre-commit): autofix * add param marker_height_from_ground Signed-off-by: Yamato Ando <[email protected]> * save log param Signed-off-by: Yamato Ando <[email protected]> * apply PointXYZIRC Signed-off-by: Yamato Ando <[email protected]> * to pass spell-check Signed-off-by: Yamato Ando <[email protected]> * refactor Signed-off-by: Yamato Ando <[email protected]> * change flag Signed-off-by: Yamato Ando <[email protected]> * fix typo Signed-off-by: Yamato Ando <[email protected]> --------- Signed-off-by: Yamato Ando <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: SakodaShintaro <[email protected]> * feat(out_of_lane): redesign to improve accuracy and performance (autowarefoundation#1117) Signed-off-by: Maxime CLEMENT <[email protected]> * fix(ekf_localizer): change roll, pitch proc dev (autowarefoundation#1140) change roll, pitch proc dev Signed-off-by: Yamato Ando <[email protected]> * feat(obstacle_pointcloud_based_validator): add enable_debugger parameter (autowarefoundation#1123) * feat: add enable debugger parameter Signed-off-by: yoshiri <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: yoshiri <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * feat(occupancy_grid_based_outlier_fillter): add config file to autoware_launch (autowarefoundation#1137) * feat: add config file Signed-off-by: yoshiri <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: yoshiri <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * feat(pid_longitudinal_controller)!: add acceleration feedback block (autowarefoundation#1139) * add params --------- Signed-off-by: Yuki Takagi <[email protected]> * feat(detected_object_validation): copy parameter files update from universe (autowarefoundation#1126) feat: copy params from universe Signed-off-by: yoshiri <[email protected]> * feat: fix parameter type error in occupancy_grid_map_outlier_filter.param.yaml (autowarefoundation#1146) * feat: fix parameter type Signed-off-by: yoshiri <[email protected]> * chore: change param name Signed-off-by: yoshiri <[email protected]> --------- Signed-off-by: yoshiri <[email protected]> * chore(stop_filter): extract stop_filter.param.yaml to autoware_launch (autowarefoundation#1145) Extract stop_filter.param.yaml to autoware_launch Signed-off-by: TaikiYamada4 <[email protected]> * fix(min-velocity-map-based-prediction): reduce min_velocity_for_map_based_prediction (autowarefoundation#994) fix(min-velocity-map-based-prediction): reduce min_velocity_for_map_based_prediction to let intersection module run with low speed npc Signed-off-by: Ahmed Ebrahim <[email protected]> * fix(static_obstacle_avoidance): tune parameters (autowarefoundation#1143) Signed-off-by: satoshi-ota <[email protected]> * fix(static_obstacle_avoidance): increase prepare time (autowarefoundation#1148) Signed-off-by: satoshi-ota <[email protected]> * feat(autoware_lidar_transfusion): add transfusion config (autowarefoundation#1093) Signed-off-by: Amadeusz Szymko <[email protected]> * feat: add simulator rviz config (autowarefoundation#1150) Signed-off-by: KhalilSelyan <[email protected]> * feat(autoware_launch): add expansion params (autowarefoundation#1133) make expansion optional Signed-off-by: beyza <[email protected]> * chore: add taekjin lee to perception launcher and configuration maintainer (autowarefoundation#1154) chore: add taekjin lee to perception launcher and configuration maintainer Signed-off-by: Taekjin LEE <[email protected]> * feat(autoware_mpc_lateral_controller): add resampled reference trajectory for debug purpose (autowarefoundation#1114) * chore: add debug_publish_resampled_reference_trajectory to parameter Signed-off-by: kyoichi-sugahara <[email protected]> * feat: add use_delayed_initial_state flag to lateral MPC configuration Signed-off-by: kyoichi-sugahara <[email protected]> --------- Signed-off-by: kyoichi-sugahara <[email protected]> * feat(occupancy_grid_map_outlier_filter): add option for time keeper (autowarefoundation#1147) add timekeeper option Signed-off-by: a-maumau <[email protected]> Co-authored-by: Taekjin LEE <[email protected]> * feat(ground_segmentation): add option for time keeper (autowarefoundation#1134) add option for time keeper Signed-off-by: a-maumau <[email protected]> Co-authored-by: Taekjin LEE <[email protected]> * feat(occupancy_grid_map): add option for time keeper (autowarefoundation#1138) * add option for time keeper Signed-off-by: a-maumau <[email protected]> * set default to false Signed-off-by: a-maumau <[email protected]> --------- Signed-off-by: a-maumau <[email protected]> Co-authored-by: Taekjin LEE <[email protected]> * chore(tier4_pereption_component): add image_segmentation_based_filter option param (autowarefoundation#1158) Signed-off-by: badai-nguyen <[email protected]> * feat(goal_planner): dense goal candidate sampling in BusStopArea (autowarefoundation#1156) * chore(planning): add maintainer (autowarefoundation#1161) Signed-off-by: Yuki Takagi <[email protected]> * feat: add parameters for restart suppression in crosswalk (autowarefoundation#1160) * feat: add parameters for restart suppression in crosswalk Signed-off-by: Takayuki Murooka <[email protected]> * update parameter Signed-off-by: Takayuki Murooka <[email protected]> --------- Signed-off-by: Takayuki Murooka <[email protected]> * feat(mission_planner): add option to prevent rerouting in autonomous driving mode (autowarefoundation#1153) Signed-off-by: kosuke55 <[email protected]> * feat(run_out): speed up run out response (autowarefoundation#1163) speed up run out response Signed-off-by: Daniel Sanchez <[email protected]> * feat(start_planner): add option to skip rear vehicle check (autowarefoundation#1165) Signed-off-by: Kyoichi Sugahara <[email protected]> * feat: add an env variable to enable the new rviz2 theme (autowarefoundation#1017) Signed-off-by: KhalilSelyan <[email protected]> * feat(crosswalk)!: update stop position caluculation (autowarefoundation#1162) Signed-off-by: Yuki Takagi <[email protected]> * feat: change visualization of localization results from PoseHistory to PoseWithCovarianceHistory (autowarefoundation#1164) * PoseHistory to PoseWithCovarianceHistory Signed-off-by: yuhei <[email protected]> * style(pre-commit): autofix * fix param of alpha related to PoseWithCovarianceHistory Signed-off-by: yuhei <[email protected]> --------- Signed-off-by: yuhei <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * style(rviz-config): use colors consistent with new theme (autowarefoundation#1169) Signed-off-by: KhalilSelyan <[email protected]> * feat(tier4_perception_launch): enable to use multi camera on traffic light recognition (autowarefoundation#1144) change the way to declare camera num Signed-off-by: MasatoSaeki <[email protected]> * refactor(behavior_path_planner): remove unnecessary parameters (autowarefoundation#1172) Signed-off-by: Takayuki Murooka <[email protected]> * refactor(behavior_path_planner): remove unnecessary parameters (autowarefoundation#1172) Signed-off-by: Takayuki Murooka <[email protected]> * refactor(system_monitor/ntp_monitor): add-missing-parameters (autowarefoundation#1174) refactor: add-missing-parameters Signed-off-by: TetsuKawa <[email protected]> * refactor(system_monitor/net_monitor): remove-missing-patameters (autowarefoundation#1175) refactor: remove-missing-patameters Signed-off-by: TetsuKawa <[email protected]> * feat(emergency_handler): delete package (autowarefoundation#1173) * feat(emergency_handler): delete package Signed-off-by: veqcc <[email protected]> * fix(avoidance_by_lane_change): remove unused parameter (autowarefoundation#1176) remove unused parameter Signed-off-by: Go Sakayori <[email protected]> * feat(lane_change): add lane change parameter (autowarefoundation#1157) add parameter to enable/disable bound check Signed-off-by: mohammad alqudah <[email protected]> * refactor(system_monitor/ntp_monitor): add-missing-parameters (autowarefoundation#1174) refactor: add-missing-parameters Signed-off-by: TetsuKawa <[email protected]> * refactor(system_monitor/net_monitor): remove-missing-patameters (autowarefoundation#1175) refactor: remove-missing-patameters Signed-off-by: TetsuKawa <[email protected]> * feat(emergency_handler): delete package (autowarefoundation#1173) * feat(emergency_handler): delete package Signed-off-by: veqcc <[email protected]> * fix(perception): adopt awsim (tlr) camera topic (autowarefoundation#1177) Signed-off-by: MasatoSaeki <[email protected]> * revert: feat: change visualization of localization results from PoseHistory to PoseWithCovarianceHistory (autowarefoundation#1164) (autowarefoundation#1179) Revert "feat: change visualization of localization results from PoseHistory to PoseWithCovarianceHistory (autowarefoundation#1164)" This reverts commit 593ad1f. * feat(tier4_perception_launch): enable to use multi camera on traffic light recognition (autowarefoundation#1144) change the way to declare camera num Signed-off-by: MasatoSaeki <[email protected]> * fix(perception): adopt awsim (tlr) camera topic (autowarefoundation#1177) Signed-off-by: MasatoSaeki <[email protected]> * feat(system_error_monitor): delete system error monitor (autowarefoundation#1178) feat: delete system error monitor Signed-off-by: TetsuKawa <[email protected]> * feat(system_error_monitor): delete system error monitor (autowarefoundation#1178) feat: delete system error monitor Signed-off-by: TetsuKawa <[email protected]> * feat(autonomous_emergency_braking): initiate speed_calculation_expansion_margin parameter (autowarefoundation#1168) initiate speed_calculation_expansion_margin parameter Signed-off-by: ismetatabay <[email protected]> * feat(pose_initializer): add new parameter for check error between initial pose and GNSS pose (autowarefoundation#1180) * add pose_error_check_enabled parameter Signed-off-by: RyuYamamoto <[email protected]> * change default value Signed-off-by: RyuYamamoto <[email protected]> --------- Signed-off-by: RyuYamamoto <[email protected]> * fix(obstacle_cruise_planner): tune obstacle_cruise_planner for cruising front NPCs in dense urban ODD scenarios (autowarefoundation#1166) fix(obstacle_cruise_planner): tune obstacle_cruise_planner for cruising front NPCs in dense urban ODD scenarios Signed-off-by: Ahmed Ebrahim <[email protected]> * revert(obstacle_cruise): revert an awf change (#617) Revert "fix(obstacle_cruise_planner): tune obstacle_cruise_planner for cruising front NPCs in dense urban ODD scenarios (autowarefoundation#1166)" * feat(autonomous_emergency_braking): set max imu path length (autowarefoundation#1183) * set param for max imu path distance Signed-off-by: Daniel Sanchez <[email protected]> * change param Signed-off-by: Daniel Sanchez <[email protected]> --------- Signed-off-by: Daniel Sanchez <[email protected]> * chore(crop_box_filter): add missing default parameter (autowarefoundation#1155) fix: add missing parameter after crop_box_filter rework Signed-off-by: badai-nguyen <[email protected]> * feat(obstacle_cruise_planner): improve stop and cruise behavior for cut-in & out (autowarefoundation#1142) Signed-off-by: Berkay Karaman <[email protected]> * revert(obstacle_cruise): reduce using predicted paths to maintain conventional behavior (#621) Signed-off-by: Yuki Takagi <[email protected]> * revert(obstacle_cruisse): revert "fix(obstacle_cruise_planner): guarantee the stop margin (autowarefoundation#1076)" (autowarefoundation#1185) Signed-off-by: Yuki Takagi <[email protected]> * Remove emergency braking from autoware-psim.yaml and enable autonomous emergency braking in tier4_control_component.launch.xml Signed-off-by: kyoichi-sugahara <[email protected]> * refactor(rviz): add VirtualWall display for Autonomous Emergency Braking (autowarefoundation#1187) feat(rviz): add VirtualWall display for Autonomous Emergency Braking Signed-off-by: kyoichi-sugahara <[email protected]> * chore: sync files (autowarefoundation#1188) Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions <[email protected]> * fix(.github): change runs-on value to to ubuntu-22.04 (autowarefoundation#1189) change to ubuntu-22.04 Signed-off-by: Go Sakayori <[email protected]> * fix(pointcloud_map_filter): add threshold for split map grid size (autowarefoundation#1184) * fix(pointcloud_map_filter): add param Signed-off-by: badai-nguyen <[email protected]> * fix: disable dynamic map loader for default unsplit-map Signed-off-by: badai-nguyen <[email protected]> --------- Signed-off-by: badai-nguyen <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: Daniel Sanchez <[email protected]> Signed-off-by: Zulfaqar Azmi <[email protected]> Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]> Signed-off-by: tomoya.kimura <[email protected]> Signed-off-by: Takayuki Murooka <[email protected]> Signed-off-by: satoshi-ota <[email protected]> Signed-off-by: kosuke55 <[email protected]> Signed-off-by: Taekjin LEE <[email protected]> Signed-off-by: Yuki Takagi <[email protected]> Signed-off-by: badai-nguyen <[email protected]> Signed-off-by: Shumpei Wakabayashi <[email protected]> Signed-off-by: mohammad alqudah <[email protected]> Signed-off-by: Autumn60 <[email protected]> Signed-off-by: Go Sakayori <[email protected]> Signed-off-by: Go Sakayori <[email protected]> Signed-off-by: Fumiya Watanabe <[email protected]> Signed-off-by: Yamato Ando <[email protected]> Signed-off-by: Maxime CLEMENT <[email protected]> Signed-off-by: yoshiri <[email protected]> Signed-off-by: TaikiYamada4 <[email protected]> Signed-off-by: Ahmed Ebrahim <[email protected]> Signed-off-by: Amadeusz Szymko <[email protected]> Signed-off-by: KhalilSelyan <[email protected]> Signed-off-by: beyza <[email protected]> Signed-off-by: kyoichi-sugahara <[email protected]> Signed-off-by: a-maumau <[email protected]> Signed-off-by: Kyoichi Sugahara <[email protected]> Signed-off-by: yuhei <[email protected]> Signed-off-by: MasatoSaeki <[email protected]> Signed-off-by: TetsuKawa <[email protected]> Signed-off-by: veqcc <[email protected]> Signed-off-by: ismetatabay <[email protected]> Signed-off-by: RyuYamamoto <[email protected]> Signed-off-by: Berkay Karaman <[email protected]> Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Hayato Mizushima <[email protected]> Co-authored-by: Mamoru Sobue <[email protected]> Co-authored-by: tier4-autoware-public-bot[bot] <98652886+tier4-autoware-public-bot[bot]@users.noreply.github.com> Co-authored-by: Kosuke Takeuchi <[email protected]> Co-authored-by: danielsanchezaran <[email protected]> Co-authored-by: Zulfaqar Azmi <[email protected]> Co-authored-by: Tomoya Kimura <[email protected]> Co-authored-by: Takayuki Murooka <[email protected]> Co-authored-by: Kaan Çolak <[email protected]> Co-authored-by: Satoshi OTA <[email protected]> Co-authored-by: Yuki TAKAGI <[email protected]> Co-authored-by: Taekjin LEE <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: badai nguyen <[email protected]> Co-authored-by: Shumpei Wakabayashi <[email protected]> Co-authored-by: mkquda <[email protected]> Co-authored-by: Autumn60 <[email protected]> Co-authored-by: Go Sakayori <[email protected]> Co-authored-by: Fumiya Watanabe <[email protected]> Co-authored-by: Takamasa Horibe <[email protected]> Co-authored-by: Yamato Ando <[email protected]> Co-authored-by: SakodaShintaro <[email protected]> Co-authored-by: Maxime CLEMENT <[email protected]> Co-authored-by: Yoshi Ri <[email protected]> Co-authored-by: TaikiYamada4 <[email protected]> Co-authored-by: Ahmed Ebrahim <[email protected]> Co-authored-by: Amadeusz Szymko <[email protected]> Co-authored-by: Khalil Selyan <[email protected]> Co-authored-by: beyzanurkaya <[email protected]> Co-authored-by: Kyoichi Sugahara <[email protected]> Co-authored-by: Masaki Baba <[email protected]> Co-authored-by: SaltUhey <[email protected]> Co-authored-by: Masato Saeki <[email protected]> Co-authored-by: TetsuKawa <[email protected]> Co-authored-by: Ryuta Kambe <[email protected]> Co-authored-by: M. Fatih Cırıt <[email protected]> Co-authored-by: Ismet Atabay <[email protected]> Co-authored-by: RyuYamamoto <[email protected]> Co-authored-by: Berkay Karaman <[email protected]> Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com> Co-authored-by: github-actions <[email protected]> Co-authored-by: Hayato Mizushima <[email protected]> Co-authored-by: Autumn60 <[email protected]> Co-authored-by: Autumn60 <[email protected]>
Description
This PR changes a configuration variable from a bool type to a string type to allow more flexibility in configuring the localization module to be activated in psim.
This PR does not change the behavior.
This PR is a part of the following issue, and a new mode will be added in a few weeks.
#1100
universe PR: autowarefoundation/autoware_universe#8331
Tests performed
In psim, we verified that the activated nodes are properly switched.
There was also no problem in executing scenario_sim.
internal link: https://evaluation.tier4.jp/evaluation/reports/bc29eeab-daa3-55e1-8446-400bdb049517?project_id=prd_jt
Effects on system behavior
Not applicable.
Interface changes
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.