We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b138fbc commit eae292dCopy full SHA for eae292d
polygon_coverage_ros/include/polygon_coverage_ros/coverage_planner.h
@@ -218,8 +218,10 @@ class CoveragePlanner : public PolygonPlannerBase {
218
ROS_WARN("No altitude specified. Creating default altitude of 1m.");
219
altitude_ = std::make_optional(1.0);
220
} else if (altitude_.value() < std::numeric_limits<double>::epsilon()) {
221
- ROS_WARN("Altitude to small %.3fm. Setting default altitude of 1m.",
222
- altitude_.value());
+ ROS_WARN(
+ "Altitude to small %.3fm. Please set altitude through first "
223
+ "z-value of polygon. Setting default altitude of 1m.",
224
+ altitude_.value());
225
226
}
227
sensor_model_ = std::make_shared<Frustum>(
0 commit comments