Skip to content

Humble: nav2_navfn_planner poses created had uninitialized header #5087

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

Merged
merged 15 commits into from
Apr 17, 2025
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
3dd2ec6
added disengage_threshold
sandeepdutta Sep 14, 2024
3118e91
added global costmap clearing once it reaches goal
sandeepdutta Sep 27, 2024
c22085e
merged with origin
sandeepdutta Oct 2, 2024
a31d445
Merge branch 'humble' of https://github.com/ros-navigation/navigation…
sandeepdutta Oct 9, 2024
f27417c
fixed merge error in rotaton_shim_controller
sandeepdutta Oct 9, 2024
442c4b5
Merge branch 'humble' of https://github.com/ros-navigation/navigation…
sandeepdutta Nov 11, 2024
5df71e9
Merge branch 'humble' of https://github.com/ros-navigation/navigation…
sandeepdutta Dec 6, 2024
62edb7b
Merge branch 'humble' of https://github.com/ros-navigation/navigation…
sandeepdutta Jan 25, 2025
9363558
Merge branch 'humble' of https://github.com/ros-navigation/navigation…
sandeepdutta Jan 30, 2025
702ea60
Merge branch 'humble' of https://github.com/ros-navigation/navigation…
sandeepdutta Mar 12, 2025
ebeb1ee
Merge branch 'humble' of https://github.com/ros-navigation/navigation…
sandeepdutta Mar 31, 2025
f70f61d
Merge branch 'humble' of https://github.com/ros-navigation/navigation…
sandeepdutta Apr 7, 2025
e7d1556
fixed pose header frame_id in nav2_navfn_planner
sandeepdutta Apr 14, 2025
0dda7d4
reverted change to nav2_bt_navigator/behavior_trees/navigate_to_pose_…
sandeepdutta Apr 16, 2025
ed1c560
one more spot for the header update
sandeepdutta Apr 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions nav2_navfn_planner/src/navfn_planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ NavfnPlanner::smoothApproachToGoal(
}
geometry_msgs::msg::PoseStamped goal_copy;
goal_copy.pose = goal;
goal_copy.header = plan.header;
plan.poses.push_back(goal_copy);
}

Expand Down Expand Up @@ -418,6 +419,7 @@ NavfnPlanner::getPlanFromPotential(
mapToWorld(x[i], y[i], world_x, world_y);

geometry_msgs::msg::PoseStamped pose;
pose.header = plan.header;
pose.pose.position.x = world_x;
pose.pose.position.y = world_y;
pose.pose.position.z = 0.0;
Expand Down