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

fix(behavior_path_planner): fix planner data copy #2501

Merged

Conversation

purewater0901
Copy link
Contributor

@purewater0901 purewater0901 commented Dec 14, 2022

Signed-off-by: yutaka [email protected]

Description

Since it uses shared_ptr for planner_data_, it is not appropriate to copy it while using mutex. In this PR, I created a new shared_ptr to copy planner_data_ to planner_data. In the new code, the owner of the planner_data_ is one, so I confirmed there is no copy.

Related Issues

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.

  • There are no open discussions or they are tracked via tickets.

After all checkboxes are checked, anyone who has write access can merge the PR.

@TakaHoribe
Copy link
Contributor

TakaHoribe commented Dec 14, 2022

yeah, I know. tmux is too complicated for human being.
image

Copy link
Contributor

@TakaHoribe TakaHoribe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@codecov
Copy link

codecov bot commented Dec 14, 2022

Codecov Report

Base: 10.55% // Head: 10.50% // Decreases project coverage by -0.05% ⚠️

Coverage data is based on head (5fdb13d) compared to base (0c6c46b).
Patch coverage: 0.00% of modified lines in pull request are covered.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #2501      +/-   ##
==========================================
- Coverage   10.55%   10.50%   -0.06%     
==========================================
  Files        1264     1264              
  Lines       87353    88052     +699     
  Branches    20943    21388     +445     
==========================================
+ Hits         9224     9253      +29     
- Misses      68247    68854     +607     
- Partials     9882     9945      +63     
Flag Coverage Δ *Carryforward flag
differential 3.14% <ø> (?)
total 10.56% <0.00%> (+<0.01%) ⬆️ Carriedforward from a26b69d

*This pull request uses carry forward flags. Click here to find out more.

Impacted Files Coverage Δ
...or_path_planner/src/behavior_path_planner_node.cpp 0.32% <0.00%> (+0.13%) ⬆️
...planning_evaluator/src/planning_evaluator_node.cpp 34.37% <0.00%> (-2.09%) ⬇️
planning/behavior_path_planner/src/utilities.cpp 3.66% <0.00%> (-0.06%) ⬇️
...vehicle_model/sim_model_ideal_steer_acc_geared.cpp 75.00% <0.00%> (+14.28%) ⬆️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@purewater0901 purewater0901 enabled auto-merge (squash) December 14, 2022 08:38
@purewater0901 purewater0901 merged commit ed992b1 into autowarefoundation:main Dec 14, 2022
@purewater0901 purewater0901 deleted the fix/planner-data-pointer branch December 14, 2022 08:48
TomohitoAndo pushed a commit to tier4/autoware.universe that referenced this pull request Dec 14, 2022
TomohitoAndo added a commit to tier4/autoware.universe that referenced this pull request Dec 14, 2022
fix(behavior_path_planner): fix planner data copy (autowarefoundation#2501)
kyoichi-sugahara pushed a commit to kyoichi-sugahara/autoware.universe that referenced this pull request Dec 14, 2022
HansRobo added a commit to HansRobo/autoware.universe that referenced this pull request Dec 16, 2022
commit c7d3b7d
Author: Hirokazu Ishida <[email protected]>
Date:   Fri Dec 16 13:51:35 2022 +0900

    test(freespace_planning_algorithms): done't dump rosbag by default (autowarefoundation#2504)

    Signed-off-by: Hirokazu Ishida <[email protected]>

    Signed-off-by: Hirokazu Ishida <[email protected]>

commit 6731e0c
Author: kminoda <[email protected]>
Date:   Fri Dec 16 09:29:35 2022 +0900

    feat(pose_initializer): partial map loading (autowarefoundation#2500)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * move function

    Signed-off-by: kminoda <[email protected]>

    * now works

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * clarify how to enable partial mao loading interface

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * Update localization/pose_initializer/config/pose_initializer.param.yaml

    Co-authored-by: Takagi, Isamu <[email protected]>

    * fix pre-commit

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Takagi, Isamu <[email protected]>

commit efb4ff1
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 15 17:29:44 2022 +0900

    feat(trajectory_follower): extend mpc trajectory for terminal yaw (autowarefoundation#2447)

    * feat(trajectory_follower): extend mpc trajectory for terminal yaw

    Signed-off-by: kosuke55 <[email protected]>

    * make mpc min vel param

    Signed-off-by: kosuke55 <[email protected]>

    * add mpc extended point after smoothing

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "make mpc min vel param"

    This reverts commit 02157b6.

    Signed-off-by: kosuke55 <[email protected]>

    * add comment and hypot

    Signed-off-by: kosuke55 <[email protected]>

    * remove min vel

    Signed-off-by: kosuke55 <[email protected]>

    * add flag for extending traj

    Signed-off-by: kosuke55 <[email protected]>

    * add extend param to default param

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * fix from TakaHoribe review

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * refactor

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit ad2ae78
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 15 15:52:34 2022 +0900

    feat(component_interface_tools): add service log checker  (autowarefoundation#2503)

    * feat(component_interface_utils): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add diagnostics

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update system error monitor config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 4a13cc5
Author: Yutaka Shimizu <[email protected]>
Date:   Thu Dec 15 12:54:11 2022 +0900

    fix(behavior_path_planner): fix goal lanelet extension (autowarefoundation#2508)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 77b1c36
Author: Kyoichi Sugahara <[email protected]>
Date:   Thu Dec 15 10:45:45 2022 +0900

    feat(behavior_path_planner): change side shift module logic (autowarefoundation#2195)

    * change side shift module design

    Signed-off-by: kyoichi sugahara <[email protected]>

    * cherry picked side shift controller

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add debug marker to side shift

    Signed-off-by: kyoichi sugahara <[email protected]>

    * fix pointer error due to direct assignment

    added make_shared

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * add flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add status of AFTER_SHIFT

    Signed-off-by: kyoichi sugahara <[email protected]>

    * remove function for debug

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    * fix flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kyoichi sugahara <[email protected]>
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: tanaka3 <[email protected]>
    Co-authored-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9183c4f
Author: Takamasa Horibe <[email protected]>
Date:   Wed Dec 14 19:59:00 2022 +0900

    refactor(simple_planning_simulator): make function for duplicated code (autowarefoundation#2502)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit ed992b1
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 17:48:24 2022 +0900

    fix(behavior_path_planner): fix planner data copy (autowarefoundation#2501)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 0c6c46b
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 14:42:16 2022 +0900

    fix(behavior_path_planner): fix find nearest function from lateral distance (autowarefoundation#2499)

    * feat(behavior_path_planner): fix find nearest function from lateral distance

    * empty commit

commit a26b69d
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 11:28:07 2022 +0900

    feat(behavior_path_planner): fix overlap checker (autowarefoundation#2498)

    * feat(behavior_path_planner): fix overlap checker

    Signed-off-by: yutaka <[email protected]>

    * remove reserve

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 3a24859
Author: Ismet Atabay <[email protected]>
Date:   Tue Dec 13 16:51:59 2022 +0300

    feat(mission_planner): check goal footprint (autowarefoundation#2088)

    Signed-off-by: ismet atabay <[email protected]>

commit b6a1885
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 13 22:46:24 2022 +0900

    feat(trajectory_visualizer): update for steer limit, remove tf for pose source (autowarefoundation#2267)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit f1a9a96
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 19:47:16 2022 +0900

    feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (autowarefoundation#2494)

    * feat(behavior_path_planner): clean drivable area code

    Signed-off-by: yutaka <[email protected]>

    * make a function for turn signal decider

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit fafe1d8
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 18:19:41 2022 +0900

    feat(behavior_path_planner): change turn signal output timing (autowarefoundation#2493)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c48b9cf
Author: kminoda <[email protected]>
Date:   Tue Dec 13 09:16:14 2022 +0900

    feat(map_loader): add differential map loading interface (autowarefoundation#2417)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * added module load in _node.cpp

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * create pcd metadata dict when either of the flag is true

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix readme

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a3613b
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 08:49:23 2022 +0900

    docs(default_ad_api): add readme (autowarefoundation#2491)

    * docs(default_ad_api): add readme

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update table

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 49aa10b
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 06:46:20 2022 +0900

    feat(default_ad_api): split parameters into file (autowarefoundation#2488)

    * feat(default_ad_api): split parameters into file

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old parameter

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: test

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add default config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 7f0138c
Author: Yutaka Shimizu <[email protected]>
Date:   Mon Dec 12 22:16:54 2022 +0900

    feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (autowarefoundation#2472)

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update obstacle avoidance planner

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * uddate

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * remove resample

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * add orientation

    Signed-off-by: yutaka <[email protected]>

    * change color

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * remove drivable area

    Signed-off-by: yutaka <[email protected]>

    * add flag

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update color

    Signed-off-by: yutaka <[email protected]>

    * fix some codes

    Signed-off-by: yutaka <[email protected]>

    * change to makerker array

    Signed-off-by: yutaka <[email protected]>

    * change avoidance utils

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c855e23
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 17:15:10 2022 +0900

    refactor(vehicle_cmd_gate): remove old emergency topics (autowarefoundation#2403)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit fa04d54
Author: Daisuke Nishimatsu <[email protected]>
Date:   Mon Dec 12 16:04:00 2022 +0900

    feat: replace python launch with xml launch for system monitor (autowarefoundation#2430)

    * feat: replace python launch with xml launch for system monitor

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    * ci(pre-commit): autofix

    * update figure

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    Signed-off-by: Daisuke Nishimatsu <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 4a6990c
Author: Kosuke Takeuchi <[email protected]>
Date:   Mon Dec 12 15:01:39 2022 +0900

    feat(trajectory_follower): pub steer converged marker (autowarefoundation#2441)

    * feat(trajectory_follower): pub steer converged marker

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "feat(trajectory_follower): pub steer converged marker"

    This reverts commit a6f6917.

    Signed-off-by: kosuke55 <[email protected]>

    * add steer converged debug marker in contoller_node

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit 3c01f15
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 12:48:41 2022 +0900

    docs(tier4_state_rviz_plugin): update readme (autowarefoundation#2475)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit d8ece00
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 11:57:03 2022 +0900

    chore(simulator_compatibility_test): suppress setuptools warnings (autowarefoundation#2483)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 727586b
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 10:00:35 2022 +0900

    fix(behavior_path_planner): lane change candidate resolution (autowarefoundation#2426)

    * fix(behavior_path_planner): lane change candidate resolution

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * rework sampling based  on current speed

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * refactor code

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * use util's resampler

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * consider min_resampling_points and resampling dt

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    * simplify code

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Signed-off-by: Muhammad Zulfaqar <[email protected]>

commit 284548c
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 09:57:19 2022 +0900

    fix(behavior_path_planner): minimum distance for lane change (autowarefoundation#2413)

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

commit 469d892
Author: Ryohsuke Mitsudome <[email protected]>
Date:   Fri Dec 9 21:27:18 2022 +0900

    revert(behavior_path): revert removal of refineGoalFunction (autowarefoundation#2340)" (autowarefoundation#2485)

    This reverts commit 8e13ced.

    Signed-off-by: mitsudome-r <[email protected]>

    Signed-off-by: mitsudome-r <[email protected]>

commit d924f85
Author: NorahXiong <[email protected]>
Date:   Fri Dec 9 19:53:51 2022 +0800

    fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (autowarefoundation#2350)

    Signed-off-by: NorahXiong <[email protected]>

    Signed-off-by: NorahXiong <[email protected]>
    Co-authored-by: Ryohsuke Mitsudome <[email protected]>

commit b2ded82
Author: badai nguyen <[email protected]>
Date:   Fri Dec 9 17:12:13 2022 +0900

    fix(ground-segmentation): recheck gnd cluster pointcloud (autowarefoundation#2448)

    * fix: reclassify ground cluster pcl

    Signed-off-by: badai-nguyen <[email protected]>

    * fix: add lowest-based recheck

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    Signed-off-by: badai-nguyen <[email protected]>
    Co-authored-by: Shunsuke Miura <[email protected]>

commit 8906a1e
Author: Takamasa Horibe <[email protected]>
Date:   Fri Dec 9 16:29:45 2022 +0900

    fix(trajectory_follower): fix mpc trajectory z pos (autowarefoundation#2482)

    Signed-off-by: takahoribe <[email protected]>

    Signed-off-by: takahoribe <[email protected]>

commit d493905
Author: Yutaka Shimizu <[email protected]>
Date:   Fri Dec 9 12:40:30 2022 +0900

    feat(behavior_velocity_planner): clean walkway module (autowarefoundation#2480)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit d3b86a3
Author: Makoto Kurihara <[email protected]>
Date:   Thu Dec 8 22:59:32 2022 +0900

    fix(emergency_handler): fix mrm handling when mrm behavior is none (autowarefoundation#2476)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit 2dde073
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 8 17:16:13 2022 +0900

    feat(behavior_velocity_planner): add velocity factors (autowarefoundation#1985)

    * (editting) add intersection_coordination to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add intersection coordination to stop reasons

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) add v2x to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 publisher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 to  scene modules

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * add stop reason2 to obstacle stop planner and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Modify files including unintended change by rebase

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * fix error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * modification for renaming stop_reason2 to motion_factor

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) rename variables

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * bug fix

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Solved build error, but not launched

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing launch error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Fix error in launching motion factor aggregator

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * pull the latest foundation/main

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * feat: add velocity factor interface

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: stop sign

    Signed-off-by: Takagi, Isamu <[email protected]>

    * WIP

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update visualizer

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: modify traffic light manager

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update velocity factors

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move adapi msgs

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old aggregator

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: rename message

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add using

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: use nan as default distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: set virtual traffic light detail

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: remove debug code

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: copyright

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: TakumiKozaka-T4 <[email protected]>
    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: TakumiKozaka-T4 <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a5057e
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 8 13:42:50 2022 +0900

    fix(freespace_planning_algorithms): comment out failing tests (autowarefoundation#2440)

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit cddb8c7
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:57:04 2022 +0900

    feat(gyro_odometer): publish twist when both data arrives (autowarefoundation#2423)

    * feat(gyro_odometer): publish when both data arrive

    Signed-off-by: kminoda <[email protected]>

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * use latest timestamp

    Signed-off-by: kminoda <[email protected]>

    * small fix

    Signed-off-by: kminoda <[email protected]>

    * debugged

    Signed-off-by: kminoda <[email protected]>

    * update gyro_odometer

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix timestamp validation flow

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * pre-commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit f0f513c
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:08:29 2022 +0900

    fix: remove unnecessary DEBUG_INFO declarations (autowarefoundation#2457)

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>

commit 01daebf
Author: Takayuki Murooka <[email protected]>
Date:   Thu Dec 8 00:28:35 2022 +0900

    fix(tier4_autoware_api_launch): add rosbridge_server dependency (autowarefoundation#2470)

    Signed-off-by: Takayuki Murooka <[email protected]>

    Signed-off-by: Takayuki Murooka <[email protected]>

commit 26ef817
Author: Shumpei Wakabayashi <[email protected]>
Date:   Wed Dec 7 19:32:09 2022 +0900

    fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (autowarefoundation#2455)

    * fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

    * ci(pre-commit): autofix

    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 024b993
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 18:00:32 2022 +0900

    fix(motion_utils): rename sampling function (autowarefoundation#2469)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c240ce2
Author: Yukihiro Saito <[email protected]>
Date:   Wed Dec 7 16:33:44 2022 +0900

    feat: remove web controller (autowarefoundation#2405)

    Signed-off-by: Yukihiro Saito <[email protected]>

    Signed-off-by: Yukihiro Saito <[email protected]>

commit 2992b1c
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 15:39:28 2022 +0900

    feat(motion_utils): add points resample function (autowarefoundation#2465)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 4a75d7c
Author: Mingyu1991 <[email protected]>
Date:   Wed Dec 7 14:42:33 2022 +0900

    docs: update training data for traffic light (autowarefoundation#2464)

    * update traffic light cnn classifier README.md

    * correct to upper case

    Co-authored-by: Daisuke Nishimatsu <[email protected]>

commit a428716
Author: Ryuta Kambe <[email protected]>
Date:   Wed Dec 7 12:21:49 2022 +0900

    perf(behavior_velocity_planner): remove unnecessary debug data (autowarefoundation#2462)

    Signed-off-by: veqcc <[email protected]>

commit 0a5b285
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 12:03:46 2022 +0900

    feat(behavior_path_planner): cut overlapped path (autowarefoundation#2451)

    * feat(behavior_path_planner): cut overlapped path

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 65003dc
Author: Takagi, Isamu <[email protected]>
Date:   Wed Dec 7 11:06:41 2022 +0900

    revert(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407) (autowarefoundation#2460)

    Revert "fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)"

    This reverts commit c422485.

commit fab1867
Author: Makoto Kurihara <[email protected]>
Date:   Wed Dec 7 10:32:41 2022 +0900

    fix(raw_vehicle_cmd_converter): fix column index for map validation (autowarefoundation#2450)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit a1d3c80
Author: Ambroise Vincent <[email protected]>
Date:   Tue Dec 6 10:39:02 2022 +0100

    fix(tvm_utility): copy test result to CPU (autowarefoundation#2414)

    Also remove dependency to autoware_auto_common.

    Issue-Id: SCM-5401
    Signed-off-by: Ambroise Vincent <[email protected]>
    Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

    Signed-off-by: Ambroise Vincent <[email protected]>
    Co-authored-by: Xinyu Wang <[email protected]>

commit eb99468
Author: Mamoru Sobue <[email protected]>
Date:   Tue Dec 6 18:11:41 2022 +0900

    chore(behaviror_velocity_planner): changed logging level for intersection (autowarefoundation#2459)

    changed logging level

    Signed-off-by: Mamoru Sobue <[email protected]>

commit c422485
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 6 17:01:37 2022 +0900

    fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)

    * fix(default_ad_api): fix autoware state to add wait time

    Signed-off-by: Takagi, Isamu <[email protected]>

    * Update system/default_ad_api/src/compatibility/autoware_state.cpp

    Co-authored-by: Kenji Miyake <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: Kenji Miyake <[email protected]>

commit f984fbb
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 6 13:55:17 2022 +0900

    feat(transition_manager): add param to ignore autonomous transition condition (autowarefoundation#2453)

    * feat(transition_manager): add param to ignore autonomous transition condition

    Signed-off-by: Takamasa Horibe <[email protected]>

    * same for modeChangeCompleted

    Signed-off-by: Takamasa Horibe <[email protected]>

    * remove debug print

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit d3e640d
Author: Tomoya Kimura <[email protected]>
Date:   Tue Dec 6 13:01:06 2022 +0900

    feat(operation_mode_transition_manager): transition to auto quickly when vehicle stops (autowarefoundation#2427)

    Signed-off-by: tomoya.kimura <[email protected]>

    Signed-off-by: tomoya.kimura <[email protected]>
kminoda pushed a commit to kminoda/autoware.universe that referenced this pull request Jan 6, 2023
kyoichi-sugahara added a commit that referenced this pull request Jan 25, 2023
* delete wall marker in intersection module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in stop_line module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in blind_spot module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in no_stopping_area

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in run_out module

Signed-off-by: kyoichi-sugahara <[email protected]>

* make motion util function to delete wall marker

Signed-off-by: kyoichi-sugahara <[email protected]>

* add common function

* temp

* fix(default_ad_api): fix autoware state to add wait time (#2407)

* fix(default_ad_api): fix autoware state to add wait time

Signed-off-by: Takagi, Isamu <[email protected]>

* Update system/default_ad_api/src/compatibility/autoware_state.cpp

Co-authored-by: Kenji Miyake <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>

* chore(behaviror_velocity_planner): changed logging level for intersection (#2459)

changed logging level

Signed-off-by: Mamoru Sobue <[email protected]>

* fix(tvm_utility): copy test result to CPU (#2414)

Also remove dependency to autoware_auto_common.

Issue-Id: SCM-5401
Signed-off-by: Ambroise Vincent <[email protected]>
Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

Signed-off-by: Ambroise Vincent <[email protected]>
Co-authored-by: Xinyu Wang <[email protected]>

* fix(raw_vehicle_cmd_converter): fix column index for map validation (#2450)

Signed-off-by: Makoto Kurihara <[email protected]>

Signed-off-by: Makoto Kurihara <[email protected]>

* revert(default_ad_api): fix autoware state to add wait time (#2407) (#2460)

Revert "fix(default_ad_api): fix autoware state to add wait time (#2407)"

This reverts commit c422485.

* feat(behavior_path_planner): cut overlapped path (#2451)

* feat(behavior_path_planner): cut overlapped path

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* perf(behavior_velocity_planner): remove unnecessary debug data (#2462)

Signed-off-by: veqcc <[email protected]>

* docs: update training data for traffic light (#2464)

* update traffic light cnn classifier README.md

* correct to upper case

Co-authored-by: Daisuke Nishimatsu <[email protected]>

* feat(motion_utils): add points resample function (#2465)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat: remove web controller (#2405)

Signed-off-by: Yukihiro Saito <[email protected]>

Signed-off-by: Yukihiro Saito <[email protected]>

* fix(motion_utils): rename sampling function (#2469)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (#2455)

* fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(tier4_autoware_api_launch): add rosbridge_server dependency (#2470)

Signed-off-by: Takayuki Murooka <[email protected]>

Signed-off-by: Takayuki Murooka <[email protected]>

* fix: remove unnecessary DEBUG_INFO declarations (#2457)

Signed-off-by: kminoda <[email protected]>

Signed-off-by: kminoda <[email protected]>

* feat(gyro_odometer): publish twist when both data arrives (#2423)

* feat(gyro_odometer): publish when both data arrive

Signed-off-by: kminoda <[email protected]>

* remove unnecessary commentouts

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* use latest timestamp

Signed-off-by: kminoda <[email protected]>

* small fix

Signed-off-by: kminoda <[email protected]>

* debugged

Signed-off-by: kminoda <[email protected]>

* update gyro_odometer

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* add comments

Signed-off-by: kminoda <[email protected]>

* add comments

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* fix timestamp validation flow

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* remove unnecessary commentouts

Signed-off-by: kminoda <[email protected]>

* pre-commit

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: kminoda <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(freespace_planning_algorithms): comment out failing tests (#2440)

Signed-off-by: kosuke55 <[email protected]>

Signed-off-by: kosuke55 <[email protected]>

* feat(behavior_velocity_planner): add velocity factors (#1985)

* (editting) add intersection_coordination to stop reason

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add intersection coordination to stop reasons

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (Editting) add v2x to stop reason

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add stop reason2 publisher

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add stop reason2 to  scene modules

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* add stop reason2 to obstacle stop planner and surround obstacle checker

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Modify files including unintended change by rebase

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* fix error

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* modification for renaming stop_reason2 to motion_factor

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (Editting) rename variables

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* bug fix

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Solved build error, but not launched

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing error in launch

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing error in launch

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing launch error

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Fix error in launching motion factor aggregator

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* pull the latest foundation/main

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* feat: add velocity factor interface

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: fix build error

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: stop sign

Signed-off-by: Takagi, Isamu <[email protected]>

* WIP

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update visualizer

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: modify traffic light manager

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update velocity factors

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update api

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: move adapi msgs

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: remove old aggregator

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: move api

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: rename message

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add using

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add distance

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: fix build error

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: use nan as default distance

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: set virtual traffic light detail

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: remove debug code

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: copyright

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: TakumiKozaka-T4 <[email protected]>
Signed-off-by: Takagi, Isamu <[email protected]>
Co-authored-by: TakumiKozaka-T4 <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(emergency_handler): fix mrm handling when mrm behavior is none (#2476)

Signed-off-by: Makoto Kurihara <[email protected]>

Signed-off-by: Makoto Kurihara <[email protected]>

* feat(behavior_velocity_planner): clean walkway module (#2480)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix(trajectory_follower): fix mpc trajectory z pos (#2482)

Signed-off-by: takahoribe <[email protected]>

Signed-off-by: takahoribe <[email protected]>

* fix(ground-segmentation): recheck gnd cluster pointcloud (#2448)

* fix: reclassify ground cluster pcl

Signed-off-by: badai-nguyen <[email protected]>

* fix: add lowest-based recheck

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactoring

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactoring

Signed-off-by: badai-nguyen <[email protected]>

Signed-off-by: badai-nguyen <[email protected]>
Co-authored-by: Shunsuke Miura <[email protected]>

* fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (#2350)

Signed-off-by: NorahXiong <[email protected]>

Signed-off-by: NorahXiong <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>

* revert(behavior_path): revert removal of refineGoalFunction (#2340)" (#2485)

This reverts commit 8e13ced.

Signed-off-by: mitsudome-r <[email protected]>

Signed-off-by: mitsudome-r <[email protected]>

* fix(behavior_path_planner): minimum distance for lane change (#2413)

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* fix(behavior_path_planner): lane change candidate resolution (#2426)

* fix(behavior_path_planner): lane change candidate resolution

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* rework sampling based  on current speed

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* refactor code

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* use util's resampler

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* consider min_resampling_points and resampling dt

Signed-off-by: Muhammad Zulfaqar <[email protected]>

* simplify code

Signed-off-by: Muhammad Zulfaqar <[email protected]>

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
Signed-off-by: Muhammad Zulfaqar <[email protected]>

* chore(simulator_compatibility_test): suppress setuptools warnings (#2483)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* docs(tier4_state_rviz_plugin): update readme (#2475)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(trajectory_follower): pub steer converged marker (#2441)

* feat(trajectory_follower): pub steer converged marker

Signed-off-by: kosuke55 <[email protected]>

* Revert "feat(trajectory_follower): pub steer converged marker"

This reverts commit a6f6917.

Signed-off-by: kosuke55 <[email protected]>

* add steer converged debug marker in contoller_node

Signed-off-by: kosuke55 <[email protected]>

Signed-off-by: kosuke55 <[email protected]>

* feat: replace python launch with xml launch for system monitor (#2430)

* feat: replace python launch with xml launch for system monitor

Signed-off-by: Daisuke Nishimatsu <[email protected]>

* ci(pre-commit): autofix

* update figure

Signed-off-by: Daisuke Nishimatsu <[email protected]>

Signed-off-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* refactor(vehicle_cmd_gate): remove old emergency topics (#2403)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (#2472)

* update

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update obstacle avoidance planner

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

* uddate

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

* remove resample

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* add orientation

Signed-off-by: yutaka <[email protected]>

* change color

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* remove drivable area

Signed-off-by: yutaka <[email protected]>

* add flag

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update color

Signed-off-by: yutaka <[email protected]>

* fix some codes

Signed-off-by: yutaka <[email protected]>

* change to makerker array

Signed-off-by: yutaka <[email protected]>

* change avoidance utils

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(default_ad_api): split parameters into file (#2488)

* feat(default_ad_api): split parameters into file

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: remove old parameter

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: test

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add default config

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* docs(default_ad_api): add readme (#2491)

* docs(default_ad_api): add readme

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update table

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(map_loader): add differential map loading interface (#2417)

* first commit

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* added module load in _node.cpp

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* create pcd metadata dict when either of the flag is true

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* fix readme

* ci(pre-commit): autofix

Signed-off-by: kminoda <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(behavior_path_planner): change turn signal output timing (#2493)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (#2494)

* feat(behavior_path_planner): clean drivable area code

Signed-off-by: yutaka <[email protected]>

* make a function for turn signal decider

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(trajectory_visualizer): update for steer limit, remove tf for pose source (#2267)

Signed-off-by: Takamasa Horibe <[email protected]>

Signed-off-by: Takamasa Horibe <[email protected]>

* feat(mission_planner): check goal footprint (#2088)

Signed-off-by: ismet atabay <[email protected]>

* feat(behavior_path_planner): fix overlap checker (#2498)

* feat(behavior_path_planner): fix overlap checker

Signed-off-by: yutaka <[email protected]>

* remove reserve

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix(behavior_path_planner): fix find nearest function from lateral distance (#2499)

* feat(behavior_path_planner): fix find nearest function from lateral distance

* empty commit

* fix(behavior_path_planner): fix planner data copy (#2501)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* refactor(simple_planning_simulator): make function for duplicated code (#2502)

Signed-off-by: Takamasa Horibe <[email protected]>

Signed-off-by: Takamasa Horibe <[email protected]>

* fix build error

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* revert intersection module change

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in intersection module

Signed-off-by: kyoichi-sugahara <[email protected]>

* compare pose with resample_uitils

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in merge_from_private module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in no_stopping_area

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* add dead line creator

Signed-off-by: kyoichi-sugahara <[email protected]>

* fix base function

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in each module

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* empty gurad

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* instantiation wall maeker creator

Signed-off-by: kyoichi-sugahara <[email protected]>

* initialize pointer

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* define create_wall_function and delete_wall_function in VirtualWallMarkerCreator

Signed-off-by: kyoichi-sugahara <[email protected]>

* change instance name

Signed-off-by: kyoichi-sugahara <[email protected]>

Signed-off-by: kyoichi-sugahara <[email protected]>
Signed-off-by: Takagi, Isamu <[email protected]>
Signed-off-by: Mamoru Sobue <[email protected]>
Signed-off-by: Ambroise Vincent <[email protected]>
Signed-off-by: Makoto Kurihara <[email protected]>
Signed-off-by: yutaka <[email protected]>
Signed-off-by: veqcc <[email protected]>
Signed-off-by: Yukihiro Saito <[email protected]>
Signed-off-by: Takayuki Murooka <[email protected]>
Signed-off-by: kminoda <[email protected]>
Signed-off-by: kosuke55 <[email protected]>
Signed-off-by: TakumiKozaka-T4 <[email protected]>
Signed-off-by: takahoribe <[email protected]>
Signed-off-by: badai-nguyen <[email protected]>
Signed-off-by: NorahXiong <[email protected]>
Signed-off-by: mitsudome-r <[email protected]>
Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
Signed-off-by: Muhammad Zulfaqar <[email protected]>
Signed-off-by: Daisuke Nishimatsu <[email protected]>
Signed-off-by: Takamasa Horibe <[email protected]>
Signed-off-by: ismet atabay <[email protected]>
Co-authored-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>
Co-authored-by: Mamoru Sobue <[email protected]>
Co-authored-by: Ambroise Vincent <[email protected]>
Co-authored-by: Xinyu Wang <[email protected]>
Co-authored-by: Makoto Kurihara <[email protected]>
Co-authored-by: Yutaka Shimizu <[email protected]>
Co-authored-by: Ryuta Kambe <[email protected]>
Co-authored-by: Mingyu1991 <[email protected]>
Co-authored-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: Yukihiro Saito <[email protected]>
Co-authored-by: Shumpei Wakabayashi <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <[email protected]>
Co-authored-by: kminoda <[email protected]>
Co-authored-by: Kosuke Takeuchi <[email protected]>
Co-authored-by: TakumiKozaka-T4 <[email protected]>
Co-authored-by: Takamasa Horibe <[email protected]>
Co-authored-by: badai nguyen <[email protected]>
Co-authored-by: Shunsuke Miura <[email protected]>
Co-authored-by: NorahXiong <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: Ismet Atabay <[email protected]>
maxime-clem pushed a commit to maxime-clem/autoware.universe that referenced this pull request Jan 30, 2023
…tion#2506)

* delete wall marker in intersection module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in stop_line module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in blind_spot module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in no_stopping_area

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in run_out module

Signed-off-by: kyoichi-sugahara <[email protected]>

* make motion util function to delete wall marker

Signed-off-by: kyoichi-sugahara <[email protected]>

* add common function

* temp

* fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)

* fix(default_ad_api): fix autoware state to add wait time

Signed-off-by: Takagi, Isamu <[email protected]>

* Update system/default_ad_api/src/compatibility/autoware_state.cpp

Co-authored-by: Kenji Miyake <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>

* chore(behaviror_velocity_planner): changed logging level for intersection (autowarefoundation#2459)

changed logging level

Signed-off-by: Mamoru Sobue <[email protected]>

* fix(tvm_utility): copy test result to CPU (autowarefoundation#2414)

Also remove dependency to autoware_auto_common.

Issue-Id: SCM-5401
Signed-off-by: Ambroise Vincent <[email protected]>
Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

Signed-off-by: Ambroise Vincent <[email protected]>
Co-authored-by: Xinyu Wang <[email protected]>

* fix(raw_vehicle_cmd_converter): fix column index for map validation (autowarefoundation#2450)

Signed-off-by: Makoto Kurihara <[email protected]>

Signed-off-by: Makoto Kurihara <[email protected]>

* revert(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407) (autowarefoundation#2460)

Revert "fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)"

This reverts commit c422485.

* feat(behavior_path_planner): cut overlapped path (autowarefoundation#2451)

* feat(behavior_path_planner): cut overlapped path

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* perf(behavior_velocity_planner): remove unnecessary debug data (autowarefoundation#2462)

Signed-off-by: veqcc <[email protected]>

* docs: update training data for traffic light (autowarefoundation#2464)

* update traffic light cnn classifier README.md

* correct to upper case

Co-authored-by: Daisuke Nishimatsu <[email protected]>

* feat(motion_utils): add points resample function (autowarefoundation#2465)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat: remove web controller (autowarefoundation#2405)

Signed-off-by: Yukihiro Saito <[email protected]>

Signed-off-by: Yukihiro Saito <[email protected]>

* fix(motion_utils): rename sampling function (autowarefoundation#2469)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (autowarefoundation#2455)

* fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(tier4_autoware_api_launch): add rosbridge_server dependency (autowarefoundation#2470)

Signed-off-by: Takayuki Murooka <[email protected]>

Signed-off-by: Takayuki Murooka <[email protected]>

* fix: remove unnecessary DEBUG_INFO declarations (autowarefoundation#2457)

Signed-off-by: kminoda <[email protected]>

Signed-off-by: kminoda <[email protected]>

* feat(gyro_odometer): publish twist when both data arrives (autowarefoundation#2423)

* feat(gyro_odometer): publish when both data arrive

Signed-off-by: kminoda <[email protected]>

* remove unnecessary commentouts

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* use latest timestamp

Signed-off-by: kminoda <[email protected]>

* small fix

Signed-off-by: kminoda <[email protected]>

* debugged

Signed-off-by: kminoda <[email protected]>

* update gyro_odometer

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* add comments

Signed-off-by: kminoda <[email protected]>

* add comments

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* fix timestamp validation flow

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* remove unnecessary commentouts

Signed-off-by: kminoda <[email protected]>

* pre-commit

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: kminoda <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(freespace_planning_algorithms): comment out failing tests (autowarefoundation#2440)

Signed-off-by: kosuke55 <[email protected]>

Signed-off-by: kosuke55 <[email protected]>

* feat(behavior_velocity_planner): add velocity factors (autowarefoundation#1985)

* (editting) add intersection_coordination to stop reason

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add intersection coordination to stop reasons

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (Editting) add v2x to stop reason

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add stop reason2 publisher

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add stop reason2 to  scene modules

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* add stop reason2 to obstacle stop planner and surround obstacle checker

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Modify files including unintended change by rebase

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* fix error

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* modification for renaming stop_reason2 to motion_factor

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (Editting) rename variables

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* bug fix

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Solved build error, but not launched

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing error in launch

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing error in launch

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing launch error

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Fix error in launching motion factor aggregator

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* pull the latest foundation/main

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* feat: add velocity factor interface

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: fix build error

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: stop sign

Signed-off-by: Takagi, Isamu <[email protected]>

* WIP

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update visualizer

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: modify traffic light manager

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update velocity factors

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update api

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: move adapi msgs

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: remove old aggregator

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: move api

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: rename message

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add using

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add distance

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: fix build error

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: use nan as default distance

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: set virtual traffic light detail

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: remove debug code

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: copyright

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: TakumiKozaka-T4 <[email protected]>
Signed-off-by: Takagi, Isamu <[email protected]>
Co-authored-by: TakumiKozaka-T4 <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(emergency_handler): fix mrm handling when mrm behavior is none (autowarefoundation#2476)

Signed-off-by: Makoto Kurihara <[email protected]>

Signed-off-by: Makoto Kurihara <[email protected]>

* feat(behavior_velocity_planner): clean walkway module (autowarefoundation#2480)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix(trajectory_follower): fix mpc trajectory z pos (autowarefoundation#2482)

Signed-off-by: takahoribe <[email protected]>

Signed-off-by: takahoribe <[email protected]>

* fix(ground-segmentation): recheck gnd cluster pointcloud (autowarefoundation#2448)

* fix: reclassify ground cluster pcl

Signed-off-by: badai-nguyen <[email protected]>

* fix: add lowest-based recheck

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactoring

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactoring

Signed-off-by: badai-nguyen <[email protected]>

Signed-off-by: badai-nguyen <[email protected]>
Co-authored-by: Shunsuke Miura <[email protected]>

* fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (autowarefoundation#2350)

Signed-off-by: NorahXiong <[email protected]>

Signed-off-by: NorahXiong <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>

* revert(behavior_path): revert removal of refineGoalFunction (autowarefoundation#2340)" (autowarefoundation#2485)

This reverts commit 8e13ced.

Signed-off-by: mitsudome-r <[email protected]>

Signed-off-by: mitsudome-r <[email protected]>

* fix(behavior_path_planner): minimum distance for lane change (autowarefoundation#2413)

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* fix(behavior_path_planner): lane change candidate resolution (autowarefoundation#2426)

* fix(behavior_path_planner): lane change candidate resolution

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* rework sampling based  on current speed

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* refactor code

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* use util's resampler

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* consider min_resampling_points and resampling dt

Signed-off-by: Muhammad Zulfaqar <[email protected]>

* simplify code

Signed-off-by: Muhammad Zulfaqar <[email protected]>

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
Signed-off-by: Muhammad Zulfaqar <[email protected]>

* chore(simulator_compatibility_test): suppress setuptools warnings (autowarefoundation#2483)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* docs(tier4_state_rviz_plugin): update readme (autowarefoundation#2475)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(trajectory_follower): pub steer converged marker (autowarefoundation#2441)

* feat(trajectory_follower): pub steer converged marker

Signed-off-by: kosuke55 <[email protected]>

* Revert "feat(trajectory_follower): pub steer converged marker"

This reverts commit a6f6917.

Signed-off-by: kosuke55 <[email protected]>

* add steer converged debug marker in contoller_node

Signed-off-by: kosuke55 <[email protected]>

Signed-off-by: kosuke55 <[email protected]>

* feat: replace python launch with xml launch for system monitor (autowarefoundation#2430)

* feat: replace python launch with xml launch for system monitor

Signed-off-by: Daisuke Nishimatsu <[email protected]>

* ci(pre-commit): autofix

* update figure

Signed-off-by: Daisuke Nishimatsu <[email protected]>

Signed-off-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* refactor(vehicle_cmd_gate): remove old emergency topics (autowarefoundation#2403)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (autowarefoundation#2472)

* update

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update obstacle avoidance planner

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

* uddate

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

* remove resample

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* add orientation

Signed-off-by: yutaka <[email protected]>

* change color

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* remove drivable area

Signed-off-by: yutaka <[email protected]>

* add flag

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update color

Signed-off-by: yutaka <[email protected]>

* fix some codes

Signed-off-by: yutaka <[email protected]>

* change to makerker array

Signed-off-by: yutaka <[email protected]>

* change avoidance utils

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(default_ad_api): split parameters into file (autowarefoundation#2488)

* feat(default_ad_api): split parameters into file

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: remove old parameter

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: test

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add default config

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* docs(default_ad_api): add readme (autowarefoundation#2491)

* docs(default_ad_api): add readme

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update table

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(map_loader): add differential map loading interface (autowarefoundation#2417)

* first commit

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* added module load in _node.cpp

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* create pcd metadata dict when either of the flag is true

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* fix readme

* ci(pre-commit): autofix

Signed-off-by: kminoda <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(behavior_path_planner): change turn signal output timing (autowarefoundation#2493)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (autowarefoundation#2494)

* feat(behavior_path_planner): clean drivable area code

Signed-off-by: yutaka <[email protected]>

* make a function for turn signal decider

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(trajectory_visualizer): update for steer limit, remove tf for pose source (autowarefoundation#2267)

Signed-off-by: Takamasa Horibe <[email protected]>

Signed-off-by: Takamasa Horibe <[email protected]>

* feat(mission_planner): check goal footprint (autowarefoundation#2088)

Signed-off-by: ismet atabay <[email protected]>

* feat(behavior_path_planner): fix overlap checker (autowarefoundation#2498)

* feat(behavior_path_planner): fix overlap checker

Signed-off-by: yutaka <[email protected]>

* remove reserve

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix(behavior_path_planner): fix find nearest function from lateral distance (autowarefoundation#2499)

* feat(behavior_path_planner): fix find nearest function from lateral distance

* empty commit

* fix(behavior_path_planner): fix planner data copy (autowarefoundation#2501)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* refactor(simple_planning_simulator): make function for duplicated code (autowarefoundation#2502)

Signed-off-by: Takamasa Horibe <[email protected]>

Signed-off-by: Takamasa Horibe <[email protected]>

* fix build error

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* revert intersection module change

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in intersection module

Signed-off-by: kyoichi-sugahara <[email protected]>

* compare pose with resample_uitils

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in merge_from_private module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in no_stopping_area

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* add dead line creator

Signed-off-by: kyoichi-sugahara <[email protected]>

* fix base function

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in each module

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* empty gurad

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* instantiation wall maeker creator

Signed-off-by: kyoichi-sugahara <[email protected]>

* initialize pointer

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* define create_wall_function and delete_wall_function in VirtualWallMarkerCreator

Signed-off-by: kyoichi-sugahara <[email protected]>

* change instance name

Signed-off-by: kyoichi-sugahara <[email protected]>

Signed-off-by: kyoichi-sugahara <[email protected]>
Signed-off-by: Takagi, Isamu <[email protected]>
Signed-off-by: Mamoru Sobue <[email protected]>
Signed-off-by: Ambroise Vincent <[email protected]>
Signed-off-by: Makoto Kurihara <[email protected]>
Signed-off-by: yutaka <[email protected]>
Signed-off-by: veqcc <[email protected]>
Signed-off-by: Yukihiro Saito <[email protected]>
Signed-off-by: Takayuki Murooka <[email protected]>
Signed-off-by: kminoda <[email protected]>
Signed-off-by: kosuke55 <[email protected]>
Signed-off-by: TakumiKozaka-T4 <[email protected]>
Signed-off-by: takahoribe <[email protected]>
Signed-off-by: badai-nguyen <[email protected]>
Signed-off-by: NorahXiong <[email protected]>
Signed-off-by: mitsudome-r <[email protected]>
Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
Signed-off-by: Muhammad Zulfaqar <[email protected]>
Signed-off-by: Daisuke Nishimatsu <[email protected]>
Signed-off-by: Takamasa Horibe <[email protected]>
Signed-off-by: ismet atabay <[email protected]>
Co-authored-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>
Co-authored-by: Mamoru Sobue <[email protected]>
Co-authored-by: Ambroise Vincent <[email protected]>
Co-authored-by: Xinyu Wang <[email protected]>
Co-authored-by: Makoto Kurihara <[email protected]>
Co-authored-by: Yutaka Shimizu <[email protected]>
Co-authored-by: Ryuta Kambe <[email protected]>
Co-authored-by: Mingyu1991 <[email protected]>
Co-authored-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: Yukihiro Saito <[email protected]>
Co-authored-by: Shumpei Wakabayashi <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <[email protected]>
Co-authored-by: kminoda <[email protected]>
Co-authored-by: Kosuke Takeuchi <[email protected]>
Co-authored-by: TakumiKozaka-T4 <[email protected]>
Co-authored-by: Takamasa Horibe <[email protected]>
Co-authored-by: badai nguyen <[email protected]>
Co-authored-by: Shunsuke Miura <[email protected]>
Co-authored-by: NorahXiong <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: Ismet Atabay <[email protected]>
lexavtanke pushed a commit to lexavtanke/autoware.universe that referenced this pull request Jan 31, 2023
…tion#2506)

* delete wall marker in intersection module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in stop_line module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in blind_spot module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in no_stopping_area

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in run_out module

Signed-off-by: kyoichi-sugahara <[email protected]>

* make motion util function to delete wall marker

Signed-off-by: kyoichi-sugahara <[email protected]>

* add common function

* temp

* fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)

* fix(default_ad_api): fix autoware state to add wait time

Signed-off-by: Takagi, Isamu <[email protected]>

* Update system/default_ad_api/src/compatibility/autoware_state.cpp

Co-authored-by: Kenji Miyake <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>

* chore(behaviror_velocity_planner): changed logging level for intersection (autowarefoundation#2459)

changed logging level

Signed-off-by: Mamoru Sobue <[email protected]>

* fix(tvm_utility): copy test result to CPU (autowarefoundation#2414)

Also remove dependency to autoware_auto_common.

Issue-Id: SCM-5401
Signed-off-by: Ambroise Vincent <[email protected]>
Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

Signed-off-by: Ambroise Vincent <[email protected]>
Co-authored-by: Xinyu Wang <[email protected]>

* fix(raw_vehicle_cmd_converter): fix column index for map validation (autowarefoundation#2450)

Signed-off-by: Makoto Kurihara <[email protected]>

Signed-off-by: Makoto Kurihara <[email protected]>

* revert(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407) (autowarefoundation#2460)

Revert "fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)"

This reverts commit c422485.

* feat(behavior_path_planner): cut overlapped path (autowarefoundation#2451)

* feat(behavior_path_planner): cut overlapped path

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* perf(behavior_velocity_planner): remove unnecessary debug data (autowarefoundation#2462)

Signed-off-by: veqcc <[email protected]>

* docs: update training data for traffic light (autowarefoundation#2464)

* update traffic light cnn classifier README.md

* correct to upper case

Co-authored-by: Daisuke Nishimatsu <[email protected]>

* feat(motion_utils): add points resample function (autowarefoundation#2465)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat: remove web controller (autowarefoundation#2405)

Signed-off-by: Yukihiro Saito <[email protected]>

Signed-off-by: Yukihiro Saito <[email protected]>

* fix(motion_utils): rename sampling function (autowarefoundation#2469)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (autowarefoundation#2455)

* fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(tier4_autoware_api_launch): add rosbridge_server dependency (autowarefoundation#2470)

Signed-off-by: Takayuki Murooka <[email protected]>

Signed-off-by: Takayuki Murooka <[email protected]>

* fix: remove unnecessary DEBUG_INFO declarations (autowarefoundation#2457)

Signed-off-by: kminoda <[email protected]>

Signed-off-by: kminoda <[email protected]>

* feat(gyro_odometer): publish twist when both data arrives (autowarefoundation#2423)

* feat(gyro_odometer): publish when both data arrive

Signed-off-by: kminoda <[email protected]>

* remove unnecessary commentouts

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* use latest timestamp

Signed-off-by: kminoda <[email protected]>

* small fix

Signed-off-by: kminoda <[email protected]>

* debugged

Signed-off-by: kminoda <[email protected]>

* update gyro_odometer

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* add comments

Signed-off-by: kminoda <[email protected]>

* add comments

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* fix timestamp validation flow

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* remove unnecessary commentouts

Signed-off-by: kminoda <[email protected]>

* pre-commit

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: kminoda <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(freespace_planning_algorithms): comment out failing tests (autowarefoundation#2440)

Signed-off-by: kosuke55 <[email protected]>

Signed-off-by: kosuke55 <[email protected]>

* feat(behavior_velocity_planner): add velocity factors (autowarefoundation#1985)

* (editting) add intersection_coordination to stop reason

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add intersection coordination to stop reasons

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (Editting) add v2x to stop reason

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add stop reason2 publisher

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add stop reason2 to  scene modules

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* add stop reason2 to obstacle stop planner and surround obstacle checker

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Modify files including unintended change by rebase

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* fix error

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* modification for renaming stop_reason2 to motion_factor

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (Editting) rename variables

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* bug fix

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Solved build error, but not launched

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing error in launch

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing error in launch

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing launch error

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Fix error in launching motion factor aggregator

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* pull the latest foundation/main

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* feat: add velocity factor interface

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: fix build error

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: stop sign

Signed-off-by: Takagi, Isamu <[email protected]>

* WIP

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update visualizer

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: modify traffic light manager

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update velocity factors

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update api

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: move adapi msgs

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: remove old aggregator

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: move api

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: rename message

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add using

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add distance

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: fix build error

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: use nan as default distance

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: set virtual traffic light detail

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: remove debug code

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: copyright

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: TakumiKozaka-T4 <[email protected]>
Signed-off-by: Takagi, Isamu <[email protected]>
Co-authored-by: TakumiKozaka-T4 <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(emergency_handler): fix mrm handling when mrm behavior is none (autowarefoundation#2476)

Signed-off-by: Makoto Kurihara <[email protected]>

Signed-off-by: Makoto Kurihara <[email protected]>

* feat(behavior_velocity_planner): clean walkway module (autowarefoundation#2480)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix(trajectory_follower): fix mpc trajectory z pos (autowarefoundation#2482)

Signed-off-by: takahoribe <[email protected]>

Signed-off-by: takahoribe <[email protected]>

* fix(ground-segmentation): recheck gnd cluster pointcloud (autowarefoundation#2448)

* fix: reclassify ground cluster pcl

Signed-off-by: badai-nguyen <[email protected]>

* fix: add lowest-based recheck

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactoring

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactoring

Signed-off-by: badai-nguyen <[email protected]>

Signed-off-by: badai-nguyen <[email protected]>
Co-authored-by: Shunsuke Miura <[email protected]>

* fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (autowarefoundation#2350)

Signed-off-by: NorahXiong <[email protected]>

Signed-off-by: NorahXiong <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>

* revert(behavior_path): revert removal of refineGoalFunction (autowarefoundation#2340)" (autowarefoundation#2485)

This reverts commit 8e13ced.

Signed-off-by: mitsudome-r <[email protected]>

Signed-off-by: mitsudome-r <[email protected]>

* fix(behavior_path_planner): minimum distance for lane change (autowarefoundation#2413)

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* fix(behavior_path_planner): lane change candidate resolution (autowarefoundation#2426)

* fix(behavior_path_planner): lane change candidate resolution

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* rework sampling based  on current speed

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* refactor code

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* use util's resampler

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* consider min_resampling_points and resampling dt

Signed-off-by: Muhammad Zulfaqar <[email protected]>

* simplify code

Signed-off-by: Muhammad Zulfaqar <[email protected]>

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
Signed-off-by: Muhammad Zulfaqar <[email protected]>

* chore(simulator_compatibility_test): suppress setuptools warnings (autowarefoundation#2483)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* docs(tier4_state_rviz_plugin): update readme (autowarefoundation#2475)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(trajectory_follower): pub steer converged marker (autowarefoundation#2441)

* feat(trajectory_follower): pub steer converged marker

Signed-off-by: kosuke55 <[email protected]>

* Revert "feat(trajectory_follower): pub steer converged marker"

This reverts commit a6f6917.

Signed-off-by: kosuke55 <[email protected]>

* add steer converged debug marker in contoller_node

Signed-off-by: kosuke55 <[email protected]>

Signed-off-by: kosuke55 <[email protected]>

* feat: replace python launch with xml launch for system monitor (autowarefoundation#2430)

* feat: replace python launch with xml launch for system monitor

Signed-off-by: Daisuke Nishimatsu <[email protected]>

* ci(pre-commit): autofix

* update figure

Signed-off-by: Daisuke Nishimatsu <[email protected]>

Signed-off-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* refactor(vehicle_cmd_gate): remove old emergency topics (autowarefoundation#2403)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (autowarefoundation#2472)

* update

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update obstacle avoidance planner

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

* uddate

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

* remove resample

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* add orientation

Signed-off-by: yutaka <[email protected]>

* change color

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* remove drivable area

Signed-off-by: yutaka <[email protected]>

* add flag

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update color

Signed-off-by: yutaka <[email protected]>

* fix some codes

Signed-off-by: yutaka <[email protected]>

* change to makerker array

Signed-off-by: yutaka <[email protected]>

* change avoidance utils

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(default_ad_api): split parameters into file (autowarefoundation#2488)

* feat(default_ad_api): split parameters into file

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: remove old parameter

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: test

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add default config

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* docs(default_ad_api): add readme (autowarefoundation#2491)

* docs(default_ad_api): add readme

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update table

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(map_loader): add differential map loading interface (autowarefoundation#2417)

* first commit

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* added module load in _node.cpp

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* create pcd metadata dict when either of the flag is true

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* fix readme

* ci(pre-commit): autofix

Signed-off-by: kminoda <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(behavior_path_planner): change turn signal output timing (autowarefoundation#2493)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (autowarefoundation#2494)

* feat(behavior_path_planner): clean drivable area code

Signed-off-by: yutaka <[email protected]>

* make a function for turn signal decider

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(trajectory_visualizer): update for steer limit, remove tf for pose source (autowarefoundation#2267)

Signed-off-by: Takamasa Horibe <[email protected]>

Signed-off-by: Takamasa Horibe <[email protected]>

* feat(mission_planner): check goal footprint (autowarefoundation#2088)

Signed-off-by: ismet atabay <[email protected]>

* feat(behavior_path_planner): fix overlap checker (autowarefoundation#2498)

* feat(behavior_path_planner): fix overlap checker

Signed-off-by: yutaka <[email protected]>

* remove reserve

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix(behavior_path_planner): fix find nearest function from lateral distance (autowarefoundation#2499)

* feat(behavior_path_planner): fix find nearest function from lateral distance

* empty commit

* fix(behavior_path_planner): fix planner data copy (autowarefoundation#2501)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* refactor(simple_planning_simulator): make function for duplicated code (autowarefoundation#2502)

Signed-off-by: Takamasa Horibe <[email protected]>

Signed-off-by: Takamasa Horibe <[email protected]>

* fix build error

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* revert intersection module change

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in intersection module

Signed-off-by: kyoichi-sugahara <[email protected]>

* compare pose with resample_uitils

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in merge_from_private module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in no_stopping_area

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* add dead line creator

Signed-off-by: kyoichi-sugahara <[email protected]>

* fix base function

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in each module

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* empty gurad

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* instantiation wall maeker creator

Signed-off-by: kyoichi-sugahara <[email protected]>

* initialize pointer

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* define create_wall_function and delete_wall_function in VirtualWallMarkerCreator

Signed-off-by: kyoichi-sugahara <[email protected]>

* change instance name

Signed-off-by: kyoichi-sugahara <[email protected]>

Signed-off-by: kyoichi-sugahara <[email protected]>
Signed-off-by: Takagi, Isamu <[email protected]>
Signed-off-by: Mamoru Sobue <[email protected]>
Signed-off-by: Ambroise Vincent <[email protected]>
Signed-off-by: Makoto Kurihara <[email protected]>
Signed-off-by: yutaka <[email protected]>
Signed-off-by: veqcc <[email protected]>
Signed-off-by: Yukihiro Saito <[email protected]>
Signed-off-by: Takayuki Murooka <[email protected]>
Signed-off-by: kminoda <[email protected]>
Signed-off-by: kosuke55 <[email protected]>
Signed-off-by: TakumiKozaka-T4 <[email protected]>
Signed-off-by: takahoribe <[email protected]>
Signed-off-by: badai-nguyen <[email protected]>
Signed-off-by: NorahXiong <[email protected]>
Signed-off-by: mitsudome-r <[email protected]>
Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
Signed-off-by: Muhammad Zulfaqar <[email protected]>
Signed-off-by: Daisuke Nishimatsu <[email protected]>
Signed-off-by: Takamasa Horibe <[email protected]>
Signed-off-by: ismet atabay <[email protected]>
Co-authored-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>
Co-authored-by: Mamoru Sobue <[email protected]>
Co-authored-by: Ambroise Vincent <[email protected]>
Co-authored-by: Xinyu Wang <[email protected]>
Co-authored-by: Makoto Kurihara <[email protected]>
Co-authored-by: Yutaka Shimizu <[email protected]>
Co-authored-by: Ryuta Kambe <[email protected]>
Co-authored-by: Mingyu1991 <[email protected]>
Co-authored-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: Yukihiro Saito <[email protected]>
Co-authored-by: Shumpei Wakabayashi <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <[email protected]>
Co-authored-by: kminoda <[email protected]>
Co-authored-by: Kosuke Takeuchi <[email protected]>
Co-authored-by: TakumiKozaka-T4 <[email protected]>
Co-authored-by: Takamasa Horibe <[email protected]>
Co-authored-by: badai nguyen <[email protected]>
Co-authored-by: Shunsuke Miura <[email protected]>
Co-authored-by: NorahXiong <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: Ismet Atabay <[email protected]>
Signed-off-by: Alexey Panferov <[email protected]>
asana17 pushed a commit to asana17/autoware.universe that referenced this pull request Feb 8, 2023
…tion#2506)

* delete wall marker in intersection module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in stop_line module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in blind_spot module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in no_stopping_area

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in run_out module

Signed-off-by: kyoichi-sugahara <[email protected]>

* make motion util function to delete wall marker

Signed-off-by: kyoichi-sugahara <[email protected]>

* add common function

* temp

* fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)

* fix(default_ad_api): fix autoware state to add wait time

Signed-off-by: Takagi, Isamu <[email protected]>

* Update system/default_ad_api/src/compatibility/autoware_state.cpp

Co-authored-by: Kenji Miyake <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>

* chore(behaviror_velocity_planner): changed logging level for intersection (autowarefoundation#2459)

changed logging level

Signed-off-by: Mamoru Sobue <[email protected]>

* fix(tvm_utility): copy test result to CPU (autowarefoundation#2414)

Also remove dependency to autoware_auto_common.

Issue-Id: SCM-5401
Signed-off-by: Ambroise Vincent <[email protected]>
Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

Signed-off-by: Ambroise Vincent <[email protected]>
Co-authored-by: Xinyu Wang <[email protected]>

* fix(raw_vehicle_cmd_converter): fix column index for map validation (autowarefoundation#2450)

Signed-off-by: Makoto Kurihara <[email protected]>

Signed-off-by: Makoto Kurihara <[email protected]>

* revert(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407) (autowarefoundation#2460)

Revert "fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)"

This reverts commit c422485.

* feat(behavior_path_planner): cut overlapped path (autowarefoundation#2451)

* feat(behavior_path_planner): cut overlapped path

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* perf(behavior_velocity_planner): remove unnecessary debug data (autowarefoundation#2462)

Signed-off-by: veqcc <[email protected]>

* docs: update training data for traffic light (autowarefoundation#2464)

* update traffic light cnn classifier README.md

* correct to upper case

Co-authored-by: Daisuke Nishimatsu <[email protected]>

* feat(motion_utils): add points resample function (autowarefoundation#2465)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat: remove web controller (autowarefoundation#2405)

Signed-off-by: Yukihiro Saito <[email protected]>

Signed-off-by: Yukihiro Saito <[email protected]>

* fix(motion_utils): rename sampling function (autowarefoundation#2469)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (autowarefoundation#2455)

* fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(tier4_autoware_api_launch): add rosbridge_server dependency (autowarefoundation#2470)

Signed-off-by: Takayuki Murooka <[email protected]>

Signed-off-by: Takayuki Murooka <[email protected]>

* fix: remove unnecessary DEBUG_INFO declarations (autowarefoundation#2457)

Signed-off-by: kminoda <[email protected]>

Signed-off-by: kminoda <[email protected]>

* feat(gyro_odometer): publish twist when both data arrives (autowarefoundation#2423)

* feat(gyro_odometer): publish when both data arrive

Signed-off-by: kminoda <[email protected]>

* remove unnecessary commentouts

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* use latest timestamp

Signed-off-by: kminoda <[email protected]>

* small fix

Signed-off-by: kminoda <[email protected]>

* debugged

Signed-off-by: kminoda <[email protected]>

* update gyro_odometer

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* add comments

Signed-off-by: kminoda <[email protected]>

* add comments

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* fix timestamp validation flow

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* remove unnecessary commentouts

Signed-off-by: kminoda <[email protected]>

* pre-commit

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: kminoda <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(freespace_planning_algorithms): comment out failing tests (autowarefoundation#2440)

Signed-off-by: kosuke55 <[email protected]>

Signed-off-by: kosuke55 <[email protected]>

* feat(behavior_velocity_planner): add velocity factors (autowarefoundation#1985)

* (editting) add intersection_coordination to stop reason

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add intersection coordination to stop reasons

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (Editting) add v2x to stop reason

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add stop reason2 publisher

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (editting) add stop reason2 to  scene modules

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* add stop reason2 to obstacle stop planner and surround obstacle checker

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Modify files including unintended change by rebase

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* fix error

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* modification for renaming stop_reason2 to motion_factor

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (Editting) rename variables

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* bug fix

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) Solved build error, but not launched

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing error in launch

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing error in launch

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (WIP) fixing launch error

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Fix error in launching motion factor aggregator

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* pull the latest foundation/main

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

Signed-off-by: TakumiKozaka-T4 <[email protected]>

* ci(pre-commit): autofix

* feat: add velocity factor interface

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: fix build error

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: stop sign

Signed-off-by: Takagi, Isamu <[email protected]>

* WIP

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update visualizer

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: modify traffic light manager

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update velocity factors

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update api

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: move adapi msgs

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: remove old aggregator

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: move api

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: rename message

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add using

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add distance

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: fix build error

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: use nan as default distance

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: set virtual traffic light detail

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: remove debug code

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: copyright

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: TakumiKozaka-T4 <[email protected]>
Signed-off-by: Takagi, Isamu <[email protected]>
Co-authored-by: TakumiKozaka-T4 <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(emergency_handler): fix mrm handling when mrm behavior is none (autowarefoundation#2476)

Signed-off-by: Makoto Kurihara <[email protected]>

Signed-off-by: Makoto Kurihara <[email protected]>

* feat(behavior_velocity_planner): clean walkway module (autowarefoundation#2480)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix(trajectory_follower): fix mpc trajectory z pos (autowarefoundation#2482)

Signed-off-by: takahoribe <[email protected]>

Signed-off-by: takahoribe <[email protected]>

* fix(ground-segmentation): recheck gnd cluster pointcloud (autowarefoundation#2448)

* fix: reclassify ground cluster pcl

Signed-off-by: badai-nguyen <[email protected]>

* fix: add lowest-based recheck

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactoring

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactoring

Signed-off-by: badai-nguyen <[email protected]>

Signed-off-by: badai-nguyen <[email protected]>
Co-authored-by: Shunsuke Miura <[email protected]>

* fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (autowarefoundation#2350)

Signed-off-by: NorahXiong <[email protected]>

Signed-off-by: NorahXiong <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>

* revert(behavior_path): revert removal of refineGoalFunction (autowarefoundation#2340)" (autowarefoundation#2485)

This reverts commit 8e13ced.

Signed-off-by: mitsudome-r <[email protected]>

Signed-off-by: mitsudome-r <[email protected]>

* fix(behavior_path_planner): minimum distance for lane change (autowarefoundation#2413)

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* fix(behavior_path_planner): lane change candidate resolution (autowarefoundation#2426)

* fix(behavior_path_planner): lane change candidate resolution

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* rework sampling based  on current speed

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* refactor code

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* use util's resampler

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

* consider min_resampling_points and resampling dt

Signed-off-by: Muhammad Zulfaqar <[email protected]>

* simplify code

Signed-off-by: Muhammad Zulfaqar <[email protected]>

Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
Signed-off-by: Muhammad Zulfaqar <[email protected]>

* chore(simulator_compatibility_test): suppress setuptools warnings (autowarefoundation#2483)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* docs(tier4_state_rviz_plugin): update readme (autowarefoundation#2475)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(trajectory_follower): pub steer converged marker (autowarefoundation#2441)

* feat(trajectory_follower): pub steer converged marker

Signed-off-by: kosuke55 <[email protected]>

* Revert "feat(trajectory_follower): pub steer converged marker"

This reverts commit a6f6917.

Signed-off-by: kosuke55 <[email protected]>

* add steer converged debug marker in contoller_node

Signed-off-by: kosuke55 <[email protected]>

Signed-off-by: kosuke55 <[email protected]>

* feat: replace python launch with xml launch for system monitor (autowarefoundation#2430)

* feat: replace python launch with xml launch for system monitor

Signed-off-by: Daisuke Nishimatsu <[email protected]>

* ci(pre-commit): autofix

* update figure

Signed-off-by: Daisuke Nishimatsu <[email protected]>

Signed-off-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* refactor(vehicle_cmd_gate): remove old emergency topics (autowarefoundation#2403)

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (autowarefoundation#2472)

* update

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update obstacle avoidance planner

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

* uddate

Signed-off-by: yutaka <[email protected]>

* clean code

Signed-off-by: yutaka <[email protected]>

* remove resample

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* add orientation

Signed-off-by: yutaka <[email protected]>

* change color

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* remove drivable area

Signed-off-by: yutaka <[email protected]>

* add flag

Signed-off-by: yutaka <[email protected]>

* update

Signed-off-by: yutaka <[email protected]>

* update color

Signed-off-by: yutaka <[email protected]>

* fix some codes

Signed-off-by: yutaka <[email protected]>

* change to makerker array

Signed-off-by: yutaka <[email protected]>

* change avoidance utils

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(default_ad_api): split parameters into file (autowarefoundation#2488)

* feat(default_ad_api): split parameters into file

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: remove old parameter

Signed-off-by: Takagi, Isamu <[email protected]>

* fix: test

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: add default config

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* docs(default_ad_api): add readme (autowarefoundation#2491)

* docs(default_ad_api): add readme

Signed-off-by: Takagi, Isamu <[email protected]>

* feat: update table

Signed-off-by: Takagi, Isamu <[email protected]>

Signed-off-by: Takagi, Isamu <[email protected]>

* feat(map_loader): add differential map loading interface (autowarefoundation#2417)

* first commit

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* added module load in _node.cpp

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* create pcd metadata dict when either of the flag is true

Signed-off-by: kminoda <[email protected]>

* ci(pre-commit): autofix

* fix readme

* ci(pre-commit): autofix

Signed-off-by: kminoda <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(behavior_path_planner): change turn signal output timing (autowarefoundation#2493)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (autowarefoundation#2494)

* feat(behavior_path_planner): clean drivable area code

Signed-off-by: yutaka <[email protected]>

* make a function for turn signal decider

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* feat(trajectory_visualizer): update for steer limit, remove tf for pose source (autowarefoundation#2267)

Signed-off-by: Takamasa Horibe <[email protected]>

Signed-off-by: Takamasa Horibe <[email protected]>

* feat(mission_planner): check goal footprint (autowarefoundation#2088)

Signed-off-by: ismet atabay <[email protected]>

* feat(behavior_path_planner): fix overlap checker (autowarefoundation#2498)

* feat(behavior_path_planner): fix overlap checker

Signed-off-by: yutaka <[email protected]>

* remove reserve

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* fix(behavior_path_planner): fix find nearest function from lateral distance (autowarefoundation#2499)

* feat(behavior_path_planner): fix find nearest function from lateral distance

* empty commit

* fix(behavior_path_planner): fix planner data copy (autowarefoundation#2501)

Signed-off-by: yutaka <[email protected]>

Signed-off-by: yutaka <[email protected]>

* refactor(simple_planning_simulator): make function for duplicated code (autowarefoundation#2502)

Signed-off-by: Takamasa Horibe <[email protected]>

Signed-off-by: Takamasa Horibe <[email protected]>

* fix build error

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* revert intersection module change

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in intersection module

Signed-off-by: kyoichi-sugahara <[email protected]>

* compare pose with resample_uitils

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in merge_from_private module

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wallmarker in no_stopping_area

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* add dead line creator

Signed-off-by: kyoichi-sugahara <[email protected]>

* fix base function

Signed-off-by: kyoichi-sugahara <[email protected]>

* delete wall marker in each module

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* empty gurad

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* instantiation wall maeker creator

Signed-off-by: kyoichi-sugahara <[email protected]>

* initialize pointer

Signed-off-by: kyoichi-sugahara <[email protected]>

* ci(pre-commit): autofix

* define create_wall_function and delete_wall_function in VirtualWallMarkerCreator

Signed-off-by: kyoichi-sugahara <[email protected]>

* change instance name

Signed-off-by: kyoichi-sugahara <[email protected]>

Signed-off-by: kyoichi-sugahara <[email protected]>
Signed-off-by: Takagi, Isamu <[email protected]>
Signed-off-by: Mamoru Sobue <[email protected]>
Signed-off-by: Ambroise Vincent <[email protected]>
Signed-off-by: Makoto Kurihara <[email protected]>
Signed-off-by: yutaka <[email protected]>
Signed-off-by: veqcc <[email protected]>
Signed-off-by: Yukihiro Saito <[email protected]>
Signed-off-by: Takayuki Murooka <[email protected]>
Signed-off-by: kminoda <[email protected]>
Signed-off-by: kosuke55 <[email protected]>
Signed-off-by: TakumiKozaka-T4 <[email protected]>
Signed-off-by: takahoribe <[email protected]>
Signed-off-by: badai-nguyen <[email protected]>
Signed-off-by: NorahXiong <[email protected]>
Signed-off-by: mitsudome-r <[email protected]>
Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
Signed-off-by: Muhammad Zulfaqar <[email protected]>
Signed-off-by: Daisuke Nishimatsu <[email protected]>
Signed-off-by: Takamasa Horibe <[email protected]>
Signed-off-by: ismet atabay <[email protected]>
Co-authored-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>
Co-authored-by: Mamoru Sobue <[email protected]>
Co-authored-by: Ambroise Vincent <[email protected]>
Co-authored-by: Xinyu Wang <[email protected]>
Co-authored-by: Makoto Kurihara <[email protected]>
Co-authored-by: Yutaka Shimizu <[email protected]>
Co-authored-by: Ryuta Kambe <[email protected]>
Co-authored-by: Mingyu1991 <[email protected]>
Co-authored-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: Yukihiro Saito <[email protected]>
Co-authored-by: Shumpei Wakabayashi <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <[email protected]>
Co-authored-by: kminoda <[email protected]>
Co-authored-by: Kosuke Takeuchi <[email protected]>
Co-authored-by: TakumiKozaka-T4 <[email protected]>
Co-authored-by: Takamasa Horibe <[email protected]>
Co-authored-by: badai nguyen <[email protected]>
Co-authored-by: Shunsuke Miura <[email protected]>
Co-authored-by: NorahXiong <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: Ismet Atabay <[email protected]>
HansRobo added a commit to HansRobo/autoware.universe that referenced this pull request Feb 14, 2023
commit c7d3b7d
Author: Hirokazu Ishida <[email protected]>
Date:   Fri Dec 16 13:51:35 2022 +0900

    test(freespace_planning_algorithms): done't dump rosbag by default (autowarefoundation#2504)

    Signed-off-by: Hirokazu Ishida <[email protected]>

    Signed-off-by: Hirokazu Ishida <[email protected]>

commit 6731e0c
Author: kminoda <[email protected]>
Date:   Fri Dec 16 09:29:35 2022 +0900

    feat(pose_initializer): partial map loading (autowarefoundation#2500)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * move function

    Signed-off-by: kminoda <[email protected]>

    * now works

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * clarify how to enable partial mao loading interface

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * Update localization/pose_initializer/config/pose_initializer.param.yaml

    Co-authored-by: Takagi, Isamu <[email protected]>

    * fix pre-commit

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Takagi, Isamu <[email protected]>

commit efb4ff1
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 15 17:29:44 2022 +0900

    feat(trajectory_follower): extend mpc trajectory for terminal yaw (autowarefoundation#2447)

    * feat(trajectory_follower): extend mpc trajectory for terminal yaw

    Signed-off-by: kosuke55 <[email protected]>

    * make mpc min vel param

    Signed-off-by: kosuke55 <[email protected]>

    * add mpc extended point after smoothing

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "make mpc min vel param"

    This reverts commit 02157b6.

    Signed-off-by: kosuke55 <[email protected]>

    * add comment and hypot

    Signed-off-by: kosuke55 <[email protected]>

    * remove min vel

    Signed-off-by: kosuke55 <[email protected]>

    * add flag for extending traj

    Signed-off-by: kosuke55 <[email protected]>

    * add extend param to default param

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * fix from TakaHoribe review

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * refactor

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit ad2ae78
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 15 15:52:34 2022 +0900

    feat(component_interface_tools): add service log checker  (autowarefoundation#2503)

    * feat(component_interface_utils): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add diagnostics

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update system error monitor config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 4a13cc5
Author: Yutaka Shimizu <[email protected]>
Date:   Thu Dec 15 12:54:11 2022 +0900

    fix(behavior_path_planner): fix goal lanelet extension (autowarefoundation#2508)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 77b1c36
Author: Kyoichi Sugahara <[email protected]>
Date:   Thu Dec 15 10:45:45 2022 +0900

    feat(behavior_path_planner): change side shift module logic (autowarefoundation#2195)

    * change side shift module design

    Signed-off-by: kyoichi sugahara <[email protected]>

    * cherry picked side shift controller

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add debug marker to side shift

    Signed-off-by: kyoichi sugahara <[email protected]>

    * fix pointer error due to direct assignment

    added make_shared

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * add flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add status of AFTER_SHIFT

    Signed-off-by: kyoichi sugahara <[email protected]>

    * remove function for debug

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    * fix flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kyoichi sugahara <[email protected]>
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: tanaka3 <[email protected]>
    Co-authored-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9183c4f
Author: Takamasa Horibe <[email protected]>
Date:   Wed Dec 14 19:59:00 2022 +0900

    refactor(simple_planning_simulator): make function for duplicated code (autowarefoundation#2502)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit ed992b1
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 17:48:24 2022 +0900

    fix(behavior_path_planner): fix planner data copy (autowarefoundation#2501)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 0c6c46b
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 14:42:16 2022 +0900

    fix(behavior_path_planner): fix find nearest function from lateral distance (autowarefoundation#2499)

    * feat(behavior_path_planner): fix find nearest function from lateral distance

    * empty commit

commit a26b69d
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 11:28:07 2022 +0900

    feat(behavior_path_planner): fix overlap checker (autowarefoundation#2498)

    * feat(behavior_path_planner): fix overlap checker

    Signed-off-by: yutaka <[email protected]>

    * remove reserve

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 3a24859
Author: Ismet Atabay <[email protected]>
Date:   Tue Dec 13 16:51:59 2022 +0300

    feat(mission_planner): check goal footprint (autowarefoundation#2088)

    Signed-off-by: ismet atabay <[email protected]>

commit b6a1885
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 13 22:46:24 2022 +0900

    feat(trajectory_visualizer): update for steer limit, remove tf for pose source (autowarefoundation#2267)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit f1a9a96
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 19:47:16 2022 +0900

    feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (autowarefoundation#2494)

    * feat(behavior_path_planner): clean drivable area code

    Signed-off-by: yutaka <[email protected]>

    * make a function for turn signal decider

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit fafe1d8
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 18:19:41 2022 +0900

    feat(behavior_path_planner): change turn signal output timing (autowarefoundation#2493)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c48b9cf
Author: kminoda <[email protected]>
Date:   Tue Dec 13 09:16:14 2022 +0900

    feat(map_loader): add differential map loading interface (autowarefoundation#2417)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * added module load in _node.cpp

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * create pcd metadata dict when either of the flag is true

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix readme

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a3613b
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 08:49:23 2022 +0900

    docs(default_ad_api): add readme (autowarefoundation#2491)

    * docs(default_ad_api): add readme

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update table

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 49aa10b
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 06:46:20 2022 +0900

    feat(default_ad_api): split parameters into file (autowarefoundation#2488)

    * feat(default_ad_api): split parameters into file

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old parameter

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: test

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add default config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 7f0138c
Author: Yutaka Shimizu <[email protected]>
Date:   Mon Dec 12 22:16:54 2022 +0900

    feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (autowarefoundation#2472)

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update obstacle avoidance planner

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * uddate

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * remove resample

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * add orientation

    Signed-off-by: yutaka <[email protected]>

    * change color

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * remove drivable area

    Signed-off-by: yutaka <[email protected]>

    * add flag

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update color

    Signed-off-by: yutaka <[email protected]>

    * fix some codes

    Signed-off-by: yutaka <[email protected]>

    * change to makerker array

    Signed-off-by: yutaka <[email protected]>

    * change avoidance utils

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c855e23
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 17:15:10 2022 +0900

    refactor(vehicle_cmd_gate): remove old emergency topics (autowarefoundation#2403)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit fa04d54
Author: Daisuke Nishimatsu <[email protected]>
Date:   Mon Dec 12 16:04:00 2022 +0900

    feat: replace python launch with xml launch for system monitor (autowarefoundation#2430)

    * feat: replace python launch with xml launch for system monitor

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    * ci(pre-commit): autofix

    * update figure

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    Signed-off-by: Daisuke Nishimatsu <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 4a6990c
Author: Kosuke Takeuchi <[email protected]>
Date:   Mon Dec 12 15:01:39 2022 +0900

    feat(trajectory_follower): pub steer converged marker (autowarefoundation#2441)

    * feat(trajectory_follower): pub steer converged marker

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "feat(trajectory_follower): pub steer converged marker"

    This reverts commit a6f6917.

    Signed-off-by: kosuke55 <[email protected]>

    * add steer converged debug marker in contoller_node

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit 3c01f15
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 12:48:41 2022 +0900

    docs(tier4_state_rviz_plugin): update readme (autowarefoundation#2475)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit d8ece00
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 11:57:03 2022 +0900

    chore(simulator_compatibility_test): suppress setuptools warnings (autowarefoundation#2483)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 727586b
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 10:00:35 2022 +0900

    fix(behavior_path_planner): lane change candidate resolution (autowarefoundation#2426)

    * fix(behavior_path_planner): lane change candidate resolution

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * rework sampling based  on current speed

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * refactor code

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * use util's resampler

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * consider min_resampling_points and resampling dt

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    * simplify code

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Signed-off-by: Muhammad Zulfaqar <[email protected]>

commit 284548c
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 09:57:19 2022 +0900

    fix(behavior_path_planner): minimum distance for lane change (autowarefoundation#2413)

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

commit 469d892
Author: Ryohsuke Mitsudome <[email protected]>
Date:   Fri Dec 9 21:27:18 2022 +0900

    revert(behavior_path): revert removal of refineGoalFunction (autowarefoundation#2340)" (autowarefoundation#2485)

    This reverts commit 8e13ced.

    Signed-off-by: mitsudome-r <[email protected]>

    Signed-off-by: mitsudome-r <[email protected]>

commit d924f85
Author: NorahXiong <[email protected]>
Date:   Fri Dec 9 19:53:51 2022 +0800

    fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (autowarefoundation#2350)

    Signed-off-by: NorahXiong <[email protected]>

    Signed-off-by: NorahXiong <[email protected]>
    Co-authored-by: Ryohsuke Mitsudome <[email protected]>

commit b2ded82
Author: badai nguyen <[email protected]>
Date:   Fri Dec 9 17:12:13 2022 +0900

    fix(ground-segmentation): recheck gnd cluster pointcloud (autowarefoundation#2448)

    * fix: reclassify ground cluster pcl

    Signed-off-by: badai-nguyen <[email protected]>

    * fix: add lowest-based recheck

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    Signed-off-by: badai-nguyen <[email protected]>
    Co-authored-by: Shunsuke Miura <[email protected]>

commit 8906a1e
Author: Takamasa Horibe <[email protected]>
Date:   Fri Dec 9 16:29:45 2022 +0900

    fix(trajectory_follower): fix mpc trajectory z pos (autowarefoundation#2482)

    Signed-off-by: takahoribe <[email protected]>

    Signed-off-by: takahoribe <[email protected]>

commit d493905
Author: Yutaka Shimizu <[email protected]>
Date:   Fri Dec 9 12:40:30 2022 +0900

    feat(behavior_velocity_planner): clean walkway module (autowarefoundation#2480)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit d3b86a3
Author: Makoto Kurihara <[email protected]>
Date:   Thu Dec 8 22:59:32 2022 +0900

    fix(emergency_handler): fix mrm handling when mrm behavior is none (autowarefoundation#2476)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit 2dde073
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 8 17:16:13 2022 +0900

    feat(behavior_velocity_planner): add velocity factors (autowarefoundation#1985)

    * (editting) add intersection_coordination to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add intersection coordination to stop reasons

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) add v2x to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 publisher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 to  scene modules

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * add stop reason2 to obstacle stop planner and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Modify files including unintended change by rebase

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * fix error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * modification for renaming stop_reason2 to motion_factor

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) rename variables

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * bug fix

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Solved build error, but not launched

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing launch error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Fix error in launching motion factor aggregator

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * pull the latest foundation/main

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * feat: add velocity factor interface

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: stop sign

    Signed-off-by: Takagi, Isamu <[email protected]>

    * WIP

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update visualizer

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: modify traffic light manager

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update velocity factors

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move adapi msgs

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old aggregator

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: rename message

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add using

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: use nan as default distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: set virtual traffic light detail

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: remove debug code

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: copyright

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: TakumiKozaka-T4 <[email protected]>
    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: TakumiKozaka-T4 <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a5057e
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 8 13:42:50 2022 +0900

    fix(freespace_planning_algorithms): comment out failing tests (autowarefoundation#2440)

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit cddb8c7
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:57:04 2022 +0900

    feat(gyro_odometer): publish twist when both data arrives (autowarefoundation#2423)

    * feat(gyro_odometer): publish when both data arrive

    Signed-off-by: kminoda <[email protected]>

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * use latest timestamp

    Signed-off-by: kminoda <[email protected]>

    * small fix

    Signed-off-by: kminoda <[email protected]>

    * debugged

    Signed-off-by: kminoda <[email protected]>

    * update gyro_odometer

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix timestamp validation flow

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * pre-commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit f0f513c
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:08:29 2022 +0900

    fix: remove unnecessary DEBUG_INFO declarations (autowarefoundation#2457)

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>

commit 01daebf
Author: Takayuki Murooka <[email protected]>
Date:   Thu Dec 8 00:28:35 2022 +0900

    fix(tier4_autoware_api_launch): add rosbridge_server dependency (autowarefoundation#2470)

    Signed-off-by: Takayuki Murooka <[email protected]>

    Signed-off-by: Takayuki Murooka <[email protected]>

commit 26ef817
Author: Shumpei Wakabayashi <[email protected]>
Date:   Wed Dec 7 19:32:09 2022 +0900

    fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (autowarefoundation#2455)

    * fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

    * ci(pre-commit): autofix

    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 024b993
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 18:00:32 2022 +0900

    fix(motion_utils): rename sampling function (autowarefoundation#2469)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c240ce2
Author: Yukihiro Saito <[email protected]>
Date:   Wed Dec 7 16:33:44 2022 +0900

    feat: remove web controller (autowarefoundation#2405)

    Signed-off-by: Yukihiro Saito <[email protected]>

    Signed-off-by: Yukihiro Saito <[email protected]>

commit 2992b1c
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 15:39:28 2022 +0900

    feat(motion_utils): add points resample function (autowarefoundation#2465)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 4a75d7c
Author: Mingyu1991 <[email protected]>
Date:   Wed Dec 7 14:42:33 2022 +0900

    docs: update training data for traffic light (autowarefoundation#2464)

    * update traffic light cnn classifier README.md

    * correct to upper case

    Co-authored-by: Daisuke Nishimatsu <[email protected]>

commit a428716
Author: Ryuta Kambe <[email protected]>
Date:   Wed Dec 7 12:21:49 2022 +0900

    perf(behavior_velocity_planner): remove unnecessary debug data (autowarefoundation#2462)

    Signed-off-by: veqcc <[email protected]>

commit 0a5b285
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 12:03:46 2022 +0900

    feat(behavior_path_planner): cut overlapped path (autowarefoundation#2451)

    * feat(behavior_path_planner): cut overlapped path

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 65003dc
Author: Takagi, Isamu <[email protected]>
Date:   Wed Dec 7 11:06:41 2022 +0900

    revert(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407) (autowarefoundation#2460)

    Revert "fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)"

    This reverts commit c422485.

commit fab1867
Author: Makoto Kurihara <[email protected]>
Date:   Wed Dec 7 10:32:41 2022 +0900

    fix(raw_vehicle_cmd_converter): fix column index for map validation (autowarefoundation#2450)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit a1d3c80
Author: Ambroise Vincent <[email protected]>
Date:   Tue Dec 6 10:39:02 2022 +0100

    fix(tvm_utility): copy test result to CPU (autowarefoundation#2414)

    Also remove dependency to autoware_auto_common.

    Issue-Id: SCM-5401
    Signed-off-by: Ambroise Vincent <[email protected]>
    Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

    Signed-off-by: Ambroise Vincent <[email protected]>
    Co-authored-by: Xinyu Wang <[email protected]>

commit eb99468
Author: Mamoru Sobue <[email protected]>
Date:   Tue Dec 6 18:11:41 2022 +0900

    chore(behaviror_velocity_planner): changed logging level for intersection (autowarefoundation#2459)

    changed logging level

    Signed-off-by: Mamoru Sobue <[email protected]>

commit c422485
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 6 17:01:37 2022 +0900

    fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)

    * fix(default_ad_api): fix autoware state to add wait time

    Signed-off-by: Takagi, Isamu <[email protected]>

    * Update system/default_ad_api/src/compatibility/autoware_state.cpp

    Co-authored-by: Kenji Miyake <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: Kenji Miyake <[email protected]>

commit f984fbb
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 6 13:55:17 2022 +0900

    feat(transition_manager): add param to ignore autonomous transition condition (autowarefoundation#2453)

    * feat(transition_manager): add param to ignore autonomous transition condition

    Signed-off-by: Takamasa Horibe <[email protected]>

    * same for modeChangeCompleted

    Signed-off-by: Takamasa Horibe <[email protected]>

    * remove debug print

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit d3e640d
Author: Tomoya Kimura <[email protected]>
Date:   Tue Dec 6 13:01:06 2022 +0900

    feat(operation_mode_transition_manager): transition to auto quickly when vehicle stops (autowarefoundation#2427)

    Signed-off-by: tomoya.kimura <[email protected]>

    Signed-off-by: tomoya.kimura <[email protected]>
HansRobo added a commit to HansRobo/autoware.universe that referenced this pull request Feb 14, 2023
commit c7d3b7d
Author: Hirokazu Ishida <[email protected]>
Date:   Fri Dec 16 13:51:35 2022 +0900

    test(freespace_planning_algorithms): done't dump rosbag by default (autowarefoundation#2504)

    Signed-off-by: Hirokazu Ishida <[email protected]>

    Signed-off-by: Hirokazu Ishida <[email protected]>

commit 6731e0c
Author: kminoda <[email protected]>
Date:   Fri Dec 16 09:29:35 2022 +0900

    feat(pose_initializer): partial map loading (autowarefoundation#2500)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * move function

    Signed-off-by: kminoda <[email protected]>

    * now works

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * clarify how to enable partial mao loading interface

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * Update localization/pose_initializer/config/pose_initializer.param.yaml

    Co-authored-by: Takagi, Isamu <[email protected]>

    * fix pre-commit

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Takagi, Isamu <[email protected]>

commit efb4ff1
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 15 17:29:44 2022 +0900

    feat(trajectory_follower): extend mpc trajectory for terminal yaw (autowarefoundation#2447)

    * feat(trajectory_follower): extend mpc trajectory for terminal yaw

    Signed-off-by: kosuke55 <[email protected]>

    * make mpc min vel param

    Signed-off-by: kosuke55 <[email protected]>

    * add mpc extended point after smoothing

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "make mpc min vel param"

    This reverts commit 02157b6.

    Signed-off-by: kosuke55 <[email protected]>

    * add comment and hypot

    Signed-off-by: kosuke55 <[email protected]>

    * remove min vel

    Signed-off-by: kosuke55 <[email protected]>

    * add flag for extending traj

    Signed-off-by: kosuke55 <[email protected]>

    * add extend param to default param

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * fix from TakaHoribe review

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * refactor

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit ad2ae78
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 15 15:52:34 2022 +0900

    feat(component_interface_tools): add service log checker  (autowarefoundation#2503)

    * feat(component_interface_utils): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add diagnostics

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update system error monitor config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 4a13cc5
Author: Yutaka Shimizu <[email protected]>
Date:   Thu Dec 15 12:54:11 2022 +0900

    fix(behavior_path_planner): fix goal lanelet extension (autowarefoundation#2508)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 77b1c36
Author: Kyoichi Sugahara <[email protected]>
Date:   Thu Dec 15 10:45:45 2022 +0900

    feat(behavior_path_planner): change side shift module logic (autowarefoundation#2195)

    * change side shift module design

    Signed-off-by: kyoichi sugahara <[email protected]>

    * cherry picked side shift controller

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add debug marker to side shift

    Signed-off-by: kyoichi sugahara <[email protected]>

    * fix pointer error due to direct assignment

    added make_shared

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * add flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add status of AFTER_SHIFT

    Signed-off-by: kyoichi sugahara <[email protected]>

    * remove function for debug

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    * fix flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kyoichi sugahara <[email protected]>
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: tanaka3 <[email protected]>
    Co-authored-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9183c4f
Author: Takamasa Horibe <[email protected]>
Date:   Wed Dec 14 19:59:00 2022 +0900

    refactor(simple_planning_simulator): make function for duplicated code (autowarefoundation#2502)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit ed992b1
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 17:48:24 2022 +0900

    fix(behavior_path_planner): fix planner data copy (autowarefoundation#2501)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 0c6c46b
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 14:42:16 2022 +0900

    fix(behavior_path_planner): fix find nearest function from lateral distance (autowarefoundation#2499)

    * feat(behavior_path_planner): fix find nearest function from lateral distance

    * empty commit

commit a26b69d
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 11:28:07 2022 +0900

    feat(behavior_path_planner): fix overlap checker (autowarefoundation#2498)

    * feat(behavior_path_planner): fix overlap checker

    Signed-off-by: yutaka <[email protected]>

    * remove reserve

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 3a24859
Author: Ismet Atabay <[email protected]>
Date:   Tue Dec 13 16:51:59 2022 +0300

    feat(mission_planner): check goal footprint (autowarefoundation#2088)

    Signed-off-by: ismet atabay <[email protected]>

commit b6a1885
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 13 22:46:24 2022 +0900

    feat(trajectory_visualizer): update for steer limit, remove tf for pose source (autowarefoundation#2267)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit f1a9a96
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 19:47:16 2022 +0900

    feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (autowarefoundation#2494)

    * feat(behavior_path_planner): clean drivable area code

    Signed-off-by: yutaka <[email protected]>

    * make a function for turn signal decider

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit fafe1d8
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 18:19:41 2022 +0900

    feat(behavior_path_planner): change turn signal output timing (autowarefoundation#2493)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c48b9cf
Author: kminoda <[email protected]>
Date:   Tue Dec 13 09:16:14 2022 +0900

    feat(map_loader): add differential map loading interface (autowarefoundation#2417)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * added module load in _node.cpp

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * create pcd metadata dict when either of the flag is true

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix readme

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a3613b
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 08:49:23 2022 +0900

    docs(default_ad_api): add readme (autowarefoundation#2491)

    * docs(default_ad_api): add readme

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update table

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 49aa10b
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 06:46:20 2022 +0900

    feat(default_ad_api): split parameters into file (autowarefoundation#2488)

    * feat(default_ad_api): split parameters into file

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old parameter

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: test

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add default config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 7f0138c
Author: Yutaka Shimizu <[email protected]>
Date:   Mon Dec 12 22:16:54 2022 +0900

    feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (autowarefoundation#2472)

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update obstacle avoidance planner

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * uddate

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * remove resample

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * add orientation

    Signed-off-by: yutaka <[email protected]>

    * change color

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * remove drivable area

    Signed-off-by: yutaka <[email protected]>

    * add flag

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update color

    Signed-off-by: yutaka <[email protected]>

    * fix some codes

    Signed-off-by: yutaka <[email protected]>

    * change to makerker array

    Signed-off-by: yutaka <[email protected]>

    * change avoidance utils

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c855e23
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 17:15:10 2022 +0900

    refactor(vehicle_cmd_gate): remove old emergency topics (autowarefoundation#2403)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit fa04d54
Author: Daisuke Nishimatsu <[email protected]>
Date:   Mon Dec 12 16:04:00 2022 +0900

    feat: replace python launch with xml launch for system monitor (autowarefoundation#2430)

    * feat: replace python launch with xml launch for system monitor

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    * ci(pre-commit): autofix

    * update figure

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    Signed-off-by: Daisuke Nishimatsu <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 4a6990c
Author: Kosuke Takeuchi <[email protected]>
Date:   Mon Dec 12 15:01:39 2022 +0900

    feat(trajectory_follower): pub steer converged marker (autowarefoundation#2441)

    * feat(trajectory_follower): pub steer converged marker

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "feat(trajectory_follower): pub steer converged marker"

    This reverts commit a6f6917.

    Signed-off-by: kosuke55 <[email protected]>

    * add steer converged debug marker in contoller_node

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit 3c01f15
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 12:48:41 2022 +0900

    docs(tier4_state_rviz_plugin): update readme (autowarefoundation#2475)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit d8ece00
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 11:57:03 2022 +0900

    chore(simulator_compatibility_test): suppress setuptools warnings (autowarefoundation#2483)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 727586b
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 10:00:35 2022 +0900

    fix(behavior_path_planner): lane change candidate resolution (autowarefoundation#2426)

    * fix(behavior_path_planner): lane change candidate resolution

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * rework sampling based  on current speed

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * refactor code

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * use util's resampler

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * consider min_resampling_points and resampling dt

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    * simplify code

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Signed-off-by: Muhammad Zulfaqar <[email protected]>

commit 284548c
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 09:57:19 2022 +0900

    fix(behavior_path_planner): minimum distance for lane change (autowarefoundation#2413)

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

commit 469d892
Author: Ryohsuke Mitsudome <[email protected]>
Date:   Fri Dec 9 21:27:18 2022 +0900

    revert(behavior_path): revert removal of refineGoalFunction (autowarefoundation#2340)" (autowarefoundation#2485)

    This reverts commit 8e13ced.

    Signed-off-by: mitsudome-r <[email protected]>

    Signed-off-by: mitsudome-r <[email protected]>

commit d924f85
Author: NorahXiong <[email protected]>
Date:   Fri Dec 9 19:53:51 2022 +0800

    fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (autowarefoundation#2350)

    Signed-off-by: NorahXiong <[email protected]>

    Signed-off-by: NorahXiong <[email protected]>
    Co-authored-by: Ryohsuke Mitsudome <[email protected]>

commit b2ded82
Author: badai nguyen <[email protected]>
Date:   Fri Dec 9 17:12:13 2022 +0900

    fix(ground-segmentation): recheck gnd cluster pointcloud (autowarefoundation#2448)

    * fix: reclassify ground cluster pcl

    Signed-off-by: badai-nguyen <[email protected]>

    * fix: add lowest-based recheck

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    Signed-off-by: badai-nguyen <[email protected]>
    Co-authored-by: Shunsuke Miura <[email protected]>

commit 8906a1e
Author: Takamasa Horibe <[email protected]>
Date:   Fri Dec 9 16:29:45 2022 +0900

    fix(trajectory_follower): fix mpc trajectory z pos (autowarefoundation#2482)

    Signed-off-by: takahoribe <[email protected]>

    Signed-off-by: takahoribe <[email protected]>

commit d493905
Author: Yutaka Shimizu <[email protected]>
Date:   Fri Dec 9 12:40:30 2022 +0900

    feat(behavior_velocity_planner): clean walkway module (autowarefoundation#2480)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit d3b86a3
Author: Makoto Kurihara <[email protected]>
Date:   Thu Dec 8 22:59:32 2022 +0900

    fix(emergency_handler): fix mrm handling when mrm behavior is none (autowarefoundation#2476)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit 2dde073
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 8 17:16:13 2022 +0900

    feat(behavior_velocity_planner): add velocity factors (autowarefoundation#1985)

    * (editting) add intersection_coordination to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add intersection coordination to stop reasons

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) add v2x to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 publisher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 to  scene modules

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * add stop reason2 to obstacle stop planner and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Modify files including unintended change by rebase

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * fix error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * modification for renaming stop_reason2 to motion_factor

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) rename variables

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * bug fix

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Solved build error, but not launched

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing launch error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Fix error in launching motion factor aggregator

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * pull the latest foundation/main

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * feat: add velocity factor interface

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: stop sign

    Signed-off-by: Takagi, Isamu <[email protected]>

    * WIP

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update visualizer

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: modify traffic light manager

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update velocity factors

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move adapi msgs

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old aggregator

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: rename message

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add using

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: use nan as default distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: set virtual traffic light detail

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: remove debug code

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: copyright

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: TakumiKozaka-T4 <[email protected]>
    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: TakumiKozaka-T4 <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a5057e
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 8 13:42:50 2022 +0900

    fix(freespace_planning_algorithms): comment out failing tests (autowarefoundation#2440)

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit cddb8c7
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:57:04 2022 +0900

    feat(gyro_odometer): publish twist when both data arrives (autowarefoundation#2423)

    * feat(gyro_odometer): publish when both data arrive

    Signed-off-by: kminoda <[email protected]>

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * use latest timestamp

    Signed-off-by: kminoda <[email protected]>

    * small fix

    Signed-off-by: kminoda <[email protected]>

    * debugged

    Signed-off-by: kminoda <[email protected]>

    * update gyro_odometer

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix timestamp validation flow

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * pre-commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit f0f513c
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:08:29 2022 +0900

    fix: remove unnecessary DEBUG_INFO declarations (autowarefoundation#2457)

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>

commit 01daebf
Author: Takayuki Murooka <[email protected]>
Date:   Thu Dec 8 00:28:35 2022 +0900

    fix(tier4_autoware_api_launch): add rosbridge_server dependency (autowarefoundation#2470)

    Signed-off-by: Takayuki Murooka <[email protected]>

    Signed-off-by: Takayuki Murooka <[email protected]>

commit 26ef817
Author: Shumpei Wakabayashi <[email protected]>
Date:   Wed Dec 7 19:32:09 2022 +0900

    fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (autowarefoundation#2455)

    * fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

    * ci(pre-commit): autofix

    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 024b993
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 18:00:32 2022 +0900

    fix(motion_utils): rename sampling function (autowarefoundation#2469)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c240ce2
Author: Yukihiro Saito <[email protected]>
Date:   Wed Dec 7 16:33:44 2022 +0900

    feat: remove web controller (autowarefoundation#2405)

    Signed-off-by: Yukihiro Saito <[email protected]>

    Signed-off-by: Yukihiro Saito <[email protected]>

commit 2992b1c
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 15:39:28 2022 +0900

    feat(motion_utils): add points resample function (autowarefoundation#2465)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 4a75d7c
Author: Mingyu1991 <[email protected]>
Date:   Wed Dec 7 14:42:33 2022 +0900

    docs: update training data for traffic light (autowarefoundation#2464)

    * update traffic light cnn classifier README.md

    * correct to upper case

    Co-authored-by: Daisuke Nishimatsu <[email protected]>

commit a428716
Author: Ryuta Kambe <[email protected]>
Date:   Wed Dec 7 12:21:49 2022 +0900

    perf(behavior_velocity_planner): remove unnecessary debug data (autowarefoundation#2462)

    Signed-off-by: veqcc <[email protected]>

commit 0a5b285
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 12:03:46 2022 +0900

    feat(behavior_path_planner): cut overlapped path (autowarefoundation#2451)

    * feat(behavior_path_planner): cut overlapped path

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 65003dc
Author: Takagi, Isamu <[email protected]>
Date:   Wed Dec 7 11:06:41 2022 +0900

    revert(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407) (autowarefoundation#2460)

    Revert "fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)"

    This reverts commit c422485.

commit fab1867
Author: Makoto Kurihara <[email protected]>
Date:   Wed Dec 7 10:32:41 2022 +0900

    fix(raw_vehicle_cmd_converter): fix column index for map validation (autowarefoundation#2450)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit a1d3c80
Author: Ambroise Vincent <[email protected]>
Date:   Tue Dec 6 10:39:02 2022 +0100

    fix(tvm_utility): copy test result to CPU (autowarefoundation#2414)

    Also remove dependency to autoware_auto_common.

    Issue-Id: SCM-5401
    Signed-off-by: Ambroise Vincent <[email protected]>
    Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

    Signed-off-by: Ambroise Vincent <[email protected]>
    Co-authored-by: Xinyu Wang <[email protected]>

commit eb99468
Author: Mamoru Sobue <[email protected]>
Date:   Tue Dec 6 18:11:41 2022 +0900

    chore(behaviror_velocity_planner): changed logging level for intersection (autowarefoundation#2459)

    changed logging level

    Signed-off-by: Mamoru Sobue <[email protected]>

commit c422485
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 6 17:01:37 2022 +0900

    fix(default_ad_api): fix autoware state to add wait time (autowarefoundation#2407)

    * fix(default_ad_api): fix autoware state to add wait time

    Signed-off-by: Takagi, Isamu <[email protected]>

    * Update system/default_ad_api/src/compatibility/autoware_state.cpp

    Co-authored-by: Kenji Miyake <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: Kenji Miyake <[email protected]>

commit f984fbb
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 6 13:55:17 2022 +0900

    feat(transition_manager): add param to ignore autonomous transition condition (autowarefoundation#2453)

    * feat(transition_manager): add param to ignore autonomous transition condition

    Signed-off-by: Takamasa Horibe <[email protected]>

    * same for modeChangeCompleted

    Signed-off-by: Takamasa Horibe <[email protected]>

    * remove debug print

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit d3e640d
Author: Tomoya Kimura <[email protected]>
Date:   Tue Dec 6 13:01:06 2022 +0900

    feat(operation_mode_transition_manager): transition to auto quickly when vehicle stops (autowarefoundation#2427)

    Signed-off-by: tomoya.kimura <[email protected]>

    Signed-off-by: tomoya.kimura <[email protected]>

Signed-off-by: Kotaro Yoshimoto <[email protected]>
takayuki5168 pushed a commit that referenced this pull request Mar 3, 2023
* Replace 'asssert' with 'assert'

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): computationall => computational

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): collinearity => collinearity

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): hypothenus => hypotenuse

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): numbef => number

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): missmatched => mismatched

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): minimun => minimum

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): neighbore => neighbor

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): neighbour => neighbor

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): propery => properly

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): reagion => region

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): shirinking => shrinking

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): turining => turning

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): lexas => lexus

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): fastetst => fastest

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): analyse => analyze

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): ordinaray => ordinary

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): existance => existence

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): insert missing space

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): modify url including typo in original url

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): precompined => precomputed

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): magitude => magnitude

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): exernal => external

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): undderlying => underlying

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): expicitly => explicitly

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): paremterized => parameterized

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): thier => their

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): simualtor => simulator

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): modifiy => modify

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): neccessary => necessary

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): travelled => traveled

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): heursitic => heuristic

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): chagne => change

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): waypints => waypoints

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): unknwon => unknown

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): true => true

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): approximiate => approximate

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): analitically => analytically

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): modify url including typo in original url

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): computationall => computational

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): hypothenus => hypotenuse

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): neighbour => neighbor

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): modify url including typo in original url

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): kiro => kilo

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): flowchar => flowchart

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): projecton => projection

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): divide variable name with space to fix cspell error

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): yawrate => yaw rate

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): timelag => time_lag

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): divide variable name with space to fix cspell error

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): retrive => retrieve

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): posemsg => pose msg

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): replace northup with east_north_up

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): ignore person names

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): ignore cspell error due to the source from OpenCV

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): ignore cspell error due to the source from OpenCV

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(spell-check): ignore minx, maxx, miny, maxy, minz, maxz from autoware parameter names

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(spell-check): Ignore cspell errors caused by external factor(plotjuggler)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): dereferencable => dereferenceable

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): maxs => maxes

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): interpolatable => interpolable (more common)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): fillter => filter

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): retrurn => return

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): diagnotics => diagnostics

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): Frist => First

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore ptfilter (external reference code)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): overwite => overwrite

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): use semi-major instead of semimajor

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): transien => transient

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore multipolygon, multilinestring

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): symetric => symmetric

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore Gammell (person name)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore Karaman (person name)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore feps with adding explanation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace iradius with i_radius

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace inorm with inv_norm

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace idist with i_dist

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore lfit, LFIT

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore Bboxes

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): unsuppoerted => unsupported

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore person names

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace eigvec with eig_vec

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace eigv with eig_v

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore eigenbox

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace fltmax with flt_max

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore asan

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore rsspace with adding explanation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace bfqueue with bf_queue

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): expanded abbreviations in variable names in debug_plot.py

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore nparr with adding explanation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace vmodel with vehicle_model

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore fpalgos

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace inpro with inner_product

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace iradius with i_radius

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace sstm with ss

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore dend

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore ndim, ndata, linewidth

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore errors from parameter name

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): socre => score

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): newstamp => new_stamp

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): fuseon => fuseOn

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): stdpair => std_pair

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): boxid => box_id

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): intensity => intensity

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): inorder to => in order to

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore divup

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): faceobjects => face_objects

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore rsspace

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore errors from citation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore moraisim

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore ADMM

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore pointinpoly from reference

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): replaned => replanned

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): interaface => interface

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): supress => suppress

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): distane => distance

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): relevent => relevant

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): pedestrain => pedestrian

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): obejct => object

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): paramters => parameters

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore asdasd

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): unnormalized => un-normalized

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): precompilation => pre-compilation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): compensents => components

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): cummulative => cumulative

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore degrounded

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore person names

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): publically => publicly

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): interpolable => interpolatable

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore longl

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): pngs => png images

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): concate => concat

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore cand

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): image magick => imagemagick

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): faceo_ject=> face_object

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): velocityinsertion => velocity insertion

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): euclidian => euclidean

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore steerings

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore OCCUPANCYGRID

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): occuring => occurring

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): refere => refer

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore fourcell

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): eigvalue => eigenvalue

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore badpt

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore divb

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* style(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* doc: add comment to describe LFIT

Co-authored-by: Yukihiro Saito <[email protected]>
Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): computationall => computational

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): hypothenus => hypotenuse

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): computationall => computational

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): hypothenus => hypotenuse

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* update

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): interpolatable => interpolable (more common)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* Squashed commit of the following:

commit c7d3b7d2132323af3437af01e9d774b13005bace
Author: Hirokazu Ishida <[email protected]>
Date:   Fri Dec 16 13:51:35 2022 +0900

    test(freespace_planning_algorithms): done't dump rosbag by default (#2504)

    Signed-off-by: Hirokazu Ishida <[email protected]>

    Signed-off-by: Hirokazu Ishida <[email protected]>

commit 6731e0ced39e3187c2afffe839eaa697a19e5e84
Author: kminoda <[email protected]>
Date:   Fri Dec 16 09:29:35 2022 +0900

    feat(pose_initializer): partial map loading (#2500)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * move function

    Signed-off-by: kminoda <[email protected]>

    * now works

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * clarify how to enable partial mao loading interface

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * Update localization/pose_initializer/config/pose_initializer.param.yaml

    Co-authored-by: Takagi, Isamu <[email protected]>

    * fix pre-commit

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Takagi, Isamu <[email protected]>

commit efb4ff1cea6e07aa9e894a6042e8685e30b420ba
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 15 17:29:44 2022 +0900

    feat(trajectory_follower): extend mpc trajectory for terminal yaw (#2447)

    * feat(trajectory_follower): extend mpc trajectory for terminal yaw

    Signed-off-by: kosuke55 <[email protected]>

    * make mpc min vel param

    Signed-off-by: kosuke55 <[email protected]>

    * add mpc extended point after smoothing

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "make mpc min vel param"

    This reverts commit 02157b6ae0c2ff1564840f6d15e3c55025327baf.

    Signed-off-by: kosuke55 <[email protected]>

    * add comment and hypot

    Signed-off-by: kosuke55 <[email protected]>

    * remove min vel

    Signed-off-by: kosuke55 <[email protected]>

    * add flag for extending traj

    Signed-off-by: kosuke55 <[email protected]>

    * add extend param to default param

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * fix from TakaHoribe review

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * refactor

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit ad2ae7827bdc3af7da8607fdd53ea74940426421
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 15 15:52:34 2022 +0900

    feat(component_interface_tools): add service log checker  (#2503)

    * feat(component_interface_utils): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add diagnostics

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update system error monitor config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 4a13cc5a32898f5b17791d9381744bf71ff8ed20
Author: Yutaka Shimizu <[email protected]>
Date:   Thu Dec 15 12:54:11 2022 +0900

    fix(behavior_path_planner): fix goal lanelet extension (#2508)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 77b1c36b5ca89b25250dcbb117c9f03a9c36c1c4
Author: Kyoichi Sugahara <[email protected]>
Date:   Thu Dec 15 10:45:45 2022 +0900

    feat(behavior_path_planner): change side shift module logic (#2195)

    * change side shift module design

    Signed-off-by: kyoichi sugahara <[email protected]>

    * cherry picked side shift controller

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add debug marker to side shift

    Signed-off-by: kyoichi sugahara <[email protected]>

    * fix pointer error due to direct assignment

    added make_shared

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * add flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add status of AFTER_SHIFT

    Signed-off-by: kyoichi sugahara <[email protected]>

    * remove function for debug

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    * fix flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kyoichi sugahara <[email protected]>
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: tanaka3 <[email protected]>
    Co-authored-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9183c4f20eb4592ed0b48c2eac67add070711677
Author: Takamasa Horibe <[email protected]>
Date:   Wed Dec 14 19:59:00 2022 +0900

    refactor(simple_planning_simulator): make function for duplicated code (#2502)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit ed992b10ed326f03354dce3b563b8622f9ae9a6c
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 17:48:24 2022 +0900

    fix(behavior_path_planner): fix planner data copy (#2501)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 0c6c46b33b3c828cb95eaa31fcbf85655fc6a55f
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 14:42:16 2022 +0900

    fix(behavior_path_planner): fix find nearest function from lateral distance (#2499)

    * feat(behavior_path_planner): fix find nearest function from lateral distance

    * empty commit

commit a26b69d1df55e9369ea3adcdd011ae2d7c86dfb7
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 11:28:07 2022 +0900

    feat(behavior_path_planner): fix overlap checker (#2498)

    * feat(behavior_path_planner): fix overlap checker

    Signed-off-by: yutaka <[email protected]>

    * remove reserve

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 3a24859ca6851caaeb25fc4fac2334fcbdb887d1
Author: Ismet Atabay <[email protected]>
Date:   Tue Dec 13 16:51:59 2022 +0300

    feat(mission_planner): check goal footprint (#2088)

    Signed-off-by: ismet atabay <[email protected]>

commit b6a18855431b5f3a67fcbf383fac8df2b45d462e
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 13 22:46:24 2022 +0900

    feat(trajectory_visualizer): update for steer limit, remove tf for pose source (#2267)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit f1a9a9608559a5b89f631df3dc2fadd037e36ab4
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 19:47:16 2022 +0900

    feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (#2494)

    * feat(behavior_path_planner): clean drivable area code

    Signed-off-by: yutaka <[email protected]>

    * make a function for turn signal decider

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit fafe1d8235b99302bc9ba8f3770ae34878f1e7e7
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 18:19:41 2022 +0900

    feat(behavior_path_planner): change turn signal output timing (#2493)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c48b9cfa7074ecd46d96f6dc43679e17bde3a63d
Author: kminoda <[email protected]>
Date:   Tue Dec 13 09:16:14 2022 +0900

    feat(map_loader): add differential map loading interface (#2417)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * added module load in _node.cpp

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * create pcd metadata dict when either of the flag is true

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix readme

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a3613bfcd3e36e522d0ea9130f6200ca7689e2b
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 08:49:23 2022 +0900

    docs(default_ad_api): add readme (#2491)

    * docs(default_ad_api): add readme

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update table

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 49aa10b04de61c36706f6151d11bf17257ca54d1
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 06:46:20 2022 +0900

    feat(default_ad_api): split parameters into file (#2488)

    * feat(default_ad_api): split parameters into file

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old parameter

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: test

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add default config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 7f0138c356c742b6e15e571e7a4683caa55969ac
Author: Yutaka Shimizu <[email protected]>
Date:   Mon Dec 12 22:16:54 2022 +0900

    feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (#2472)

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update obstacle avoidance planner

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * uddate

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * remove resample

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * add orientation

    Signed-off-by: yutaka <[email protected]>

    * change color

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * remove drivable area

    Signed-off-by: yutaka <[email protected]>

    * add flag

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update color

    Signed-off-by: yutaka <[email protected]>

    * fix some codes

    Signed-off-by: yutaka <[email protected]>

    * change to makerker array

    Signed-off-by: yutaka <[email protected]>

    * change avoidance utils

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c855e23cc17d1518ebce5dd15629d03acfe17da3
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 17:15:10 2022 +0900

    refactor(vehicle_cmd_gate): remove old emergency topics (#2403)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit fa04d540c9afdded016730c9978920a194d2d2b4
Author: Daisuke Nishimatsu <[email protected]>
Date:   Mon Dec 12 16:04:00 2022 +0900

    feat: replace python launch with xml launch for system monitor (#2430)

    * feat: replace python launch with xml launch for system monitor

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    * ci(pre-commit): autofix

    * update figure

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    Signed-off-by: Daisuke Nishimatsu <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 4a6990c49d1f8c3bedfb345e7c94c3c6893b4099
Author: Kosuke Takeuchi <[email protected]>
Date:   Mon Dec 12 15:01:39 2022 +0900

    feat(trajectory_follower): pub steer converged marker (#2441)

    * feat(trajectory_follower): pub steer converged marker

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "feat(trajectory_follower): pub steer converged marker"

    This reverts commit a6f6917bc542d5b533150f6abba086121e800974.

    Signed-off-by: kosuke55 <[email protected]>

    * add steer converged debug marker in contoller_node

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit 3c01f15125dfbc45e1050ee96ccc42618d6ee6fd
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 12:48:41 2022 +0900

    docs(tier4_state_rviz_plugin): update readme (#2475)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit d8ece0040354be5381a27403bcc757354735a77b
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 11:57:03 2022 +0900

    chore(simulator_compatibility_test): suppress setuptools warnings (#2483)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 727586bfe86dc9cb21ce34d9cbe19c241e162b04
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 10:00:35 2022 +0900

    fix(behavior_path_planner): lane change candidate resolution (#2426)

    * fix(behavior_path_planner): lane change candidate resolution

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * rework sampling based  on current speed

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * refactor code

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * use util's resampler

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * consider min_resampling_points and resampling dt

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    * simplify code

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Signed-off-by: Muhammad Zulfaqar <[email protected]>

commit 284548ca7f38b1d83af11f2b9caaac116eb9b09c
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 09:57:19 2022 +0900

    fix(behavior_path_planner): minimum distance for lane change (#2413)

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

commit 469d8927bd7a0c98b9d491d347e111065973e13f
Author: Ryohsuke Mitsudome <[email protected]>
Date:   Fri Dec 9 21:27:18 2022 +0900

    revert(behavior_path): revert removal of refineGoalFunction (#2340)" (#2485)

    This reverts commit 8e13ced6dfb6edfea77a589ef4cb93d82683bf51.

    Signed-off-by: mitsudome-r <[email protected]>

    Signed-off-by: mitsudome-r <[email protected]>

commit d924f85b079dfe64feab017166685be40e977e62
Author: NorahXiong <[email protected]>
Date:   Fri Dec 9 19:53:51 2022 +0800

    fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (#2350)

    Signed-off-by: NorahXiong <[email protected]>

    Signed-off-by: NorahXiong <[email protected]>
    Co-authored-by: Ryohsuke Mitsudome <[email protected]>

commit b2ded82324bce78d9db3ff01b0227b00709b1efe
Author: badai nguyen <[email protected]>
Date:   Fri Dec 9 17:12:13 2022 +0900

    fix(ground-segmentation): recheck gnd cluster pointcloud (#2448)

    * fix: reclassify ground cluster pcl

    Signed-off-by: badai-nguyen <[email protected]>

    * fix: add lowest-based recheck

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    Signed-off-by: badai-nguyen <[email protected]>
    Co-authored-by: Shunsuke Miura <[email protected]>

commit 8906a1e78bc5b7d6417683ecedc1efe3f48be31e
Author: Takamasa Horibe <[email protected]>
Date:   Fri Dec 9 16:29:45 2022 +0900

    fix(trajectory_follower): fix mpc trajectory z pos (#2482)

    Signed-off-by: takahoribe <[email protected]>

    Signed-off-by: takahoribe <[email protected]>

commit d4939058f05f9a1609f0ed22afbd0d4febfb212d
Author: Yutaka Shimizu <[email protected]>
Date:   Fri Dec 9 12:40:30 2022 +0900

    feat(behavior_velocity_planner): clean walkway module (#2480)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit d3b86a37ae7c3a0d59832caf56afa13b148d562c
Author: Makoto Kurihara <[email protected]>
Date:   Thu Dec 8 22:59:32 2022 +0900

    fix(emergency_handler): fix mrm handling when mrm behavior is none (#2476)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit 2dde073a101e96757ef0cd189bb9ff06836934e9
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 8 17:16:13 2022 +0900

    feat(behavior_velocity_planner): add velocity factors (#1985)

    * (editting) add intersection_coordination to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add intersection coordination to stop reasons

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) add v2x to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 publisher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 to  scene modules

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * add stop reason2 to obstacle stop planner and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Modify files including unintended change by rebase

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * fix error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * modification for renaming stop_reason2 to motion_factor

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) rename variables

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * bug fix

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Solved build error, but not launched

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing launch error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Fix error in launching motion factor aggregator

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * pull the latest foundation/main

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * feat: add velocity factor interface

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: stop sign

    Signed-off-by: Takagi, Isamu <[email protected]>

    * WIP

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update visualizer

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: modify traffic light manager

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update velocity factors

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move adapi msgs

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old aggregator

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: rename message

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add using

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: use nan as default distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: set virtual traffic light detail

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: remove debug code

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: copyright

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: TakumiKozaka-T4 <[email protected]>
    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: TakumiKozaka-T4 <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a5057e4948ff5ac9165c14eb7112d79f2de76d5
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 8 13:42:50 2022 +0900

    fix(freespace_planning_algorithms): comment out failing tests (#2440)

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit cddb8c74d0fbf49390b4d462c20c12bc257f4825
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:57:04 2022 +0900

    feat(gyro_odometer): publish twist when both data arrives (#2423)

    * feat(gyro_odometer): publish when both data arrive

    Signed-off-by: kminoda <[email protected]>

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * use latest timestamp

    Signed-off-by: kminoda <[email protected]>

    * small fix

    Signed-off-by: kminoda <[email protected]>

    * debugged

    Signed-off-by: kminoda <[email protected]>

    * update gyro_odometer

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix timestamp validation flow

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * pre-commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit f0f513cf44532dfe8d51d27c4caef23fb694af16
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:08:29 2022 +0900

    fix: remove unnecessary DEBUG_INFO declarations (#2457)

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>

commit 01daebf42937a05a2d83f3dee2c0778389492e50
Author: Takayuki Murooka <[email protected]>
Date:   Thu Dec 8 00:28:35 2022 +0900

    fix(tier4_autoware_api_launch): add rosbridge_server dependency (#2470)

    Signed-off-by: Takayuki Murooka <[email protected]>

    Signed-off-by: Takayuki Murooka <[email protected]>

commit 26ef8174b1c12b84070b36df2a7cd14bfa9c0363
Author: Shumpei Wakabayashi <[email protected]>
Date:   Wed Dec 7 19:32:09 2022 +0900

    fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (#2455)

    * fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

    * ci(pre-commit): autofix

    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 024b993a0db8c0d28db0f05f64990bed7069cbd8
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 18:00:32 2022 +0900

    fix(motion_utils): rename sampling function (#2469)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c240ce2b6f4e79c435ed651b347a7d665a947862
Author: Yukihiro Saito <[email protected]>
Date:   Wed Dec 7 16:33:44 2022 +0900

    feat: remove web controller (#2405)

    Signed-off-by: Yukihiro Saito <[email protected]>

    Signed-off-by: Yukihiro Saito <[email protected]>

commit 2992b1cadae7e7ac86fd249998ce3c7ddbe476c9
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 15:39:28 2022 +0900

    feat(motion_utils): add points resample function (#2465)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 4a75d7c0ddbd88f54afaf2bb05eb65138a53ea60
Author: Mingyu1991 <[email protected]>
Date:   Wed Dec 7 14:42:33 2022 +0900

    docs: update training data for traffic light (#2464)

    * update traffic light cnn classifier README.md

    * correct to upper case

    Co-authored-by: Daisuke Nishimatsu <[email protected]>

commit a4287165be87fa7727f79c01dfb0bea6af54c333
Author: Ryuta Kambe <[email protected]>
Date:   Wed Dec 7 12:21:49 2022 +0900

    perf(behavior_velocity_planner): remove unnecessary debug data (#2462)

    Signed-off-by: veqcc <[email protected]>

commit 0a5b2857d3b2c1c9370598013b25aeaebf2d654d
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 12:03:46 2022 +0900

    feat(behavior_path_planner): cut overlapped path (#2451)

    * feat(behavior_path_planner): cut overlapped path

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 65003dc99f2abe937afcc010514530fa666fbbfd
Author: Takagi, Isamu <[email protected]>
Date:   Wed Dec 7 11:06:41 2022 +0900

    revert(default_ad_api): fix autoware state to add wait time (#2407) (#2460)

    Revert "fix(default_ad_api): fix autoware state to add wait time (#2407)"

    This reverts commit c4224854a7e57a9526dde998f742741fe383471c.

commit fab18677ca4de378faff84a41db5147577e7448d
Author: Makoto Kurihara <[email protected]>
Date:   Wed Dec 7 10:32:41 2022 +0900

    fix(raw_vehicle_cmd_converter): fix column index for map validation (#2450)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit a1d3c80a4f5e3a388887a5afb32d9bf7961301f1
Author: Ambroise Vincent <[email protected]>
Date:   Tue Dec 6 10:39:02 2022 +0100

    fix(tvm_utility): copy test result to CPU (#2414)

    Also remove dependency to autoware_auto_common.

    Issue-Id: SCM-5401
    Signed-off-by: Ambroise Vincent <[email protected]>
    Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

    Signed-off-by: Ambroise Vincent <[email protected]>
    Co-authored-by: Xinyu Wang <[email protected]>

commit eb9946832c7e42d5380fd71956165409d0b592c3
Author: Mamoru Sobue <[email protected]>
Date:   Tue Dec 6 18:11:41 2022 +0900

    chore(behaviror_velocity_planner): changed logging level for intersection (#2459)

    changed logging level

    Signed-off-by: Mamoru Sobue <[email protected]>

commit c4224854a7e57a9526dde998f742741fe383471c
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 6 17:01:37 2022 +0900

    fix(default_ad_api): fix autoware state to add wait time (#2407)

    * fix(default_ad_api): fix autoware state to add wait time

    Signed-off-by: Takagi, Isamu <[email protected]>

    * Update system/default_ad_api/src/compatibility/autoware_state.cpp

    Co-authored-by: Kenji Miyake <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: Kenji Miyake <[email protected]>

commit f984fbb708cb02947ec2824ce041c739c35940f7
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 6 13:55:17 2022 +0900

    feat(transition_manager): add param to ignore autonomous transition condition (#2453)

    * feat(transition_manager): add param to ignore autonomous transition condition

    Signed-off-by: Takamasa Horibe <[email protected]>

    * same for modeChangeCompleted

    Signed-off-by: Takamasa Horibe <[email protected]>

    * remove debug print

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit d3e640df270a0942c4639e11451faf26e099bbe1
Author: Tomoya Kimura <[email protected]>
Date:   Tue Dec 6 13:01:06 2022 +0900

    feat(operation_mode_transition_manager): transition to auto quickly when vehicle stops (#2427)

    Signed-off-by: tomoya.kimura <[email protected]>

    Signed-off-by: tomoya.kimura <[email protected]>

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): interpolable => interpolatable

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* Revert "Merge branch 'destroy-typos-check-all' into destroy-typos"

This reverts commit 6116ca02d9df59f815d772a271fed7b0b21ebaf7, reversing
changes made to 1f7157a6b6d957dc0ddd2ac5ef7f8a36c94b96e4.

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore: fix duplication of parameter

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore: fix duplication of function

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* revert: system/system_monitor/launch/system_monitor.launch.xml

Signed-off-by: Kotaro Yoshimoto <[email protected]>

---------

Signed-off-by: Kotaro Yoshimoto <[email protected]>
Signed-off-by: Kotaro Yoshimoto <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Yukihiro Saito <[email protected]>
1222-takeshi pushed a commit to 1222-takeshi/autoware.universe that referenced this pull request Mar 6, 2023
* Replace 'asssert' with 'assert'

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): computationall => computational

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): collinearity => collinearity

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): hypothenus => hypotenuse

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): numbef => number

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): missmatched => mismatched

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): minimun => minimum

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): neighbore => neighbor

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): neighbour => neighbor

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): propery => properly

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): reagion => region

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): shirinking => shrinking

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): turining => turning

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): lexas => lexus

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): fastetst => fastest

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): analyse => analyze

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): ordinaray => ordinary

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): existance => existence

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): insert missing space

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): modify url including typo in original url

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): precompined => precomputed

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): magitude => magnitude

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): exernal => external

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): undderlying => underlying

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): expicitly => explicitly

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): paremterized => parameterized

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): thier => their

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): simualtor => simulator

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): modifiy => modify

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): neccessary => necessary

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): travelled => traveled

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): heursitic => heuristic

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): chagne => change

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): waypints => waypoints

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): unknwon => unknown

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): true => true

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): approximiate => approximate

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): analitically => analytically

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): modify url including typo in original url

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): computationall => computational

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): hypothenus => hypotenuse

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): neighbour => neighbor

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): modify url including typo in original url

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): kiro => kilo

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): flowchar => flowchart

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): projecton => projection

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): divide variable name with space to fix cspell error

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): yawrate => yaw rate

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): timelag => time_lag

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): divide variable name with space to fix cspell error

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): retrive => retrieve

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): posemsg => pose msg

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): replace northup with east_north_up

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): ignore person names

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): ignore cspell error due to the source from OpenCV

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): ignore cspell error due to the source from OpenCV

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(spell-check): ignore minx, maxx, miny, maxy, minz, maxz from autoware parameter names

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(spell-check): Ignore cspell errors caused by external factor(plotjuggler)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): dereferencable => dereferenceable

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): maxs => maxes

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): interpolatable => interpolable (more common)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): fillter => filter

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): retrurn => return

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): diagnotics => diagnostics

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): Frist => First

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore ptfilter (external reference code)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): overwite => overwrite

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(cspell): use semi-major instead of semimajor

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): transien => transient

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore multipolygon, multilinestring

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): symetric => symmetric

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore Gammell (person name)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore Karaman (person name)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore feps with adding explanation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace iradius with i_radius

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace inorm with inv_norm

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace idist with i_dist

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore lfit, LFIT

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore Bboxes

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): unsuppoerted => unsupported

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore person names

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace eigvec with eig_vec

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace eigv with eig_v

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore eigenbox

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace fltmax with flt_max

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore asan

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore rsspace with adding explanation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace bfqueue with bf_queue

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): expanded abbreviations in variable names in debug_plot.py

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore nparr with adding explanation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace vmodel with vehicle_model

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore fpalgos

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace inpro with inner_product

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace iradius with i_radius

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): replace sstm with ss

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore dend

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore ndim, ndata, linewidth

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore errors from parameter name

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): socre => score

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): newstamp => new_stamp

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): fuseon => fuseOn

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): stdpair => std_pair

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): boxid => box_id

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): intensity => intensity

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): inorder to => in order to

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore divup

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): faceobjects => face_objects

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore rsspace

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore errors from citation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore moraisim

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore ADMM

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore pointinpoly from reference

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): replaned => replanned

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): interaface => interface

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): supress => suppress

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): distane => distance

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): relevent => relevant

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): pedestrain => pedestrian

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): obejct => object

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): paramters => parameters

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore asdasd

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): unnormalized => un-normalized

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): precompilation => pre-compilation

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): compensents => components

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): cummulative => cumulative

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore degrounded

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore person names

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): publically => publicly

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): interpolable => interpolatable

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore longl

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): pngs => png images

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): concate => concat

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore cand

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): image magick => imagemagick

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): faceo_ject=> face_object

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): velocityinsertion => velocity insertion

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): euclidian => euclidean

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore steerings

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore OCCUPANCYGRID

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): occuring => occurring

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): refere => refer

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore fourcell

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): eigvalue => eigenvalue

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore badpt

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): ignore divb

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* style(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* doc: add comment to describe LFIT

Co-authored-by: Yukihiro Saito <[email protected]>
Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): computationall => computational

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): hypothenus => hypotenuse

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): computationall => computational

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): hypothenus => hypotenuse

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* ci(pre-commit): autofix

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* update

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* fix(typo): interpolatable => interpolable (more common)

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* Squashed commit of the following:

commit c7d3b7d2132323af3437af01e9d774b13005bace
Author: Hirokazu Ishida <[email protected]>
Date:   Fri Dec 16 13:51:35 2022 +0900

    test(freespace_planning_algorithms): done't dump rosbag by default (#2504)

    Signed-off-by: Hirokazu Ishida <[email protected]>

    Signed-off-by: Hirokazu Ishida <[email protected]>

commit 6731e0ced39e3187c2afffe839eaa697a19e5e84
Author: kminoda <[email protected]>
Date:   Fri Dec 16 09:29:35 2022 +0900

    feat(pose_initializer): partial map loading (#2500)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * move function

    Signed-off-by: kminoda <[email protected]>

    * now works

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * clarify how to enable partial mao loading interface

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * update readme

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * Update localization/pose_initializer/config/pose_initializer.param.yaml

    Co-authored-by: Takagi, Isamu <[email protected]>

    * fix pre-commit

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Takagi, Isamu <[email protected]>

commit efb4ff1cea6e07aa9e894a6042e8685e30b420ba
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 15 17:29:44 2022 +0900

    feat(trajectory_follower): extend mpc trajectory for terminal yaw (#2447)

    * feat(trajectory_follower): extend mpc trajectory for terminal yaw

    Signed-off-by: kosuke55 <[email protected]>

    * make mpc min vel param

    Signed-off-by: kosuke55 <[email protected]>

    * add mpc extended point after smoothing

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "make mpc min vel param"

    This reverts commit 02157b6ae0c2ff1564840f6d15e3c55025327baf.

    Signed-off-by: kosuke55 <[email protected]>

    * add comment and hypot

    Signed-off-by: kosuke55 <[email protected]>

    * remove min vel

    Signed-off-by: kosuke55 <[email protected]>

    * add flag for extending traj

    Signed-off-by: kosuke55 <[email protected]>

    * add extend param to default param

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * fix from TakaHoribe review

    Signed-off-by: kosuke55 <[email protected]>

    * fix typo

    Signed-off-by: kosuke55 <[email protected]>

    * refactor

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit ad2ae7827bdc3af7da8607fdd53ea74940426421
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 15 15:52:34 2022 +0900

    feat(component_interface_tools): add service log checker  (#2503)

    * feat(component_interface_utils): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add service log checker

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat(component_interface_tools): add diagnostics

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update system error monitor config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 4a13cc5a32898f5b17791d9381744bf71ff8ed20
Author: Yutaka Shimizu <[email protected]>
Date:   Thu Dec 15 12:54:11 2022 +0900

    fix(behavior_path_planner): fix goal lanelet extension (#2508)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 77b1c36b5ca89b25250dcbb117c9f03a9c36c1c4
Author: Kyoichi Sugahara <[email protected]>
Date:   Thu Dec 15 10:45:45 2022 +0900

    feat(behavior_path_planner): change side shift module logic (#2195)

    * change side shift module design

    Signed-off-by: kyoichi sugahara <[email protected]>

    * cherry picked side shift controller

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add debug marker to side shift

    Signed-off-by: kyoichi sugahara <[email protected]>

    * fix pointer error due to direct assignment

    added make_shared

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * add flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * add status of AFTER_SHIFT

    Signed-off-by: kyoichi sugahara <[email protected]>

    * remove function for debug

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    * fix flow chart

    Signed-off-by: kyoichi sugahara <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kyoichi sugahara <[email protected]>
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: tanaka3 <[email protected]>
    Co-authored-by: Muhammad Zulfaqar Azmi <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9183c4f20eb4592ed0b48c2eac67add070711677
Author: Takamasa Horibe <[email protected]>
Date:   Wed Dec 14 19:59:00 2022 +0900

    refactor(simple_planning_simulator): make function for duplicated code (#2502)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit ed992b10ed326f03354dce3b563b8622f9ae9a6c
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 17:48:24 2022 +0900

    fix(behavior_path_planner): fix planner data copy (#2501)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 0c6c46b33b3c828cb95eaa31fcbf85655fc6a55f
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 14:42:16 2022 +0900

    fix(behavior_path_planner): fix find nearest function from lateral distance (#2499)

    * feat(behavior_path_planner): fix find nearest function from lateral distance

    * empty commit

commit a26b69d1df55e9369ea3adcdd011ae2d7c86dfb7
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 14 11:28:07 2022 +0900

    feat(behavior_path_planner): fix overlap checker (#2498)

    * feat(behavior_path_planner): fix overlap checker

    Signed-off-by: yutaka <[email protected]>

    * remove reserve

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 3a24859ca6851caaeb25fc4fac2334fcbdb887d1
Author: Ismet Atabay <[email protected]>
Date:   Tue Dec 13 16:51:59 2022 +0300

    feat(mission_planner): check goal footprint (#2088)

    Signed-off-by: ismet atabay <[email protected]>

commit b6a18855431b5f3a67fcbf383fac8df2b45d462e
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 13 22:46:24 2022 +0900

    feat(trajectory_visualizer): update for steer limit, remove tf for pose source (#2267)

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit f1a9a9608559a5b89f631df3dc2fadd037e36ab4
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 19:47:16 2022 +0900

    feat(behavior_path_planner): remove unnecessary code and clean turn signal decider (#2494)

    * feat(behavior_path_planner): clean drivable area code

    Signed-off-by: yutaka <[email protected]>

    * make a function for turn signal decider

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit fafe1d8235b99302bc9ba8f3770ae34878f1e7e7
Author: Yutaka Shimizu <[email protected]>
Date:   Tue Dec 13 18:19:41 2022 +0900

    feat(behavior_path_planner): change turn signal output timing (#2493)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c48b9cfa7074ecd46d96f6dc43679e17bde3a63d
Author: kminoda <[email protected]>
Date:   Tue Dec 13 09:16:14 2022 +0900

    feat(map_loader): add differential map loading interface (#2417)

    * first commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * added module load in _node.cpp

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * create pcd metadata dict when either of the flag is true

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix readme

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a3613bfcd3e36e522d0ea9130f6200ca7689e2b
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 08:49:23 2022 +0900

    docs(default_ad_api): add readme (#2491)

    * docs(default_ad_api): add readme

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update table

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 49aa10b04de61c36706f6151d11bf17257ca54d1
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 13 06:46:20 2022 +0900

    feat(default_ad_api): split parameters into file (#2488)

    * feat(default_ad_api): split parameters into file

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old parameter

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: test

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add default config

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 7f0138c356c742b6e15e571e7a4683caa55969ac
Author: Yutaka Shimizu <[email protected]>
Date:   Mon Dec 12 22:16:54 2022 +0900

    feat(behavior_path_planner, obstacle_avoidance_planner): add new drivable area (#2472)

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update obstacle avoidance planner

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * uddate

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    * remove resample

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * add orientation

    Signed-off-by: yutaka <[email protected]>

    * change color

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * remove drivable area

    Signed-off-by: yutaka <[email protected]>

    * add flag

    Signed-off-by: yutaka <[email protected]>

    * update

    Signed-off-by: yutaka <[email protected]>

    * update color

    Signed-off-by: yutaka <[email protected]>

    * fix some codes

    Signed-off-by: yutaka <[email protected]>

    * change to makerker array

    Signed-off-by: yutaka <[email protected]>

    * change avoidance utils

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c855e23cc17d1518ebce5dd15629d03acfe17da3
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 17:15:10 2022 +0900

    refactor(vehicle_cmd_gate): remove old emergency topics (#2403)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit fa04d540c9afdded016730c9978920a194d2d2b4
Author: Daisuke Nishimatsu <[email protected]>
Date:   Mon Dec 12 16:04:00 2022 +0900

    feat: replace python launch with xml launch for system monitor (#2430)

    * feat: replace python launch with xml launch for system monitor

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    * ci(pre-commit): autofix

    * update figure

    Signed-off-by: Daisuke Nishimatsu <[email protected]>

    Signed-off-by: Daisuke Nishimatsu <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 4a6990c49d1f8c3bedfb345e7c94c3c6893b4099
Author: Kosuke Takeuchi <[email protected]>
Date:   Mon Dec 12 15:01:39 2022 +0900

    feat(trajectory_follower): pub steer converged marker (#2441)

    * feat(trajectory_follower): pub steer converged marker

    Signed-off-by: kosuke55 <[email protected]>

    * Revert "feat(trajectory_follower): pub steer converged marker"

    This reverts commit a6f6917bc542d5b533150f6abba086121e800974.

    Signed-off-by: kosuke55 <[email protected]>

    * add steer converged debug marker in contoller_node

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit 3c01f15125dfbc45e1050ee96ccc42618d6ee6fd
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 12:48:41 2022 +0900

    docs(tier4_state_rviz_plugin): update readme (#2475)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit d8ece0040354be5381a27403bcc757354735a77b
Author: Takagi, Isamu <[email protected]>
Date:   Mon Dec 12 11:57:03 2022 +0900

    chore(simulator_compatibility_test): suppress setuptools warnings (#2483)

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>

commit 727586bfe86dc9cb21ce34d9cbe19c241e162b04
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 10:00:35 2022 +0900

    fix(behavior_path_planner): lane change candidate resolution (#2426)

    * fix(behavior_path_planner): lane change candidate resolution

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * rework sampling based  on current speed

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * refactor code

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * use util's resampler

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    * consider min_resampling_points and resampling dt

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    * simplify code

    Signed-off-by: Muhammad Zulfaqar <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Signed-off-by: Muhammad Zulfaqar <[email protected]>

commit 284548ca7f38b1d83af11f2b9caaac116eb9b09c
Author: Zulfaqar Azmi <[email protected]>
Date:   Mon Dec 12 09:57:19 2022 +0900

    fix(behavior_path_planner): minimum distance for lane change (#2413)

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>

commit 469d8927bd7a0c98b9d491d347e111065973e13f
Author: Ryohsuke Mitsudome <[email protected]>
Date:   Fri Dec 9 21:27:18 2022 +0900

    revert(behavior_path): revert removal of refineGoalFunction (#2340)" (#2485)

    This reverts commit 8e13ced6dfb6edfea77a589ef4cb93d82683bf51.

    Signed-off-by: mitsudome-r <[email protected]>

    Signed-off-by: mitsudome-r <[email protected]>

commit d924f85b079dfe64feab017166685be40e977e62
Author: NorahXiong <[email protected]>
Date:   Fri Dec 9 19:53:51 2022 +0800

    fix(freespace_planning_algorithms): fix rrtstar can't arrive goal error (#2350)

    Signed-off-by: NorahXiong <[email protected]>

    Signed-off-by: NorahXiong <[email protected]>
    Co-authored-by: Ryohsuke Mitsudome <[email protected]>

commit b2ded82324bce78d9db3ff01b0227b00709b1efe
Author: badai nguyen <[email protected]>
Date:   Fri Dec 9 17:12:13 2022 +0900

    fix(ground-segmentation): recheck gnd cluster pointcloud (#2448)

    * fix: reclassify ground cluster pcl

    Signed-off-by: badai-nguyen <[email protected]>

    * fix: add lowest-based recheck

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    * chore: refactoring

    Signed-off-by: badai-nguyen <[email protected]>

    Signed-off-by: badai-nguyen <[email protected]>
    Co-authored-by: Shunsuke Miura <[email protected]>

commit 8906a1e78bc5b7d6417683ecedc1efe3f48be31e
Author: Takamasa Horibe <[email protected]>
Date:   Fri Dec 9 16:29:45 2022 +0900

    fix(trajectory_follower): fix mpc trajectory z pos (#2482)

    Signed-off-by: takahoribe <[email protected]>

    Signed-off-by: takahoribe <[email protected]>

commit d4939058f05f9a1609f0ed22afbd0d4febfb212d
Author: Yutaka Shimizu <[email protected]>
Date:   Fri Dec 9 12:40:30 2022 +0900

    feat(behavior_velocity_planner): clean walkway module (#2480)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit d3b86a37ae7c3a0d59832caf56afa13b148d562c
Author: Makoto Kurihara <[email protected]>
Date:   Thu Dec 8 22:59:32 2022 +0900

    fix(emergency_handler): fix mrm handling when mrm behavior is none (#2476)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit 2dde073a101e96757ef0cd189bb9ff06836934e9
Author: Takagi, Isamu <[email protected]>
Date:   Thu Dec 8 17:16:13 2022 +0900

    feat(behavior_velocity_planner): add velocity factors (#1985)

    * (editting) add intersection_coordination to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add intersection coordination to stop reasons

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) add v2x to stop reason

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 publisher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (editting) add stop reason2 to  scene modules

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * add stop reason2 to obstacle stop planner and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Modify files including unintended change by rebase

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * Modification 1:  not to publsh vacant stop reason, 2: change default status in obstacle stop and surround obstacle checker

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * fix error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * modification for renaming stop_reason2 to motion_factor

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (Editting) rename variables

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * bug fix

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Add motion factor message. Modify scene modules due to new motion factor. Moving motion factor aggregator.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Save current work. Modify aggregator, CMakeList. Add launcher

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) Solved build error, but not launched

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing error in launch

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (WIP) fixing launch error

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Fix error in launching motion factor aggregator

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * Delete unnecessary comment-out in CMakelists. Change remapping in launcher.

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * pull the latest foundation/main

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * (fix for pre-commit.ci) Add <memory> to motion_factor_aggregator.hpp

    Signed-off-by: TakumiKozaka-T4 <[email protected]>

    * ci(pre-commit): autofix

    * feat: add velocity factor interface

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: stop sign

    Signed-off-by: Takagi, Isamu <[email protected]>

    * WIP

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update visualizer

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: modify traffic light manager

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update velocity factors

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: update api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move adapi msgs

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: remove old aggregator

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: move api

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: rename message

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add using

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: add distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: fix build error

    Signed-off-by: Takagi, Isamu <[email protected]>

    * feat: use nan as default distance

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: set virtual traffic light detail

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: remove debug code

    Signed-off-by: Takagi, Isamu <[email protected]>

    * fix: copyright

    Signed-off-by: Takagi, Isamu <[email protected]>

    Signed-off-by: TakumiKozaka-T4 <[email protected]>
    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: TakumiKozaka-T4 <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 9a5057e4948ff5ac9165c14eb7112d79f2de76d5
Author: Kosuke Takeuchi <[email protected]>
Date:   Thu Dec 8 13:42:50 2022 +0900

    fix(freespace_planning_algorithms): comment out failing tests (#2440)

    Signed-off-by: kosuke55 <[email protected]>

    Signed-off-by: kosuke55 <[email protected]>

commit cddb8c74d0fbf49390b4d462c20c12bc257f4825
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:57:04 2022 +0900

    feat(gyro_odometer): publish twist when both data arrives (#2423)

    * feat(gyro_odometer): publish when both data arrive

    Signed-off-by: kminoda <[email protected]>

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * use latest timestamp

    Signed-off-by: kminoda <[email protected]>

    * small fix

    Signed-off-by: kminoda <[email protected]>

    * debugged

    Signed-off-by: kminoda <[email protected]>

    * update gyro_odometer

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * add comments

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * fix timestamp validation flow

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    * remove unnecessary commentouts

    Signed-off-by: kminoda <[email protected]>

    * pre-commit

    Signed-off-by: kminoda <[email protected]>

    * ci(pre-commit): autofix

    Signed-off-by: kminoda <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit f0f513cf44532dfe8d51d27c4caef23fb694af16
Author: kminoda <[email protected]>
Date:   Thu Dec 8 11:08:29 2022 +0900

    fix: remove unnecessary DEBUG_INFO declarations (#2457)

    Signed-off-by: kminoda <[email protected]>

    Signed-off-by: kminoda <[email protected]>

commit 01daebf42937a05a2d83f3dee2c0778389492e50
Author: Takayuki Murooka <[email protected]>
Date:   Thu Dec 8 00:28:35 2022 +0900

    fix(tier4_autoware_api_launch): add rosbridge_server dependency (#2470)

    Signed-off-by: Takayuki Murooka <[email protected]>

    Signed-off-by: Takayuki Murooka <[email protected]>

commit 26ef8174b1c12b84070b36df2a7cd14bfa9c0363
Author: Shumpei Wakabayashi <[email protected]>
Date:   Wed Dec 7 19:32:09 2022 +0900

    fix: rename `use_external_emergency_stop` to  `check_external_emergency_heartbeat` (#2455)

    * fix: rename use_external_emergency_stop to check_external_emergency_heartbeat

    * ci(pre-commit): autofix

    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 024b993a0db8c0d28db0f05f64990bed7069cbd8
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 18:00:32 2022 +0900

    fix(motion_utils): rename sampling function (#2469)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit c240ce2b6f4e79c435ed651b347a7d665a947862
Author: Yukihiro Saito <[email protected]>
Date:   Wed Dec 7 16:33:44 2022 +0900

    feat: remove web controller (#2405)

    Signed-off-by: Yukihiro Saito <[email protected]>

    Signed-off-by: Yukihiro Saito <[email protected]>

commit 2992b1cadae7e7ac86fd249998ce3c7ddbe476c9
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 15:39:28 2022 +0900

    feat(motion_utils): add points resample function (#2465)

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 4a75d7c0ddbd88f54afaf2bb05eb65138a53ea60
Author: Mingyu1991 <[email protected]>
Date:   Wed Dec 7 14:42:33 2022 +0900

    docs: update training data for traffic light (#2464)

    * update traffic light cnn classifier README.md

    * correct to upper case

    Co-authored-by: Daisuke Nishimatsu <[email protected]>

commit a4287165be87fa7727f79c01dfb0bea6af54c333
Author: Ryuta Kambe <[email protected]>
Date:   Wed Dec 7 12:21:49 2022 +0900

    perf(behavior_velocity_planner): remove unnecessary debug data (#2462)

    Signed-off-by: veqcc <[email protected]>

commit 0a5b2857d3b2c1c9370598013b25aeaebf2d654d
Author: Yutaka Shimizu <[email protected]>
Date:   Wed Dec 7 12:03:46 2022 +0900

    feat(behavior_path_planner): cut overlapped path (#2451)

    * feat(behavior_path_planner): cut overlapped path

    Signed-off-by: yutaka <[email protected]>

    * clean code

    Signed-off-by: yutaka <[email protected]>

    Signed-off-by: yutaka <[email protected]>

commit 65003dc99f2abe937afcc010514530fa666fbbfd
Author: Takagi, Isamu <[email protected]>
Date:   Wed Dec 7 11:06:41 2022 +0900

    revert(default_ad_api): fix autoware state to add wait time (#2407) (#2460)

    Revert "fix(default_ad_api): fix autoware state to add wait time (#2407)"

    This reverts commit c4224854a7e57a9526dde998f742741fe383471c.

commit fab18677ca4de378faff84a41db5147577e7448d
Author: Makoto Kurihara <[email protected]>
Date:   Wed Dec 7 10:32:41 2022 +0900

    fix(raw_vehicle_cmd_converter): fix column index for map validation (#2450)

    Signed-off-by: Makoto Kurihara <[email protected]>

    Signed-off-by: Makoto Kurihara <[email protected]>

commit a1d3c80a4f5e3a388887a5afb32d9bf7961301f1
Author: Ambroise Vincent <[email protected]>
Date:   Tue Dec 6 10:39:02 2022 +0100

    fix(tvm_utility): copy test result to CPU (#2414)

    Also remove dependency to autoware_auto_common.

    Issue-Id: SCM-5401
    Signed-off-by: Ambroise Vincent <[email protected]>
    Change-Id: I83b859742df2f2ff7df1d0bd2d287bfe0aa04c3d

    Signed-off-by: Ambroise Vincent <[email protected]>
    Co-authored-by: Xinyu Wang <[email protected]>

commit eb9946832c7e42d5380fd71956165409d0b592c3
Author: Mamoru Sobue <[email protected]>
Date:   Tue Dec 6 18:11:41 2022 +0900

    chore(behaviror_velocity_planner): changed logging level for intersection (#2459)

    changed logging level

    Signed-off-by: Mamoru Sobue <[email protected]>

commit c4224854a7e57a9526dde998f742741fe383471c
Author: Takagi, Isamu <[email protected]>
Date:   Tue Dec 6 17:01:37 2022 +0900

    fix(default_ad_api): fix autoware state to add wait time (#2407)

    * fix(default_ad_api): fix autoware state to add wait time

    Signed-off-by: Takagi, Isamu <[email protected]>

    * Update system/default_ad_api/src/compatibility/autoware_state.cpp

    Co-authored-by: Kenji Miyake <[email protected]>

    Signed-off-by: Takagi, Isamu <[email protected]>
    Co-authored-by: Kenji Miyake <[email protected]>

commit f984fbb708cb02947ec2824ce041c739c35940f7
Author: Takamasa Horibe <[email protected]>
Date:   Tue Dec 6 13:55:17 2022 +0900

    feat(transition_manager): add param to ignore autonomous transition condition (#2453)

    * feat(transition_manager): add param to ignore autonomous transition condition

    Signed-off-by: Takamasa Horibe <[email protected]>

    * same for modeChangeCompleted

    Signed-off-by: Takamasa Horibe <[email protected]>

    * remove debug print

    Signed-off-by: Takamasa Horibe <[email protected]>

    Signed-off-by: Takamasa Horibe <[email protected]>

commit d3e640df270a0942c4639e11451faf26e099bbe1
Author: Tomoya Kimura <[email protected]>
Date:   Tue Dec 6 13:01:06 2022 +0900

    feat(operation_mode_transition_manager): transition to auto quickly when vehicle stops (#2427)

    Signed-off-by: tomoya.kimura <[email protected]>

    Signed-off-by: tomoya.kimura <[email protected]>

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore(cspell): interpolable => interpolatable

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* Revert "Merge branch 'destroy-typos-check-all' into destroy-typos"

This reverts commit 6116ca02d9df59f815d772a271fed7b0b21ebaf7, reversing
changes made to 1f7157a6b6d957dc0ddd2ac5ef7f8a36c94b96e4.

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore: fix duplication of parameter

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* chore: fix duplication of function

Signed-off-by: Kotaro Yoshimoto <[email protected]>

* revert: system/system_monitor/launch/system_monitor.launch.xml

Signed-off-by: Kotaro Yoshimoto <[email protected]>

---------

Signed-off-by: Kotaro Yoshimoto <[email protected]>
Signed-off-by: Kotaro Yoshimoto <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Yukihiro Saito <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component:planning Route planning, decision-making, and navigation. (auto-assigned)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants