CreOS SDK
The CreOS SDK allows you to interact with Avular robots
 
Loading...
Searching...
No Matches
occupancy_grid.hpp
Go to the documentation of this file.
1
8namespace nav_msgs::msg {
16public:
17 // This represents a 2-D grid map
19
20 // MetaData for the map
22
23 // The map data, in row-major order, starting with (0,0).
24 // Cell (1, 0) will be listed second, representing the next cell in the x direction.
25 // Cell (0, 1) will be at the index equal to info.width, followed by (1, 1).
26 // The values inside are application dependent, but frequently,
27 // 0 represents unoccupied, 1 represents definitely occupied, and
28 // -1 represents unknown.
29 std::vector<int8_t> data;
30};
31} // namespace nav_msgs::msg
ROS message class definition for MapMetaData.
Definition map_meta_data.hpp:15
ROS message class definition for OccupancyGrid.
Definition occupancy_grid.hpp:15
ROS message class definition for Header.
Definition header.hpp:17
message definitions of the nav_msgs package
Definition grid_cells.hpp:8