-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove tf subscription #4
Conversation
e4bff87
to
6209309
Compare
Publish gridmap info using grid_map_geo_msgs Set map origin info from subscribed map
80e1f38
to
43529eb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comment, some declaration and import seems to be wrong, and it doesnt build
@@ -73,6 +73,7 @@ class PlanningPanel : public rviz::Panel { | |||
void targetAngleCallback(const std_msgs::Float64& msg); | |||
void snowDepthCallback(const std_msgs::Float64& msg); | |||
void sspStateCallback(const std_msgs::Int8& msg); | |||
void mapInfoCallback(const std_msgs::Float64& msg); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldnt this be
void mapInfoCallback(const grid_map_geo_msgs::GeographicMapInfo& msg)
i get the build error that no declaration found in line 316 at plannting_panel.cpp
and then i also had to add the import
#include "grid_map_geo_msgs/GeographicMapInfo.h"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a commit, which resolves the issue. Now it is ready to merge.
Tried and tested
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah wait, strange I thought I did that but thanks for the fix!
Problem Description
This PR subscribes to gridmap information being published with
grid_map_geo_msgs
.This PR requries ethz-asl/grid_map_geo#62