You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!nh->get_parameter(_name + "." + "footprint_model.radius", radius))
824
824
{
825
-
RCLCPP_ERROR_STREAM(_logger, "Footprint model 'circular' cannot be loaded for trajectory optimization, since param '/footprint_model/radius' does not exist. Using point-model instead.");
825
+
RCLCPP_ERROR_STREAM(_logger, "Footprint model 'circular' cannot be loaded for trajectory optimization, since param '/footprint_model.radius' does not exist. Using point-model instead.");
RCLCPP_ERROR_STREAM(_logger, "Footprint model 'line' cannot be loaded for trajectory optimization, since param '/footprint_model/line_start' and/or '.../line_end' do not exist. Using point-model instead.");
838
+
RCLCPP_ERROR_STREAM(_logger, "Footprint model 'line' cannot be loaded for trajectory optimization, since param '/footprint_model.line_start' and/or '/footprint_model.line_end' do not exist. Using point-model instead.");
if (line_start.size() != 2 || line_end.size() != 2)
846
846
{
847
847
RCLCPP_ERROR_STREAM(_logger,
848
-
"Footprint model 'line' cannot be loaded for trajectory optimization, since param '/footprint_model/line_start' and/or '.../line_end' do not contain x and y coordinates (2D). Using point-model instead.");
848
+
"Footprint model 'line' cannot be loaded for trajectory optimization, since param '/footprint_model.line_start' and/or '/footprint_model.line_end' do not contain x and y coordinates (2D). Using point-model instead.");
RCLCPP_ERROR_STREAM(_logger,"Footprint model 'two_circles' cannot be loaded for trajectory optimization, since params '/footprint_model/front_offset', '.../front_radius', '.../rear_offset' and '.../rear_radius' do not exist. Using "
865
+
RCLCPP_ERROR_STREAM(_logger,"Footprint model 'two_circles' cannot be loaded for trajectory optimization, since params '/footprint_model.front_offset', '/footprint_model.front_radius', '.../rear_offset' and '.../rear_radius' do not exist. Using "
0 commit comments