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

chore: sync upstream #1078

Merged
merged 88 commits into from
Dec 20, 2023
Merged

chore: sync upstream #1078

merged 88 commits into from
Dec 20, 2023

Commits on Dec 6, 2023

  1. fix(ekf_localizer): correct the calculation of delay_step in updateMe…

    …asurementPose/Twist (autowarefoundation#5691)
    
    * Added X_delay_times_ to obtain the accumulated lap times of the timer callback.
    Added find_closest_index function to easily use the X_delay_times_.
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * Added a concept/variable of accumulated_delay_time_ and store every lap time of timer callback.
    The delay_step will be calculated from it, and the bug of calculating delay_step should be gone.
    Besides, removed dt in measurementUpdatePose/Twist since it is not needed.
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * Fixed dt to ekf_dt_ in predictUpdateFrequency()
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * Removed temporary debug stuff
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * style(pre-commit): autofix
    
    * Fixed code style pointed out from pre-commit.ci
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * style(pre-commit): autofix
    
    * Fixed typo
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * Removed variable ekf_rate_ which is currently unused.
    Added warnings when the ekf_dt_ is too large.
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * style(pre-commit): autofix
    
    * Changed threshold of delay time so that to look the most last (or largest) value of accumulated_delay_times_
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * Correct the warning messages of diag_info to look up the last (or largest) value of accumulated_delay_times_
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    TaikiYamada4 and pre-commit-ci[bot] committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    a1f354d View commit details
    Browse the repository at this point in the history
  2. fix(start_planner): check safety only when waiting approval (autoware…

    …foundation#5792)
    
    1. The `updateData()` function now sets `status_.is_safe_dynamic_objects` to true when `requiresDynamicObjectsCollisionDetection()` returns false.
    
    2. The `isExecutionReady()` function now checks for dynamic object collisions only if `requiresDynamicObjectsCollisionDetection()` returns true and `isWaitingApproval()` also returns true. This change ensures that dynamic object collision detection is performed only when necessary and approval is pending.
    
    Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
    kyoichi-sugahara committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    ea958a2 View commit details
    Browse the repository at this point in the history
  3. feat(start_planner): add surround moving obstacle check (autowarefoun…

    …dation#5782)
    
    * feat(start_planner): add surround moving obstacle check
    This commit introduces a new feature in the start_planner module for checking surrounding moving obstacles.
    - It adds parameters to specify the search radius and threshold velocity for moving obstacles, along with flags to indicate which types of objects should be checked.
    - The `noMovingObjectsAround` function has been added to filter dynamic objects within a certain radius based on their velocity.
      - If no moving objects are detected, the function returns true; otherwise, it returns false.
    - This feature enhances the safety of the start_planner by ensuring that the path can't be approved while surrond moving obstacles exist.
    ---------
    Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
    kyoichi-sugahara committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    ab4a3eb View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2023

  1. refactor(avoidance, avoidance_by_lane_change): separate package (auto…

    …warefoundation#5790)
    
    * refactor(avoidance): separate package
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * refactor(AbLC): separate package
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * refactor(bpp): remove separate module
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(bpp): fix test error
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    ---------
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    13d45ae View commit details
    Browse the repository at this point in the history
  2. chore: update CODEOWNERS (autowarefoundation#5800)

    Signed-off-by: GitHub <noreply@github.com>
    Co-authored-by: github-actions <github-actions@github.com>
    awf-autoware-bot[bot] and github-actions committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    c95b997 View commit details
    Browse the repository at this point in the history
  3. refactor(motion_velocity_smoother): boost::optional to std::optional (a…

    …utowarefoundation#5758)
    
    * refactor(motion_velocity_smoother): boost::optional to std::optional
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    zulfaqar-azmi-t4 and pre-commit-ci[bot] committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    dd0d6eb View commit details
    Browse the repository at this point in the history
  4. refactor(start_planner, goal_planner): separate package (autowarefoun…

    …dation#5802)
    
    * separate packages
    
    Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
    
    ---------
    
    Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
    kyoichi-sugahara committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    49c95d1 View commit details
    Browse the repository at this point in the history
  5. fix(avoidance): fix invalid optional access (autowarefoundation#5804)

    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    3ec6201 View commit details
    Browse the repository at this point in the history
  6. refactor(behavior_path_planner): delete unnecessary TODO (autowarefou…

    …ndation#5806)
    
    delete unnecessary TODO
    
    Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
    kyoichi-sugahara committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    566c57f View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2023

  1. chore(bpp): update maintainer (autowarefoundation#5809)

    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    089e8f2 View commit details
    Browse the repository at this point in the history
  2. fix(crosswalk_traffic_light_estimator): add operation to remove traff…

    …ic signals with duplicated ids (autowarefoundation#5653)
    
    * fix: add operation to remove traffic signals with duplicated ids
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * feat: move operation into `crosswalk_traffic_light_estimator`
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    ---------
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    ktro2828 committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    795d787 View commit details
    Browse the repository at this point in the history
  3. refactor(multi_object_tracker): put node parameters to yaml file (aut…

    …owarefoundation#5769)
    
    * rework multi object tracker parameters
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * update README
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * rework radar tracker parameter too
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    ---------
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    YoshiRi committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    aeb461a View commit details
    Browse the repository at this point in the history
  4. chore(crosswalk): update comments (autowarefoundation#5813)

    * fix typo
    * update comments
    
    Signed-off-by: Yuki Takagi <yuki.takagi@tier4.jp>
    yuki-takagi-66 committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    0e9d1f0 View commit details
    Browse the repository at this point in the history
  5. refactor(motion_utils): stop using CAPACITY from Trajectory message (a…

    …utowarefoundation#5755)
    
    Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
    maxime-clem committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    f582b5a View commit details
    Browse the repository at this point in the history
  6. fix: add missing param on perception launch: (autowarefoundation#5812)

    detection_by_tracker_param_path was missing
    
    Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp>
    technolojin committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    1bac0bf View commit details
    Browse the repository at this point in the history
  7. refactor(lane_change): move lane change param (autowarefoundation#5807)

    * refactor(lane_change): move lane change params
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(avoidance): remove unnecessary param path
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    ---------
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    1f7ad17 View commit details
    Browse the repository at this point in the history
  8. fix(ekf_localizer): correct the initialization of accumulated_delay_t…

    …imes to obtain accurate computation of delay_time (autowarefoundation#5821)
    
    Correct accumulated_delay_times in ekf_localizer so that the delay_step is computed accurately.
    
    Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
    TaikiYamada4 committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    055bc9d View commit details
    Browse the repository at this point in the history
  9. feat(system_diagnostic_graph): support config override and add tests (a…

    …utowarefoundation#5816)
    
    Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
    isamu-takagi committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    9b4cd9c View commit details
    Browse the repository at this point in the history
  10. fix(autoware_auto_msgs_adapter): fix predicted path test (autowarefou…

    …ndation#5744)
    
    Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
    isamu-takagi committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    64d12e6 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2023

  1. refactor(side_shift): separate side shift module (autowarefoundation#…

    …5820)
    
    * refactor(side_shift): separate side shift module
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * refactor(bpp): remove side shift module
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    ---------
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 9, 2023
    Configuration menu
    Copy the full SHA
    41e5903 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2023

  1. fix(avoidance): output invalid avoidance path with unsafe state (auto…

    …warefoundation#5689)
    
    fix(avoidance): output invalid avoidance path
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    851de09 View commit details
    Browse the repository at this point in the history
  2. chore: update CODEOWNERS (autowarefoundation#5811)

    Signed-off-by: GitHub <noreply@github.com>
    Co-authored-by: github-actions <github-actions@github.com>
    awf-autoware-bot[bot] and github-actions committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    281f1ec View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. fix(localization_util): fixed rejection criteria of SmartPoseBuffer::…

    …interpolate (autowarefoundation#5818)
    
    Fixed rejection criteria of SmartPoseBuffer::interpolate
    
    Signed-off-by: Shintaro Sakoda <shintaro.sakoda@tier4.jp>
    SakodaShintaro committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    89d4462 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    32712ab View commit details
    Browse the repository at this point in the history
  3. feat(obstacle_cruise_planner): add jerk and acc limits for slow-down (a…

    …utowarefoundation#5810)
    
    Add jerk and acc limits for slow-down
    
    Signed-off-by: Daniel Sanchez <daniel.sanchez@tier4.jp>
    danielsanchezaran committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    f41d3fa View commit details
    Browse the repository at this point in the history
  4. fix(traffic_light): stop if the traffic light signal timed out (autow…

    …arefoundation#5819)
    
    * fix(traffic_light): stop if the traffic light signal timed out
    
    Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
    
    * fix(traffic_light): fix README format
    
    Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
    
    ---------
    
    Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
    rej55 committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    5d6cfef View commit details
    Browse the repository at this point in the history
  5. feat(multi_object_tracker): add debugger output processing_time/cycli…

    …c_time/elapsed_time, tentative objects (autowarefoundation#5762)
    
    * enable debugger in tracker
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * fix uninitialized class variable
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * feat: separate debugger class for simplification
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    ---------
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    YoshiRi committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    e58eac5 View commit details
    Browse the repository at this point in the history
  6. refactor(surround_obstacle_checker): boost::optional to std:optional (a…

    …utowarefoundation#5830)
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    zulfaqar-azmi-t4 committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    4f7e895 View commit details
    Browse the repository at this point in the history
  7. docs(intersection): add image (autowarefoundation#5833)

    doc(intersection): add image
    
    Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
    soblin committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    5af6f44 View commit details
    Browse the repository at this point in the history
  8. fix(avoidance): reset output path when the module transits success st…

    …atus (autowarefoundation#5682)
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    91290a3 View commit details
    Browse the repository at this point in the history
  9. refactor(motion_utils): apply clang-tidy result (autowarefoundation#5829

    )
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    zulfaqar-azmi-t4 committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    14e84ee View commit details
    Browse the repository at this point in the history
  10. fix(avoidance): fix missing parent ids (autowarefoundation#5838)

    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    8cd0628 View commit details
    Browse the repository at this point in the history
  11. feat(radar_threshold_filter): add unit test (autowarefoundation#5817)

    * update cmakelists
    
    Signed-off-by: N-Eiki <naganagaeichan@gmail.com>
    
    * add z filter param
    
    Signed-off-by: N-Eiki <naganagaeichan@gmail.com>
    
    * isWithin func private -> public
    
    Signed-off-by: N-Eiki <naganagaeichan@gmail.com>
    
    * add test code
    
    Signed-off-by: N-Eiki <naganagaeichan@gmail.com>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: N-Eiki <naganagaeichan@gmail.com>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Satoshi Tanaka <16330533+scepter914@users.noreply.github.com>
    3 people committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    84b658b View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. fix(goal_planner): fix checkOriginalGoalIsInShoulder (autowarefoundat…

    …ion#5836)
    
    Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
    kosuke55 committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    012fb51 View commit details
    Browse the repository at this point in the history
  2. refactor(occlusion_spot): boost::optional to std::optional (autowaref…

    …oundation#5832)
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    zulfaqar-azmi-t4 committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    4a0c837 View commit details
    Browse the repository at this point in the history
  3. fix(planning): fix typo (autowarefoundation#5841)

    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    6533c72 View commit details
    Browse the repository at this point in the history
  4. fix(landmark_manager): changed to a shared library (autowarefoundatio…

    …n#5848)
    
    Changed landmark_manager to a shared library
    
    Signed-off-by: Shintaro SAKODA <shintaro.sakoda@tier4.jp>
    SakodaShintaro committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    2da91e9 View commit details
    Browse the repository at this point in the history
  5. refactor(localization_launch, ground_segmentation_launch): rename lid…

    …ar topic (autowarefoundation#5781)
    
    rename lidar topic
    
    Signed-off-by: yamato-ando <Yamato ANDO>
    Co-authored-by: yamato-ando <Yamato ANDO>
    YamatoAndo committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    3e62ad4 View commit details
    Browse the repository at this point in the history
  6. feat(multi_object_tracker): enable to output perception topic delay w…

    …ithin diagnostics (autowarefoundation#5840)
    
    * enable debugger in tracker
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * fix uninitialized class variable
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * feat: separate debugger class for simplification
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * enable check topic delay by diagnostics
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * fix: update diagnostics periods and threshold
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    ---------
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    YoshiRi committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    6d62096 View commit details
    Browse the repository at this point in the history
  7. feat(system_error_monitor): aggregate control validator diagnostics (a…

    …utowarefoundation#5843)
    
    Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
    kosuke55 committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    68b4132 View commit details
    Browse the repository at this point in the history
  8. feat(rtc_interface): add publisher to publish auto mode status (autow…

    …arefoundation#5845)
    
    add publisher to publish auto mode status
    
    Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
    kyoichi-sugahara committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    341d35e View commit details
    Browse the repository at this point in the history
  9. build(detection_by_tracker): move utils.hpp file to the detection_by_…

    …tracker folder and namespace to avoid conflicts (autowarefoundation#5837)
    
    * build(detection_by_tracker): move utils.hpp file to the detection_by_tracker folder and namespace to avoid conflicts
    
    Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    esteve and pre-commit-ci[bot] committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    dd3050a View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. refactor(blind_spot_module): boost::optional to std::optional (autowa…

    …refoundation#5831)
    
    refactor(blind_spot_module: boost::optional to std::optional
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    zulfaqar-azmi-t4 committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    c3dcd81 View commit details
    Browse the repository at this point in the history
  2. feat(tracking_object_merger): check motion direction and yaw directio…

    …n to prevent unintended direction update (autowarefoundation#5853)
    
    * fix: add function to check object direction before merging object states
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    * refactor: add warning in update whole tracked object
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    
    ---------
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    YoshiRi committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    705a70d View commit details
    Browse the repository at this point in the history
  3. fix(behavior, launch): fix launch error (autowarefoundation#5847)

    * fix(launch): set null to avoid launch error
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(behavior): check null
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * chore(behavior): add comment
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(launch): set  at the end of list
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(launch): fill empty string at the end of module list
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    ---------
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    a25114a View commit details
    Browse the repository at this point in the history
  4. refactor(avoidance): use drivable bound to calculate road shoulder di…

    …stance (autowarefoundation#5799)
    
    * refactor(utils): use drivable bound to calculate road shoulder distance
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(AbLC): set drivable bound
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * feat(avoidance): output road shoulder distance marker
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    ---------
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    b4ba3e1 View commit details
    Browse the repository at this point in the history
  5. fix(multi_object_tracker): fix typo in node yaml parameter (autowaref…

    …oundation#5856)
    
    fix: fix typo in node yaml parameter
    
    Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
    YoshiRi committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    1de8fc5 View commit details
    Browse the repository at this point in the history
  6. feat: add Planning Msg Adapter (autowarefoundation#5814)

    * fix:planning_adapter
    
    Signed-off-by: jack.song <jack.song@autocore.ai>
    
    * fix:planning_adapter
    
    Signed-off-by: jack.song <jack.song@autocore.ai>
    
    * fix:planning_adapter
    
    Signed-off-by: jack.song <jack.song@autocore.ai>
    
    * fix:planning_adapter
    
    Signed-off-by: jack.song <jack.song@autocore.ai>
    
    * fix:add planning adapter
    
    Signed-off-by: jack.song <jack.song@autocore.ai>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: jack.song <jack.song@autocore.ai>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
    3 people committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    5723f72 View commit details
    Browse the repository at this point in the history
  7. chore: add glog_component for pointcloud_container (autowarefoundatio…

    …n#5716)
    
    Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
    badai-nguyen committed Dec 13, 2023
    Configuration menu
    Copy the full SHA
    7477e9a View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. refactor(ar_tag_based_localizer): refactor pub/sub and so on (autowar…

    …efoundation#5854)
    
    * Fixed ar_tag_based_localizer pub/sub
    
    Signed-off-by: Shintaro SAKODA <shintaro.sakoda@tier4.jp>
    
    * Remove dependency on image_transport
    
    Signed-off-by: Shintaro SAKODA <shintaro.sakoda@tier4.jp>
    
    ---------
    
    Signed-off-by: Shintaro SAKODA <shintaro.sakoda@tier4.jp>
    SakodaShintaro committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    dff91ba View commit details
    Browse the repository at this point in the history
  2. feat(shape_estimation): add bicycle shape corrector (autowarefoundati…

    …on#5860)
    
    * feat(shape_estimation): add bicycle shape corrector
    
    Signed-off-by: Kaan Çolak <kaancolak95@gmail.com>
    
    * style(pre-commit): autofix
    
    * feat(shape_estimation): add bicycle shape corrector
    
    Signed-off-by: Kaan Çolak <kaancolak95@gmail.com>
    
    ---------
    
    Signed-off-by: Kaan Çolak <kaancolak95@gmail.com>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    kaancolak and pre-commit-ci[bot] committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    3d40702 View commit details
    Browse the repository at this point in the history
  3. feat(simple_planning_simulator): add mesurent_steer_bias (autowarefou…

    …ndation#5868)
    
    * feat(simple_planning_simulator): add mesurent_steer_bias
    
    Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    kosuke55 and pre-commit-ci[bot] committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    d4d632a View commit details
    Browse the repository at this point in the history
  4. feat(diagnostic_graph_aggregator): rename system_diagnostic_graph pac…

    …kage (autowarefoundation#5827)
    
    Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
    isamu-takagi committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    4fc8a4e View commit details
    Browse the repository at this point in the history
  5. refactor(lane_change): separate lane change and external request (aut…

    …owarefoundation#5850)
    
    * refactor(lane_change): separate lane change and external request
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * refactored external request lane change
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * separate on external request
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * style(pre-commit): autofix
    
    * delete external request
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix interface
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix external lane change couldn't be initialize
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix documents
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix link in README
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix based on comments
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * add ament auto package
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * Update planning/behavior_path_lane_change_module/test/test_behavior_path_planner_node_interface.cpp
    
    Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
    
    * Update planning/behavior_path_external_request_lane_change_module/test/test_behavior_path_planner_node_interface.cpp
    
    Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
    
    * fix test
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix AbLC test
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    ---------
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
    3 people committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    1b6cc51 View commit details
    Browse the repository at this point in the history
  6. feat(diagnostic_graph_aggregator): change default publish rate (autow…

    …arefoundation#5872)
    
    Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
    isamu-takagi committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    2252226 View commit details
    Browse the repository at this point in the history
  7. build(detected_object_validation): move header files to a separate di…

    …rectory to avoid conflicts (autowarefoundation#5851)
    
    * build(detected_object_validation): move header files to a separate directory to avoid conflicts
    
    Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    esteve and pre-commit-ci[bot] committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    4cd4688 View commit details
    Browse the repository at this point in the history
  8. fix(traffic_light_visualization): move header directory to match pack…

    …age name (autowarefoundation#5864)
    
    * fix(traffic_light_visualization): move header directory to match package name
    
    Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
    
    * style(pre-commit): autofix
    
    * fix: fix include
    
    Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
    
    ---------
    
    Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    esteve and pre-commit-ci[bot] committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    0ae2685 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. refactor(compare_map_segmentation): rework parameters (autowarefounda…

    …tion#5005)
    
    * refactor the configuration files of the node compare_map_segmentation according to the new ROS node config guideline.
    
    Signed-off-by: yuntianyi-chen <yuntianyichen@outlook.com>
    
    * style(pre-commit): autofix
    
    * Add three parameters
    
    Signed-off-by: yuntianyi-chen <yuntianyichen@outlook.com>
    
    * style(pre-commit): autofix
    
    * Update perception/compare_map_segmentation/config/distance_based_compare_map_filter.param.yaml
    
    Co-authored-by: badai nguyen  <94814556+badai-nguyen@users.noreply.github.com>
    
    * Update perception/compare_map_segmentation/config/voxel_based_approximate_compare_map_filter.param.yaml
    
    Co-authored-by: badai nguyen  <94814556+badai-nguyen@users.noreply.github.com>
    
    * Update perception/compare_map_segmentation/config/voxel_based_compare_map_filter.param.yaml
    
    Co-authored-by: badai nguyen  <94814556+badai-nguyen@users.noreply.github.com>
    
    * Update perception/compare_map_segmentation/config/voxel_distance_based_compare_map_filter.param.yaml
    
    Co-authored-by: badai nguyen  <94814556+badai-nguyen@users.noreply.github.com>
    
    * Update perception/compare_map_segmentation/schema/voxel_based_approximate_compare_map_filter.schema.json
    
    Co-authored-by: badai nguyen  <94814556+badai-nguyen@users.noreply.github.com>
    
    ---------
    
    Signed-off-by: yuntianyi-chen <yuntianyichen@outlook.com>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: badai nguyen <94814556+badai-nguyen@users.noreply.github.com>
    3 people committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    34241d6 View commit details
    Browse the repository at this point in the history
  2. feat(behavior_velocity_planner_common): add objects_of_interest_marke…

    …r_intereface to behavior_velocity_planner (autowarefoundation#5875)
    
    * feat(behavior_velocity_planner_common): add objects_of_interest_marker_intereface to behavior_velocity_planner
    
    Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
    
    * fix(behavior_velocity_planner_common): add functions to publish objects of interest marker
    
    Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
    
    * feat(no_stopping_area): insert object data
    
    Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
    
    * refactor(behavior_velocity_planner_common): rename function
    
    Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
    
    ---------
    
    Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
    rej55 committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    1f82854 View commit details
    Browse the repository at this point in the history
  3. refactor(behavior_path_planner): move utils function to `behavior_pat…

    …h_planner_common` package (autowarefoundation#5877)
    
    * refactor(bpp): remove unused header file
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * refactor(bpp, bpp-common): move occ grid based collision detector
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    ---------
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    57278db View commit details
    Browse the repository at this point in the history
  4. chore: sync files (autowarefoundation#5600)

    Signed-off-by: GitHub <noreply@github.com>
    Co-authored-by: github-actions <github-actions@github.com>
    awf-autoware-bot[bot] and github-actions committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    f2cc50c View commit details
    Browse the repository at this point in the history
  5. feat(crosswalk): ignore predicted path going across the crosswalk (au…

    …towarefoundation#5849)
    
    Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
    soblin committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    7ce87a4 View commit details
    Browse the repository at this point in the history
  6. refactor(image_projection_based_fusion): add JSON Schema and remove d…

    …efault value spefications (autowarefoundation#4902)
    
    * refactor: add JSON Schema and remove default values in `declare_parameter()`
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * refactor: update configuration file
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * refactor: add configuration file and update launcher to load this
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * refactor: update funsion node configuration
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * docs: update the document for roi cluster fusion
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * docs: update documents
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * refactor: move `debug_mode` into `roi_sync.param.yaml`
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * refactor: rework parameters for `roi_pointcloud_fusion`
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * chore: update maintainers
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * refactor: remove debug_mode
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * refactor: rename parameter to avoid failure of spell-check
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    * fix: fix typo and parameters for initialization
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    
    ---------
    
    Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
    ktro2828 committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    cc0b108 View commit details
    Browse the repository at this point in the history
  7. fix(avoidance): fix unexpected sudden deceleration for avoidance mane…

    …uver (autowarefoundation#5805)
    
    fix(avoidance): fix sudden deceleration
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    88dae03 View commit details
    Browse the repository at this point in the history
  8. fix(goal_planner): set rederence path for candidate path (autowarefou…

    …ndation#5886)
    
    Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
    kosuke55 committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    a661585 View commit details
    Browse the repository at this point in the history
  9. fix(avoidance): check far objects during shifting (autowarefoundation…

    …#5857)
    
    * fix(avoidance): check far objects during shifting
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(avoidance): update impl
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    ---------
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    a5d5479 View commit details
    Browse the repository at this point in the history
  10. perf(run_out): improve calculation cost of smoothPath (autowarefounda…

    …tion#5885)
    
    * perf(run_out): improve calculation cost of smoothPath
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    
    * re-index enum elements
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    
    ---------
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    ad9778e View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2023

  1. feat(planning_debug_utils): add update_logger_level.sh (autowarefound…

    …ation#5888)
    
    * feat(planning_debug_utils): update_logger_level.sh
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    
    * add error handling
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    
    * update README
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    
    ---------
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 16, 2023
    Configuration menu
    Copy the full SHA
    90d5b94 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2023

  1. fix(static_drivable_area_expansion): fix bug in expansion logic for h…

    …atched road marking (autowarefoundation#5842)
    
    fix(utils): fix drivable area expansion logic for zebra zone
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 17, 2023
    Configuration menu
    Copy the full SHA
    2175b57 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. chore(motion_velocity_smoother): remove unnecessary info of non auton…

    …omous control (autowarefoundation#5891)
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    0b58725 View commit details
    Browse the repository at this point in the history
  2. refactor(behavior_path_planner): remove use_experimental_lane_change_…

    …function (autowarefoundation#5889)
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    68e7434 View commit details
    Browse the repository at this point in the history
  3. perf(planning_debug_tools): improve calculation time of perception_re…

    …producer (autowarefoundation#5894)
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    d06e42f View commit details
    Browse the repository at this point in the history
  4. fix(avoidance): unintentional path cut (autowarefoundation#5887)

    * fix(avoidance): unintentional path cut
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(bpp): nouse pointer
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(bpp_common): nouse pointer
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(bpp_side_shift): nouse pointer
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(bpp_avoidance): nouse pointer
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(bpp_lane_change): nouse pointer
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(bpp_goal_planner): nouse pointer
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    * fix(bpp_start_planner): nouse pointer
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    
    ---------
    
    Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
    satoshi-ota committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    37573e5 View commit details
    Browse the repository at this point in the history
  5. chore: add maintainer in map packages (autowarefoundation#5865)

    * add maintainer
    
    Signed-off-by: Kento Yabuuchi <kento.yabuuchi.2@tier4.jp>
    
    * modify map_tf_generator's maintainer
    
    Signed-off-by: Kento Yabuuchi <kento.yabuuchi.2@tier4.jp>
    
    ---------
    
    Signed-off-by: Kento Yabuuchi <kento.yabuuchi.2@tier4.jp>
    KYabuuchi committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    5a2da99 View commit details
    Browse the repository at this point in the history
  6. chore(crosswalk): remove debug print (autowarefoundation#5896)

    Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
    soblin committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    a38d1db View commit details
    Browse the repository at this point in the history
  7. feat(pid_longitudinal_controller): change the condition from emergenc…

    …y to stopped (autowarefoundation#5892)
    
    chore(pid_longitudinal_controller): change the condition from emergency to stopped
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    81f5c4b View commit details
    Browse the repository at this point in the history
  8. chore(behavior_velocity_planner): use DEBUG for launching modules (au…

    …towarefoundation#5897)
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    e6b41a8 View commit details
    Browse the repository at this point in the history
  9. fix(intersection): generate yield stuck detect area from multiple lan…

    …es (autowarefoundation#5883)
    
    Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
    soblin committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    b9fa290 View commit details
    Browse the repository at this point in the history
  10. refactor(lane_change): standardizing lane change logger name (autowar…

    …efoundation#5899)
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    zulfaqar-azmi-t4 committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    f40425b View commit details
    Browse the repository at this point in the history
  11. chore(map_loader): visualize crosswalk id (autowarefoundation#5880)

    Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
    TakaHoribe committed Dec 18, 2023
    Configuration menu
    Copy the full SHA
    320bc2f View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. feat(dynamic_avoidance): always launch the module when requested (aut…

    …owarefoundation#5900)
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    1837f6b View commit details
    Browse the repository at this point in the history
  2. docs(raw_vehicle_cmd_converter): update readme (autowarefoundation#5822)

    Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
    TakaHoribe committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    7faeb91 View commit details
    Browse the repository at this point in the history
  3. feat(run_out)!: ignore the collision points on crosswalk (autowarefou…

    …ndation#5862)
    
    * suppress on crosswalk
    
    Signed-off-by: Yuki Takagi <yuki.takagi@tier4.jp>
    yuki-takagi-66 committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    e935b3e View commit details
    Browse the repository at this point in the history
  4. fix(dynamic_avoidance): fix drivable area generation during LC (autow…

    …arefoundation#5902)
    
    * fix(dynamic_avoidance): fix drivable area generation during LC
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    
    * fix
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    
    ---------
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    1b17959 View commit details
    Browse the repository at this point in the history
  5. feat(dynamic_avoidance): deal with forked path of the same directiona…

    …l vehicles (autowarefoundation#5901)
    
    Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
    takayuki5168 committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    a427d29 View commit details
    Browse the repository at this point in the history
  6. chore(crosswalk, obstacle_cruise): add maintainer (autowarefoundation…

    …#5898)
    
    * add maintainer
    
    Signed-off-by: Yuki Takagi <yuki.takagi@tier4.jp>
    yuki-takagi-66 committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    a4ef3a0 View commit details
    Browse the repository at this point in the history
  7. refactor(avoidance_by_lane_change): update execution condition (autow…

    …arefoundation#5869)
    
    * refactor(avoidance_by_lane_change): update execution condition
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix lc parameter
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix both lane change and avoidance by lane change both are running
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * trying to set maximum_avoid_distance
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix avoidance param not properly assigned
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fixed avoidance not running
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix root lanelet
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * removed gdb
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * add debug
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * fix unnecessary changes
    
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    
    * Update planning/behavior_path_avoidance_module/include/behavior_path_avoidance_module/parameter_helper.hpp
    
    Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
    
    ---------
    
    Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
    Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
    zulfaqar-azmi-t4 and satoshi-ota committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    c9b9fca View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. Configuration menu
    Copy the full SHA
    4b3da5d View commit details
    Browse the repository at this point in the history