This file contains hidden or 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
################################################################################ | |
# | |
# OccupancyGrid2d class listens for LaserScans and builds an occupancy grid. | |
# | |
################################################################################ | |
import rospy | |
import tf2_ros | |
import tf |
This file contains hidden or 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
#include <iostream> | |
#include <string> | |
#include <sstream> | |
#include <stdlib.h> | |
#include <unistd.h> | |
int main() | |
{ | |
std::string s = "Acceleration X Acceleration Y Acceleration Z"; | |
std::cout << s << std::endl; |