Skip to content

Commit 9499cc3

Browse files
committed
Remove mav_planning_msgs as a dependency.
1 parent a13385d commit 9499cc3

File tree

14 files changed

+24
-15
lines changed

14 files changed

+24
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The polygon can be set via
6868
- RVIZ Polygon Tool as in the video above.
6969

7070
The plan is generated via
71-
- ROS [service](https://github.com/ethz-asl/mav_comm/blob/master/mav_planning_msgs/srv/PlannerService.srv) call 'rosservice call /coverage_planner/plan_path' or
71+
- ROS [service](polygon_coverage_msgs/srv/PlannerService.srv) call 'rosservice call /coverage_planner/plan_path' or
7272
- clicking start and goal points using the RVIZ clicked_point tool as in the video above.
7373

7474
### Euclidean Shortest Path Planning

install/prepare-jenkins-slave.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sudo apt-get install -y python-wstool python-catkin-tools
88

99
# Package dependencies.
1010
echo "Installing MAV_COMM dependencies."
11-
sudo apt-get install -y ros-${ROS_VERSION}-mav-msgs ros-${ROS_VERSION}-mav-planning-msgs
11+
sudo apt-get install -y ros-${ROS_VERSION}-mav-msgs
1212
echo "Installing CGAL dependencies."
1313
sudo apt-get install -y libgmp-dev libmpfr-dev
1414
echo "Installing MONO dependencies."

polygon_coverage_benchmark/test/benchmark-test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <ros/ros.h>
2828
#include <yaml-cpp/yaml.h>
2929

30-
#include <mav_planning_msgs/PolygonWithHoles.h>
30+
#include <polygon_coverage_msgs/PolygonWithHoles.h>
3131

3232
#include <polygon_coverage_geometry/cgal_definitions.h>
3333
#include <polygon_coverage_planners/cost_functions/path_cost_functions.h>

polygon_coverage_msgs/package.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<depend>message_runtime</depend>
2222
<depend>geometry_msgs</depend>
2323
<depend>std_msgs</depend>
24+
<depend>trajectory_msgs</depend>
2425
<depend>xmlrpcpp</depend>
2526
<depend>polygon_coverage_geometry</depend>
2627
</package>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#request fields
2+
geometry_msgs/PoseStamped start_pose #start pose for the planner
3+
geometry_msgs/PoseStamped goal_pose #start pose for the planner
4+
---
5+
# True on success, false on planning failure
6+
bool success
7+
# Either contains a polynomial trajectory:
8+
trajectory_msgs/MultiDOFJointTrajectory sampled_plan

polygon_coverage_ros/cfg/polygons/example_l.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# A mav_planning_msgs/PolygonWithHoles.msg to describe a rectangle.
1+
# A polygon_coverage_msgs/PolygonWithHoles.msg to describe a rectangle.
22
polygon:
33
header:
44
seq: 0

polygon_coverage_ros/cfg/polygons/example_polygon_bcd_cell.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# A mav_planning_msgs/PolygonWithHoles.msg to describe a typical BCD cell.
1+
# A polygon_coverage_msgs/PolygonWithHoles.msg to describe a typical BCD cell.
22
polygon:
33
header:
44
seq: 0

polygon_coverage_ros/cfg/polygons/example_polygon_epfl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# A mav_planning_msgs/PolygonWithHoles.msg to describe a forest.
1+
# A polygon_coverage_msgs/PolygonWithHoles.msg to describe a forest.
22
# The planner always picks the largest z as the fixed altitude it plans in.
33
polygon:
44
header:

polygon_coverage_ros/cfg/polygons/example_polygon_epfl_simple.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# A mav_planning_msgs/PolygonWithHoles.msg to describe a forest.
1+
# A polygon_coverage_msgs/PolygonWithHoles.msg to describe a forest.
22
# The planner always picks the largest z as the fixed altitude it plans in.
33
polygon:
44
header:

polygon_coverage_ros/cfg/polygons/example_polygon_epfl_trivial.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# A mav_planning_msgs/PolygonWithHoles.msg to describe a forest.
1+
# A polygon_coverage_msgs/PolygonWithHoles.msg to describe a forest.
22
# The planner always picks the largest z as the fixed altitude it plans in.
33
polygon:
44
header:

0 commit comments

Comments
 (0)