-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added support for x-y coordinate waypoints * lowered camera angle to avoid detecting ground as obstacle * added global carrot planner * navigation to first waypoint * michael tests * adjust pilones and local costmap issue due to lidar min/max obs height * tuning planner vels and inflation radius * basic functionality present. Path planning sucks tho * need to tune planner * cleaning for PR * more cleanup * create 2 files for waypoints * newline * revert camera tilt back to 15 Co-authored-by: Anthony Lem <[email protected]>
- Loading branch information
1 parent
d5f92ce
commit 8af8600
Showing
15 changed files
with
277 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"waypoints" : [ | ||
{ | ||
"id" : 0, | ||
"longitude" : -79.3905355, | ||
"latitude" : 43.6571768, | ||
"description" : "Entrance of No-Man's Land Part 1", | ||
"test_loc_description": "start no-mans land", | ||
"frame_id" : "odom", | ||
"pose_test" : [11.2,0,0,0,0,0], | ||
"pose_test_norm" : [10,0,0,0,0,0] | ||
}, | ||
{ | ||
"id" : 1, | ||
"longitude" : -79.3903788, | ||
"latitude" : 43.6571667, | ||
"description" : "End of No-Man's Land Part 1", | ||
"test_loc_description": "Ramp Start", | ||
"frame_id" : "odom", | ||
"pose_test" : [11.2,0,0,0,0,0], | ||
"pose_test_norm" : [10,0,0,0,0,0] | ||
}, | ||
{ | ||
"id" : 2, | ||
"longitude" : -79.3902588, | ||
"latitude" : 43.6571678, | ||
"description" : "Start of No-Man's Land Part 2", | ||
"test_loc_description": "Ramp End", | ||
"frame_id" : "odom", | ||
"pose_test" : [11.2,0,0,0,0,0], | ||
"pose_test_norm" : [10,0,0,0,0,0] | ||
}, | ||
{ | ||
"id" : 3, | ||
"longitude" : -79.3901090, | ||
"latitude" : 43.6571607, | ||
"description" : "Start of No-Man's Land Part 2", | ||
"test_loc_description": "Ramp End", | ||
"frame_id" : "odom", | ||
"pose_test" : [11.2,0,0,0,0,0], | ||
"pose_test_norm" : [10,0,0,0,0,0] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.