-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add comments for nav_msgs defintions
Signed-off-by: David V. Lu <[email protected]>
- Loading branch information
Showing
3 changed files
with
9 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
# This represents a 2-D grid map, in which each cell represents the probability of occupancy. | ||
|
||
# This represents a 2-D grid map | ||
std_msgs/Header header | ||
|
||
# MetaData for the map | ||
MapMetaData info | ||
|
||
# The map data, in row-major order, starting with (0,0). Occupancy | ||
# probabilities are in the range [0,100]. Unknown is -1. | ||
# The map data, in row-major order, starting with (0,0). | ||
# Cell (1, 0) will be listed second, representing the next cell in the x direction. | ||
# Cell (0, 1) will be at the index equal to info.width, followed by (1, 1). | ||
# The values inside are application dependent, but frequently, | ||
# 0 represents unoccupied, 1 represents definitely occupied, and | ||
# -1 represents unknown. | ||
int8[] data |