Skip to content
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(planning_evaluator): add planning evaluator #288

Merged
merged 6 commits into from
Feb 17, 2022
Merged

feat(planning_evaluator): add planning evaluator #288

merged 6 commits into from
Feb 17, 2022

Conversation

kyoichi-sugahara
Copy link
Contributor

@kyoichi-sugahara kyoichi-sugahara commented Jan 24, 2022

Related Issue(required)

Resolves #289

Description(required)

Add the planning_evaluator package which implements a node to calculate various planning metrics.

Review Procedure(required)

  • run ros2 launch planning_evaluator planning_evaluator.launch.xml alongside Autoware.
  • Metric values are publishes on topics /planning_evaluator/metrics/....
  • Set an output_file in the parameters and when shutdown, the planning_evaluator node will write metrics to the file.

To check Obstacle_time_to_collision is calculated, you have to change the parameter dist_thr_m to around 10.
https://github.com/autowarefoundation/autoware.universe/pull/288/files#diff-1ad54c5e1a9f25da8c26f6eea0ff5fcf62de9c3b5441875d1e214e049f75b68eR30
Because Obstacle_time_to_collision is calculated only when the distance between ego and obstacle is smaller than dist_thr_m. If the condition is not satisfied, none is outputed.

Related PR(optional)

Pre-Review Checklist for the PR Author

PR Author should check the checkboxes below when creating the PR.

If you are adding new package following items are required:

  • Documentation with description of the package is available
  • A sample launch file and parameter file are available if the package contains executable nodes

Checklist for the PR Reviewer

Reviewers should check the checkboxes below before approval.

  • Commits are properly organized and messages are according to the guideline
  • PR title describes the changes

Post-Review Checklist for the PR Author

PR Author should check the checkboxes below before merging.

  • All open points are addressed and tracked via issues or tickets

CI Checks

  • Build and test for PR / build-and-test-pr: Required to pass before the merge.
  • Build and test for PR / clang-tidy-pr: NOT required to pass before the merge. It is up to the reviewer(s). Found false positives? See the [guidelines][clang-tidy-guidelines].
  • Check spelling: NOT required to pass before the merge. It is up to the reviewer(s). See here if you want to add some words to the spell check dictionary.

@kyoichi-sugahara kyoichi-sugahara changed the title feat(planning_evaluator): Add Planning Evaluator feat(planning_evaluator): add Planning Evaluator Jan 24, 2022
@kyoichi-sugahara kyoichi-sugahara changed the title feat(planning_evaluator): add Planning Evaluator feat(planning_evaluator): add planning evaluator Jan 24, 2022
@kyoichi-sugahara kyoichi-sugahara marked this pull request as ready for review January 24, 2022 12:13
@kyoichi-sugahara kyoichi-sugahara marked this pull request as draft January 24, 2022 12:32
@kyoichi-sugahara kyoichi-sugahara marked this pull request as ready for review January 26, 2022 06:25
badai-nguyen pushed a commit to badai-nguyen/autoware.universe that referenced this pull request Feb 4, 2022
* release v0.4.0

* Add map diag (autowarefoundation#688)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Change default value of disengage_on_route (autowarefoundation#703)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Change localization diag namespace (autowarefoundation#718)

* Change default value of output_diagnostics_topic

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove localization_diagnostic.js from web_controller

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Integrate localization diag to diagnostic_aggregator

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Delete old and unused publisher

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Support error in autoware state (autowarefoundation#728)

* Support Error in autoware_state_monitor

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Refactor autoware_state_monitor

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Wait after planning completed

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Integrate FailedToArriveGoal and Error into Emergency state

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove override after arrived goal in autoware_state_monitor (autowarefoundation#737)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Improve autoware state monitor diag (autowarefoundation#792)

* Add ok_list to stats

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Use key-value

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add ok_list

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* remove ROS1 packages temporarily

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Revert "remove ROS1 packages temporarily"

This reverts commit 470b35a4a07baca60033f7b363dba2f4279ff9c7.

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* add COLCON_IGNORE to ros1 packages

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Rename launch files to launch.xml (autowarefoundation#28)

* [WIP] ROS2 Porting: autoware_state_monitor (autowarefoundation#81)

* Fix CMake and package.xml
 - Remove topic_tools deps in package.xml
 - Fix cmake refs
 - Build just core without other deps

* Remove colcon ignore

* Convert CMake to ament_cmake_auto

* Fix package.xml with correct deps
 - Remove topic tools

* Convert yaml files to be ROS2 compliant
 - Previous XmlRpc was used to collect yaml array like structures
 - Use _configs.names string array to locate config.<name>.<field>
 - Will need to convert the way the parametersa are retrieved

* First pass - make compile

* Port headers
 - Change the name of arrived goal for consistency
 - Port state machine
 - Port diagnostics wrapper methods

* Add subscription, publisher and timers
 - Add simple parameters
 - Add back functionality
 - Add topic state functionality
 - Add functionality

* Add configuration parameter implementations

* Add launch files and clean up
 - Remove commented code from cmake and package.xml
 - Remove rosconsole.h

* Clean up
 - Remove changes to autoware_sysytem_msgs
 - remove comments

* Added types to the launch files
 - Make type arrays to allow for multiple types

* Add rclcpp_generic implementation for subscriptions
 - Add the callback method back
 - Include exec_depends in package.xml

* Clean up
 - Remove boost dependencies
 - Remove commented out dependencies
 - Remove comments

* Rename h files to hpp (autowarefoundation#142)

* Change includes

* Rename files

* Adjustments to make things compile

* Other packages

* Adjust copyright notice on 532 out of 699 source files (autowarefoundation#143)

* Use quotes for includes where appropriate (autowarefoundation#144)

* Use quotes for includes where appropriate

* Fix lint tests

* Make tests pass hopefully

* Run uncrustify on the entire Pilot.Auto codebase (autowarefoundation#151)

* Run uncrustify on the entire Pilot.Auto codebase

* Exclude open PRs

* Add linters and fix some clang-tidy warnings (autowarefoundation#205)

* [autoware_state_monitor] fix parameter in autoware_state_monitor.planning_simulation.yaml (autowarefoundation#244)

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Modify autoware state monitor (autowarefoundation#288)

* comment out param config

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* fix minor issues

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* change engage from bool to control msg (autowarefoundation#292)

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* Ros2 v0.8.0 autoware state monitor (autowarefoundation#277)

* Ros2 v0.8.0 engage (autowarefoundation#342)

* [autoware_vehicle_msgs]: Add engage message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [as]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [awapi_awiv_adapter]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [web_controller]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [vehicle_cmd_gate]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [autoware_state_monitor]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [autoware_control_msgs]: Remove EngageMode message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [simple_planning_simulator]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix invalid exception handling (autowarefoundation#344)

* remove invalid exception handling

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* remove unnecessary topics

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* Ros2 v0.8.0 fix packages (autowarefoundation#351)

* add subscription to QoS

* add vihicle_param _file to simple_planning_sim

* update cmake/packages.xml

* comment out unused parameter

* apply lint

* add vehicle_info_util to lane_change_planner

* add vehicle_info_util to vehicle_cmd_gate

* fix cmake of simple planning simulator

* update cmake/packages.xml of vehicle cmd gate

* apply lint

* apply lint

* add latch option to autoware_state_monitor

* delete unused comment

* fix implement miss in autoware_state_monitor

* Rename ROS-related .yaml to .param.yaml (autowarefoundation#352)

* Rename ROS-related .yaml to .param.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove prefix 'default_' of yaml files

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Rename vehicle_info.yaml to vehicle_info.param.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Rename diagnostic_aggregator's param files

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix overlooked parameters

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ros2 v0.8.0 fix packages2 (autowarefoundation#354)

* fix topic name

* fix duration rate

* fix sensing.yaml

* fix topic name

* add latch-option to autoware_state_monitor

* fix timer callback

* fix autoware state monitor config

* fix sensing.yaml

* Add parameter args to autoware_state_monitor.launch (autowarefoundation#1175) (autowarefoundation#385)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Feature/Add route cancel service (autowarefoundation#384)

* Feature/Add route cancel service (autowarefoundation#1100)

* Feature/Add route cancel service

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add guard

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix service name in launch

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* remove spin_some within service callback functions

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* apply ament_uncrustify

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* change wait time for state transition (autowarefoundation#416)

* Sensor data qos (autowarefoundation#407)

* Use sensor data qos for pointcloud preprocessor

Signed-off-by: Autoware <autoware@tier4.jp>

* Use sensor data qos for pointcloud

Signed-off-by: Autoware <autoware@tier4.jp>

* Fix lint

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Use sensor data qos for livox tag filter and vector map filter

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix lint

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

Co-authored-by: Autoware <autoware@tier4.jp>

* Fix typo in system module (autowarefoundation#434)

* Fix typo in system module

* Change variable name

* Move comments

* Apply uncrustify

* add use_sim-time option (autowarefoundation#454)

* add missing topic to topic config list (autowarefoundation#1224)

* remove pointcloud from state_monitor (autowarefoundation#1236)

* Remove use_sim_time for set_parameter (autowarefoundation#1260)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Use integrated generic subscription (autowarefoundation#1342)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* suppress warnings for autoware_state_monitor (autowarefoundation#1722)

* suppress warnings for autoware_state_monitor

* fix style

* re fix style

* Fix -Wunused-parameter (autowarefoundation#1836)

* Fix -Wunused-parameter

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix mistake

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix spell

* Fix lint issues

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ignore flake8 warnings

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>

* Sync v1.3.0 (autowarefoundation#1909)

* Add elevation_map to autoware_state_monitor (autowarefoundation#1907)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Disable saving elevation map temporarily (autowarefoundation#1906)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* sync rc (autowarefoundation#1930)

* Remove elevation_map from autoware_state_monitor (autowarefoundation#1922)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Use base_ref (autowarefoundation#1925)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Add autoware api (autowarefoundation#1979)

* suport auto recovery on autoware_state_monitor (autowarefoundation#2006)

* disable emergency check if hazard_status is not received (autowarefoundation#2024)

* suppress warnings for system directory autowarefoundation#2046

* add sort-package-xml hook in pre-commit (autowarefoundation#1881)

* add sort xml hook in pre-commit

* change retval to exit_status

* rename

* add prettier plugin-xml

* use early return

* add license note

* add tier4 license

* restore prettier

* change license order

* move local hooks to public repo

* move prettier-xml to pre-commit-hooks-ros

* update version for bug-fix

* apply pre-commit

* Added warning about lookupTransform failure in autoware_status_monitor (autowarefoundation#2099)

* Change formatter to clang-format and black (autowarefoundation#2332)

* Revert "Temporarily comment out pre-commit hooks"

This reverts commit 748e9cdb145ce12f8b520bcbd97f5ff899fc28a3.

* Replace ament_lint_common with autoware_lint_common

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove ament_cmake_uncrustify and ament_clang_format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply Black

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix for cpplint

* Fix include double quotes to angle brackets

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add COLCON_IGNORE (autowarefoundation#500)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* [autoware state monitor] support autoware.auto msg (autowarefoundation#521)

* support autoware.auto msg

* add readme

* remove unused code

* remove emergency state

* stop to subscribe hazard_status

* remove VehicleStateReport/VehicleStateCommand/VehicleControlCommand (autowarefoundation#549)

* fix autoware_error_monitor

* fix state monitor

* fix emergency handler(vehicle_state_report)

* fix emergency Handler(vehicle_state_command)

* fix shift_decider

* fix emergency_handler(vehicle_control_command)

* fix topic name

* fix readme

* Update system/autoware_state_monitor/Readme.md

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* fix format

* Update system/autoware_state_monitor/launch/autoware_state_monitor.launch.xml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* fix typo

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* [autowere_web_controller/autoware_state_monitor/emergency_handler]fix some packages (autowarefoundation#603)

* fix vehicle_engage.js

* fix autoware_state_monitor param

* fix emergency_handler

* oh

* update autoware_state.js

* [autoware_state_monitor]route -> had_map_route (autowarefoundation#635)

* route -> had_map_route

* Rename Readme.md to README.md

Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>

* Fix autoware monitors readme (autowarefoundation#629)

* Fix readme of autoware_state_monitor

* Fix readme of autoware_error_monitor

* adapt to actuation cmd/status as control msg (autowarefoundation#646)

* adapt to actuation cmd/status as control msg

* fix readme

* fix topics

* fix remaing topics

* as to pacmod interface

* fix vehicle status

* add header to twist

* revert gyro_odometer_change

* revert twist topic change

* revert unchanged package

* Fix topic name in autoware_state_monitor (autowarefoundation#667)

* Fix no ground pointcloud topic name (autowarefoundation#733)

Signed-off-by: j4tfwm6z <proj-jpntaxi@tier4.jp>

Co-authored-by: j4tfwm6z <proj-jpntaxi@tier4.jp>

* fix/rename segmentation namespace (autowarefoundation#742)

* rename segmentation directory

* fix namespace: system stack

* fix namespace: planning

* fix namespace: control stack

* fix namespace: perception stack

* fix readme

Co-authored-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Nikolai Morin <nnmmgit@gmail.com>
Co-authored-by: Jilada Eccleston <jilada.eccleston@gmail.com>
Co-authored-by: Ryohsuke Mitsudome <43976834+mitsudome-r@users.noreply.github.com>
Co-authored-by: Kosuke Murakami <kosuke.murakami@tier4.jp>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Autoware <autoware@tier4.jp>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: autoware-iv-sync-ci[bot] <87871706+autoware-iv-sync-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Taichi Higashide <taichi.higashide@tier4.jp>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: Yohei Mishina <66298900+YoheiMishina@users.noreply.github.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: j4tfwm6z <proj-jpntaxi@tier4.jp>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Takeshi Miura <57553950+1222-takeshi@users.noreply.github.com>
badai-nguyen pushed a commit to badai-nguyen/autoware.universe that referenced this pull request Feb 4, 2022
* release v0.4.0

* Add map diag (autowarefoundation#688)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Change default value of disengage_on_route (autowarefoundation#703)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Change localization diag namespace (autowarefoundation#718)

* Change default value of output_diagnostics_topic

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove localization_diagnostic.js from web_controller

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Integrate localization diag to diagnostic_aggregator

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Delete old and unused publisher

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Support error in autoware state (autowarefoundation#728)

* Support Error in autoware_state_monitor

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Refactor autoware_state_monitor

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Wait after planning completed

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Integrate FailedToArriveGoal and Error into Emergency state

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove override after arrived goal in autoware_state_monitor (autowarefoundation#737)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Improve autoware state monitor diag (autowarefoundation#792)

* Add ok_list to stats

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Use key-value

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add ok_list

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* remove ROS1 packages temporarily

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Revert "remove ROS1 packages temporarily"

This reverts commit 470b35a4a07baca60033f7b363dba2f4279ff9c7.

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* add COLCON_IGNORE to ros1 packages

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Rename launch files to launch.xml (autowarefoundation#28)

* [WIP] ROS2 Porting: autoware_state_monitor (autowarefoundation#81)

* Fix CMake and package.xml
 - Remove topic_tools deps in package.xml
 - Fix cmake refs
 - Build just core without other deps

* Remove colcon ignore

* Convert CMake to ament_cmake_auto

* Fix package.xml with correct deps
 - Remove topic tools

* Convert yaml files to be ROS2 compliant
 - Previous XmlRpc was used to collect yaml array like structures
 - Use _configs.names string array to locate config.<name>.<field>
 - Will need to convert the way the parametersa are retrieved

* First pass - make compile

* Port headers
 - Change the name of arrived goal for consistency
 - Port state machine
 - Port diagnostics wrapper methods

* Add subscription, publisher and timers
 - Add simple parameters
 - Add back functionality
 - Add topic state functionality
 - Add functionality

* Add configuration parameter implementations

* Add launch files and clean up
 - Remove commented code from cmake and package.xml
 - Remove rosconsole.h

* Clean up
 - Remove changes to autoware_sysytem_msgs
 - remove comments

* Added types to the launch files
 - Make type arrays to allow for multiple types

* Add rclcpp_generic implementation for subscriptions
 - Add the callback method back
 - Include exec_depends in package.xml

* Clean up
 - Remove boost dependencies
 - Remove commented out dependencies
 - Remove comments

* Rename h files to hpp (autowarefoundation#142)

* Change includes

* Rename files

* Adjustments to make things compile

* Other packages

* Adjust copyright notice on 532 out of 699 source files (autowarefoundation#143)

* Use quotes for includes where appropriate (autowarefoundation#144)

* Use quotes for includes where appropriate

* Fix lint tests

* Make tests pass hopefully

* Run uncrustify on the entire Pilot.Auto codebase (autowarefoundation#151)

* Run uncrustify on the entire Pilot.Auto codebase

* Exclude open PRs

* Add linters and fix some clang-tidy warnings (autowarefoundation#205)

* [autoware_state_monitor] fix parameter in autoware_state_monitor.planning_simulation.yaml (autowarefoundation#244)

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Modify autoware state monitor (autowarefoundation#288)

* comment out param config

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* fix minor issues

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* change engage from bool to control msg (autowarefoundation#292)

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* Ros2 v0.8.0 autoware state monitor (autowarefoundation#277)

* Ros2 v0.8.0 engage (autowarefoundation#342)

* [autoware_vehicle_msgs]: Add engage message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [as]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [awapi_awiv_adapter]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [web_controller]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [vehicle_cmd_gate]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [autoware_state_monitor]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [autoware_control_msgs]: Remove EngageMode message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [simple_planning_simulator]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix invalid exception handling (autowarefoundation#344)

* remove invalid exception handling

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* remove unnecessary topics

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* Ros2 v0.8.0 fix packages (autowarefoundation#351)

* add subscription to QoS

* add vihicle_param _file to simple_planning_sim

* update cmake/packages.xml

* comment out unused parameter

* apply lint

* add vehicle_info_util to lane_change_planner

* add vehicle_info_util to vehicle_cmd_gate

* fix cmake of simple planning simulator

* update cmake/packages.xml of vehicle cmd gate

* apply lint

* apply lint

* add latch option to autoware_state_monitor

* delete unused comment

* fix implement miss in autoware_state_monitor

* Rename ROS-related .yaml to .param.yaml (autowarefoundation#352)

* Rename ROS-related .yaml to .param.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove prefix 'default_' of yaml files

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Rename vehicle_info.yaml to vehicle_info.param.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Rename diagnostic_aggregator's param files

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix overlooked parameters

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ros2 v0.8.0 fix packages2 (autowarefoundation#354)

* fix topic name

* fix duration rate

* fix sensing.yaml

* fix topic name

* add latch-option to autoware_state_monitor

* fix timer callback

* fix autoware state monitor config

* fix sensing.yaml

* Add parameter args to autoware_state_monitor.launch (autowarefoundation#1175) (autowarefoundation#385)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Feature/Add route cancel service (autowarefoundation#384)

* Feature/Add route cancel service (autowarefoundation#1100)

* Feature/Add route cancel service

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add guard

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix service name in launch

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* remove spin_some within service callback functions

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* apply ament_uncrustify

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* change wait time for state transition (autowarefoundation#416)

* Sensor data qos (autowarefoundation#407)

* Use sensor data qos for pointcloud preprocessor

Signed-off-by: Autoware <autoware@tier4.jp>

* Use sensor data qos for pointcloud

Signed-off-by: Autoware <autoware@tier4.jp>

* Fix lint

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Use sensor data qos for livox tag filter and vector map filter

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix lint

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

Co-authored-by: Autoware <autoware@tier4.jp>

* Fix typo in system module (autowarefoundation#434)

* Fix typo in system module

* Change variable name

* Move comments

* Apply uncrustify

* add use_sim-time option (autowarefoundation#454)

* add missing topic to topic config list (autowarefoundation#1224)

* remove pointcloud from state_monitor (autowarefoundation#1236)

* Remove use_sim_time for set_parameter (autowarefoundation#1260)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Use integrated generic subscription (autowarefoundation#1342)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* suppress warnings for autoware_state_monitor (autowarefoundation#1722)

* suppress warnings for autoware_state_monitor

* fix style

* re fix style

* Fix -Wunused-parameter (autowarefoundation#1836)

* Fix -Wunused-parameter

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix mistake

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix spell

* Fix lint issues

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ignore flake8 warnings

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>

* Sync v1.3.0 (autowarefoundation#1909)

* Add elevation_map to autoware_state_monitor (autowarefoundation#1907)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Disable saving elevation map temporarily (autowarefoundation#1906)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* sync rc (autowarefoundation#1930)

* Remove elevation_map from autoware_state_monitor (autowarefoundation#1922)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Use base_ref (autowarefoundation#1925)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Add autoware api (autowarefoundation#1979)

* suport auto recovery on autoware_state_monitor (autowarefoundation#2006)

* disable emergency check if hazard_status is not received (autowarefoundation#2024)

* suppress warnings for system directory autowarefoundation#2046

* add sort-package-xml hook in pre-commit (autowarefoundation#1881)

* add sort xml hook in pre-commit

* change retval to exit_status

* rename

* add prettier plugin-xml

* use early return

* add license note

* add tier4 license

* restore prettier

* change license order

* move local hooks to public repo

* move prettier-xml to pre-commit-hooks-ros

* update version for bug-fix

* apply pre-commit

* Added warning about lookupTransform failure in autoware_status_monitor (autowarefoundation#2099)

* Change formatter to clang-format and black (autowarefoundation#2332)

* Revert "Temporarily comment out pre-commit hooks"

This reverts commit 748e9cdb145ce12f8b520bcbd97f5ff899fc28a3.

* Replace ament_lint_common with autoware_lint_common

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove ament_cmake_uncrustify and ament_clang_format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply Black

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix for cpplint

* Fix include double quotes to angle brackets

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add COLCON_IGNORE (autowarefoundation#500)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* [autoware state monitor] support autoware.auto msg (autowarefoundation#521)

* support autoware.auto msg

* add readme

* remove unused code

* remove emergency state

* stop to subscribe hazard_status

* remove VehicleStateReport/VehicleStateCommand/VehicleControlCommand (autowarefoundation#549)

* fix autoware_error_monitor

* fix state monitor

* fix emergency handler(vehicle_state_report)

* fix emergency Handler(vehicle_state_command)

* fix shift_decider

* fix emergency_handler(vehicle_control_command)

* fix topic name

* fix readme

* Update system/autoware_state_monitor/Readme.md

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* fix format

* Update system/autoware_state_monitor/launch/autoware_state_monitor.launch.xml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* fix typo

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* [autowere_web_controller/autoware_state_monitor/emergency_handler]fix some packages (autowarefoundation#603)

* fix vehicle_engage.js

* fix autoware_state_monitor param

* fix emergency_handler

* oh

* update autoware_state.js

* [autoware_state_monitor]route -> had_map_route (autowarefoundation#635)

* route -> had_map_route

* Rename Readme.md to README.md

Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>

* Fix autoware monitors readme (autowarefoundation#629)

* Fix readme of autoware_state_monitor

* Fix readme of autoware_error_monitor

* adapt to actuation cmd/status as control msg (autowarefoundation#646)

* adapt to actuation cmd/status as control msg

* fix readme

* fix topics

* fix remaing topics

* as to pacmod interface

* fix vehicle status

* add header to twist

* revert gyro_odometer_change

* revert twist topic change

* revert unchanged package

* Fix topic name in autoware_state_monitor (autowarefoundation#667)

* Fix no ground pointcloud topic name (autowarefoundation#733)

Signed-off-by: j4tfwm6z <proj-jpntaxi@tier4.jp>

Co-authored-by: j4tfwm6z <proj-jpntaxi@tier4.jp>

* fix/rename segmentation namespace (autowarefoundation#742)

* rename segmentation directory

* fix namespace: system stack

* fix namespace: planning

* fix namespace: control stack

* fix namespace: perception stack

* fix readme

Co-authored-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Nikolai Morin <nnmmgit@gmail.com>
Co-authored-by: Jilada Eccleston <jilada.eccleston@gmail.com>
Co-authored-by: Ryohsuke Mitsudome <43976834+mitsudome-r@users.noreply.github.com>
Co-authored-by: Kosuke Murakami <kosuke.murakami@tier4.jp>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Autoware <autoware@tier4.jp>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: autoware-iv-sync-ci[bot] <87871706+autoware-iv-sync-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Taichi Higashide <taichi.higashide@tier4.jp>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: Yohei Mishina <66298900+YoheiMishina@users.noreply.github.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: j4tfwm6z <proj-jpntaxi@tier4.jp>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Takeshi Miura <57553950+1222-takeshi@users.noreply.github.com>
@TakaHoribe
Copy link
Contributor

@kyoichi-sugahara colcon test failed in my environment. Do you have any idea of its cause?
image

@TakaHoribe
Copy link
Contributor

Test passes in the latest branch.

TakaHoribe
TakaHoribe previously approved these changes Feb 17, 2022
@TakaHoribe TakaHoribe enabled auto-merge (squash) February 17, 2022 01:30
@codecov
Copy link

codecov bot commented Feb 17, 2022

Codecov Report

Merging #288 (ab9e909) into tier4/proposal (95f047f) will increase coverage by 48.36%.
The diff coverage is 57.69%.

Impacted file tree graph

@@                 Coverage Diff                 @@
##           tier4/proposal     #288       +/-   ##
===================================================
+ Coverage            9.33%   57.69%   +48.36%     
===================================================
  Files                 690       13      -677     
  Lines               48510      617    -47893     
  Branches             5844      279     -5565     
===================================================
- Hits                 4529      356     -4173     
+ Misses              40209       76    -40133     
+ Partials             3772      185     -3587     
Impacted Files Coverage Δ
.../include/planning_evaluator/metrics_calculator.hpp 0.00% <0.00%> (ø)
...g/planning_evaluator/src/motion_evaluator_node.cpp 0.00% <0.00%> (ø)
...planning_evaluator/src/planning_evaluator_node.cpp 32.96% <32.96%> (ø)
...ning_evaluator/include/planning_evaluator/stat.hpp 36.36% <36.36%> (ø)
...ng_evaluator/test/test_planning_evaluator_node.cpp 58.03% <58.03%> (ø)
...ator/include/planning_evaluator/metrics/metric.hpp 60.00% <60.00%> (ø)
...nning_evaluator/src/metrics/trajectory_metrics.cpp 75.36% <75.36%> (ø)
...anning_evaluator/src/metrics/stability_metrics.cpp 78.57% <78.57%> (ø)
...ning/planning_evaluator/src/metrics_calculator.cpp 82.53% <82.53%> (ø)
...anning_evaluator/src/metrics/deviation_metrics.cpp 85.71% <85.71%> (ø)
... and 693 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 95f047f...ab9e909. Read the comment docs.

maxime-clem and others added 6 commits February 17, 2022 11:09
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
@TakaHoribe TakaHoribe self-requested a review February 17, 2022 02:11
@TakaHoribe TakaHoribe merged commit e8f83f8 into autowarefoundation:tier4/proposal Feb 17, 2022
mitsudome-r added a commit to mitsudome-r/autoware.universe that referenced this pull request Mar 1, 2022
* release v0.4.0

* Add map diag (autowarefoundation#688)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Change default value of disengage_on_route (autowarefoundation#703)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Change localization diag namespace (autowarefoundation#718)

* Change default value of output_diagnostics_topic

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove localization_diagnostic.js from web_controller

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Integrate localization diag to diagnostic_aggregator

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Delete old and unused publisher

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Support error in autoware state (autowarefoundation#728)

* Support Error in autoware_state_monitor

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Refactor autoware_state_monitor

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Wait after planning completed

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Integrate FailedToArriveGoal and Error into Emergency state

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove override after arrived goal in autoware_state_monitor (autowarefoundation#737)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Improve autoware state monitor diag (autowarefoundation#792)

* Add ok_list to stats

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Use key-value

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add ok_list

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* remove ROS1 packages temporarily

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Revert "remove ROS1 packages temporarily"

This reverts commit 470b35a4a07baca60033f7b363dba2f4279ff9c7.

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* add COLCON_IGNORE to ros1 packages

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Rename launch files to launch.xml (autowarefoundation#28)

* [WIP] ROS2 Porting: autoware_state_monitor (autowarefoundation#81)

* Fix CMake and package.xml
 - Remove topic_tools deps in package.xml
 - Fix cmake refs
 - Build just core without other deps

* Remove colcon ignore

* Convert CMake to ament_cmake_auto

* Fix package.xml with correct deps
 - Remove topic tools

* Convert yaml files to be ROS2 compliant
 - Previous XmlRpc was used to collect yaml array like structures
 - Use _configs.names string array to locate config.<name>.<field>
 - Will need to convert the way the parametersa are retrieved

* First pass - make compile

* Port headers
 - Change the name of arrived goal for consistency
 - Port state machine
 - Port diagnostics wrapper methods

* Add subscription, publisher and timers
 - Add simple parameters
 - Add back functionality
 - Add topic state functionality
 - Add functionality

* Add configuration parameter implementations

* Add launch files and clean up
 - Remove commented code from cmake and package.xml
 - Remove rosconsole.h

* Clean up
 - Remove changes to autoware_sysytem_msgs
 - remove comments

* Added types to the launch files
 - Make type arrays to allow for multiple types

* Add rclcpp_generic implementation for subscriptions
 - Add the callback method back
 - Include exec_depends in package.xml

* Clean up
 - Remove boost dependencies
 - Remove commented out dependencies
 - Remove comments

* Rename h files to hpp (autowarefoundation#142)

* Change includes

* Rename files

* Adjustments to make things compile

* Other packages

* Adjust copyright notice on 532 out of 699 source files (autowarefoundation#143)

* Use quotes for includes where appropriate (autowarefoundation#144)

* Use quotes for includes where appropriate

* Fix lint tests

* Make tests pass hopefully

* Run uncrustify on the entire Pilot.Auto codebase (autowarefoundation#151)

* Run uncrustify on the entire Pilot.Auto codebase

* Exclude open PRs

* Add linters and fix some clang-tidy warnings (autowarefoundation#205)

* [autoware_state_monitor] fix parameter in autoware_state_monitor.planning_simulation.yaml (autowarefoundation#244)

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Modify autoware state monitor (autowarefoundation#288)

* comment out param config

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* fix minor issues

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* change engage from bool to control msg (autowarefoundation#292)

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* Ros2 v0.8.0 autoware state monitor (autowarefoundation#277)

* Ros2 v0.8.0 engage (autowarefoundation#342)

* [autoware_vehicle_msgs]: Add engage message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [as]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [awapi_awiv_adapter]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [web_controller]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [vehicle_cmd_gate]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [autoware_state_monitor]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [autoware_control_msgs]: Remove EngageMode message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [simple_planning_simulator]: Update message

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix invalid exception handling (autowarefoundation#344)

* remove invalid exception handling

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* remove unnecessary topics

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* Ros2 v0.8.0 fix packages (autowarefoundation#351)

* add subscription to QoS

* add vihicle_param _file to simple_planning_sim

* update cmake/packages.xml

* comment out unused parameter

* apply lint

* add vehicle_info_util to lane_change_planner

* add vehicle_info_util to vehicle_cmd_gate

* fix cmake of simple planning simulator

* update cmake/packages.xml of vehicle cmd gate

* apply lint

* apply lint

* add latch option to autoware_state_monitor

* delete unused comment

* fix implement miss in autoware_state_monitor

* Rename ROS-related .yaml to .param.yaml (autowarefoundation#352)

* Rename ROS-related .yaml to .param.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove prefix 'default_' of yaml files

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Rename vehicle_info.yaml to vehicle_info.param.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Rename diagnostic_aggregator's param files

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix overlooked parameters

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ros2 v0.8.0 fix packages2 (autowarefoundation#354)

* fix topic name

* fix duration rate

* fix sensing.yaml

* fix topic name

* add latch-option to autoware_state_monitor

* fix timer callback

* fix autoware state monitor config

* fix sensing.yaml

* Add parameter args to autoware_state_monitor.launch (autowarefoundation#1175) (autowarefoundation#385)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Feature/Add route cancel service (autowarefoundation#384)

* Feature/Add route cancel service (autowarefoundation#1100)

* Feature/Add route cancel service

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add guard

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix service name in launch

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* remove spin_some within service callback functions

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* apply ament_uncrustify

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* change wait time for state transition (autowarefoundation#416)

* Sensor data qos (autowarefoundation#407)

* Use sensor data qos for pointcloud preprocessor

Signed-off-by: Autoware <autoware@tier4.jp>

* Use sensor data qos for pointcloud

Signed-off-by: Autoware <autoware@tier4.jp>

* Fix lint

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Use sensor data qos for livox tag filter and vector map filter

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix lint

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

Co-authored-by: Autoware <autoware@tier4.jp>

* Fix typo in system module (autowarefoundation#434)

* Fix typo in system module

* Change variable name

* Move comments

* Apply uncrustify

* add use_sim-time option (autowarefoundation#454)

* add missing topic to topic config list (autowarefoundation#1224)

* remove pointcloud from state_monitor (autowarefoundation#1236)

* Remove use_sim_time for set_parameter (autowarefoundation#1260)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Use integrated generic subscription (autowarefoundation#1342)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* suppress warnings for autoware_state_monitor (autowarefoundation#1722)

* suppress warnings for autoware_state_monitor

* fix style

* re fix style

* Fix -Wunused-parameter (autowarefoundation#1836)

* Fix -Wunused-parameter

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix mistake

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix spell

* Fix lint issues

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ignore flake8 warnings

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>

* Sync v1.3.0 (autowarefoundation#1909)

* Add elevation_map to autoware_state_monitor (autowarefoundation#1907)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Disable saving elevation map temporarily (autowarefoundation#1906)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* sync rc (autowarefoundation#1930)

* Remove elevation_map from autoware_state_monitor (autowarefoundation#1922)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Use base_ref (autowarefoundation#1925)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Add autoware api (autowarefoundation#1979)

* suport auto recovery on autoware_state_monitor (autowarefoundation#2006)

* disable emergency check if hazard_status is not received (autowarefoundation#2024)

* suppress warnings for system directory autowarefoundation#2046

* add sort-package-xml hook in pre-commit (autowarefoundation#1881)

* add sort xml hook in pre-commit

* change retval to exit_status

* rename

* add prettier plugin-xml

* use early return

* add license note

* add tier4 license

* restore prettier

* change license order

* move local hooks to public repo

* move prettier-xml to pre-commit-hooks-ros

* update version for bug-fix

* apply pre-commit

* Added warning about lookupTransform failure in autoware_status_monitor (autowarefoundation#2099)

* Change formatter to clang-format and black (autowarefoundation#2332)

* Revert "Temporarily comment out pre-commit hooks"

This reverts commit 748e9cdb145ce12f8b520bcbd97f5ff899fc28a3.

* Replace ament_lint_common with autoware_lint_common

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove ament_cmake_uncrustify and ament_clang_format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply Black

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix for cpplint

* Fix include double quotes to angle brackets

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add COLCON_IGNORE (autowarefoundation#500)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* [autoware state monitor] support autoware.auto msg (autowarefoundation#521)

* support autoware.auto msg

* add readme

* remove unused code

* remove emergency state

* stop to subscribe hazard_status

* remove VehicleStateReport/VehicleStateCommand/VehicleControlCommand (autowarefoundation#549)

* fix autoware_error_monitor

* fix state monitor

* fix emergency handler(vehicle_state_report)

* fix emergency Handler(vehicle_state_command)

* fix shift_decider

* fix emergency_handler(vehicle_control_command)

* fix topic name

* fix readme

* Update system/autoware_state_monitor/Readme.md

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* fix format

* Update system/autoware_state_monitor/launch/autoware_state_monitor.launch.xml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* fix typo

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* [autowere_web_controller/autoware_state_monitor/emergency_handler]fix some packages (autowarefoundation#603)

* fix vehicle_engage.js

* fix autoware_state_monitor param

* fix emergency_handler

* oh

* update autoware_state.js

* [autoware_state_monitor]route -> had_map_route (autowarefoundation#635)

* route -> had_map_route

* Rename Readme.md to README.md

Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>

* Fix autoware monitors readme (autowarefoundation#629)

* Fix readme of autoware_state_monitor

* Fix readme of autoware_error_monitor

* adapt to actuation cmd/status as control msg (autowarefoundation#646)

* adapt to actuation cmd/status as control msg

* fix readme

* fix topics

* fix remaing topics

* as to pacmod interface

* fix vehicle status

* add header to twist

* revert gyro_odometer_change

* revert twist topic change

* revert unchanged package

* Fix topic name in autoware_state_monitor (autowarefoundation#667)

* Fix no ground pointcloud topic name (autowarefoundation#733)

Signed-off-by: j4tfwm6z <proj-jpntaxi@tier4.jp>

Co-authored-by: j4tfwm6z <proj-jpntaxi@tier4.jp>

* fix/rename segmentation namespace (autowarefoundation#742)

* rename segmentation directory

* fix namespace: system stack

* fix namespace: planning

* fix namespace: control stack

* fix namespace: perception stack

* fix readme

Co-authored-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Nikolai Morin <nnmmgit@gmail.com>
Co-authored-by: Jilada Eccleston <jilada.eccleston@gmail.com>
Co-authored-by: Ryohsuke Mitsudome <43976834+mitsudome-r@users.noreply.github.com>
Co-authored-by: Kosuke Murakami <kosuke.murakami@tier4.jp>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Autoware <autoware@tier4.jp>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: autoware-iv-sync-ci[bot] <87871706+autoware-iv-sync-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Taichi Higashide <taichi.higashide@tier4.jp>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: Yohei Mishina <66298900+YoheiMishina@users.noreply.github.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: j4tfwm6z <proj-jpntaxi@tier4.jp>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Takeshi Miura <57553950+1222-takeshi@users.noreply.github.com>
TomohitoAndo pushed a commit to TomohitoAndo/autoware.universe that referenced this pull request Oct 5, 2022
TomohitoAndo pushed a commit to TomohitoAndo/autoware.universe that referenced this pull request Oct 5, 2022
* fix: ogm launch in psim

* Update simulator.launch.xml

* Update simulator.launch.xml
TomohitoAndo pushed a commit to TomohitoAndo/autoware.universe that referenced this pull request Oct 5, 2022
* fix: ogm launch in psim

* Update simulator.launch.xml

* Update simulator.launch.xml
keiota pushed a commit to keiota/autoware.universe that referenced this pull request Aug 17, 2023
…oundation#288)

* feat(obstacle_cruise_planner): add param for slow down

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

---------

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
kyoichi-sugahara pushed a commit that referenced this pull request Sep 16, 2023
* Change description repositories to public

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix scenario_simulator_v2 url

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
YamatoAndo pushed a commit to YamatoAndo/autoware.universe that referenced this pull request Aug 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add planning_evaluator package to evaluate planning module performance.
3 participants