What does nav_msgs/GridCells represent?
"an array of cells in a 2D grid" isn't a particularly clear description.
- What defines the spacing of the grid?
- Is the array one or two dimensional? So many ros types use a 1D array to represent a 2D grid, so the type alone is not sufficient documentation
- What does
cells[i]
represent? - Do all cells have to be XY-planar?
- Do all cells have to be planar at all?
- Do the cells even have to align to a grid?
- is
cell_width
measured from the center or the corner?
add a comment