# boustrophedon_planner **Repository Path**: yongwangzhiqiankai/boustrophedon_planner ## Basic Information - **Project Name**: boustrophedon_planner - **Description**: boustrophedon_planner for robot coverage plan. - **Primary Language**: Unknown - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2022-06-07 - **Last Updated**: 2024-04-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Boustrophedon Planner Boustrophedon Planner is a coverage path planner that implements a modified cellular decomposition algorithm. The original can be found [here](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6806237/). ## Overview The path planner is an actionlib server that takes in a `geometry_msgs/PolygonStamped` and a `geometry_msgs/PoseStamped`, and returns a `StripingPlan` message which contains a list of waypoints to stripe the passed in polygon. ![Sample Boustrophedon Plan](half-y-turn-concave.png) ## Changelog - January 23, 2020: - The boustrophedon planner can now handle all types of simple polygons that it is given, both convex and concave. - Inner boundaries are supported, allowing the planner to create paths at a certain offset from the initial given boundary. - "Half - Y" turns are supported, allowing for some curvature at the start / end of paths to assist robots that are not completely holonomic. - Many new launch file parameters allow the user to specify more precisely the behavior that they want the plan to have ## License This repository is subject to GNU General Public License version 3 or later due to its dependencies. The geometric operations rely on CGAL which is restricted by GNU General Public License version 3 or later.