-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use available clang-format version for Ubuntu 22 (#45)
* Clean up build/test workflow with ROS workspace * Use rosdep for all deps * Name things better * Stop hard-coding the ros distro Signed-off-by: Ryan Friedman <[email protected]> * Update style check to work on Ubuntu 22 * And add missing dependency on clang-format Signed-off-by: Ryan Friedman <[email protected]> * Run formatter * This commit should be hidden in git blame Signed-off-by: Ryan Friedman <[email protected]> --------- Signed-off-by: Ryan Friedman <[email protected]>
- Loading branch information
Showing
8 changed files
with
40 additions
and
42 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,22 +37,19 @@ | |
* @author Jaeyoung Lim <[email protected]> | ||
*/ | ||
|
||
#include "geometry_msgs/msg/transform_stamped.hpp" | ||
#include "grid_map_geo/grid_map_geo.hpp" | ||
|
||
#include "rclcpp/rclcpp.hpp" | ||
#include "std_msgs/msg/string.hpp" | ||
|
||
#include "grid_map_msgs/msg/grid_map.h" | ||
#include "grid_map_ros/GridMapRosConverter.hpp" | ||
#include "geometry_msgs/msg/transform_stamped.hpp" | ||
#include "rclcpp/rclcpp.hpp" | ||
#include "std_msgs/msg/string.hpp" | ||
#include "tf2_ros/static_transform_broadcaster.h" | ||
|
||
using namespace std::chrono_literals; | ||
|
||
class MapPublisher : public rclcpp::Node { | ||
public: | ||
MapPublisher() : Node("map_publisher") { | ||
|
||
std::string file_path = this->declare_parameter("tif_path", "."); | ||
std::string color_path = this->declare_parameter("tif_color_path", "."); | ||
std::string frame_id = this->declare_parameter("frame_id", "map"); | ||
|
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