-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* isaac 15 in usl + fixes to command_astrobee + allowing for exposure and map changes * update submodule * fixing static poses + optimizing change exposure and map changes * updates for isaac15 + granite lab testing with exposure and map change * switch berths on problem generator * fix gp install
- Loading branch information
1 parent
a206082
commit 7ac6845
Showing
13 changed files
with
991 additions
and
120 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
Submodule ros2_planning_system
updated
1 files
+22 −15 | plansys2_terminal/src/plansys2_terminal/Terminal.cpp |
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
53 changes: 53 additions & 0 deletions
53
astrobee/survey/survey_manager/data/usl_survey_dynamic.yaml
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,53 @@ | ||
# Copyright (c) 2023, United States Government, as represented by the | ||
# Administrator of the National Aeronautics and Space Administration. | ||
# | ||
# All rights reserved. | ||
# | ||
# The "ISAAC - Integrated System for Autonomous and Adaptive Caretaking | ||
# platform" software is licensed under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with the | ||
# License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
|
||
# Example dynamic configuration info used when generating a PDDL problem. For now, this is goal | ||
# conditions and initial state. A likely conops is that the initial version of this file for a | ||
# specific activity would be hand-generated, but it might later be automatically regenerated by the | ||
# survey manager when a replan is needed (remove completed/failed goals, add retry goals, update | ||
# initial state to match actual current state, etc.) See also jem_survey_static.yaml. | ||
|
||
goals: | ||
|
||
- {type: panorama, robot: bumble, order: 1, location: usl_bay3} | ||
- {type: panorama, robot: bumble, order: 2, location: usl_bay2} | ||
- {type: panorama, robot: bumble, order: 3, location: usl_bay1} | ||
# - {type: stereo, robot: bumble, order: 4, trajectory: usl_bay1_to_bay3} | ||
# This is one of the goals we previously had to comment out for POPF to return a halfway decent | ||
# plan. Adding a let_other_robot_reach goal mostly fixed the problem. | ||
- {type: robot_at, robot: bumble, location: berth1} | ||
|
||
# This let_other_robot_reach goal is effectively a very specific kind of between-robot ordering | ||
# constraint. It tells honey to let bumble get to bay 5 before taking its first panorama. Without | ||
# this constraint, POPF produces a very inefficient plan where bumble never leaves the dock until | ||
# after honey finishes all its tasks and returns to dock. (It's safe to comment this out if the | ||
# planner doesn't need the hint.) | ||
# - {type: let_other_robot_reach, robot: honey, order: 0, location: jem_bay5} | ||
|
||
- {type: panorama, robot: honey, order: 1, location: usl_bay6} | ||
- {type: panorama, robot: honey, order: 2, location: usl_bay5} | ||
- {type: panorama, robot: honey, order: 3, location: usl_bay4} | ||
# This is the other objective we previously had to comment out for POPF to return a decent plan. | ||
- {type: stereo, robot: honey, order: 4, trajectory: usl_bay1_to_bay6} | ||
- {type: robot_at, robot: honey, location: berth2} | ||
|
||
init: | ||
bumble: | ||
location: usl_bay1 | ||
honey: | ||
location: usl_bay6 |
Oops, something went wrong.