Go2Py/deploy/ros2_nodes/go2py_common/msg/HeightMap.msg

15 lines
654 B
Plaintext
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Header
float64 stamp # timestamp
string frame_id # world frame id
# Map info
float32 resolution # The map resolution [m/cell]
uint32 width # Map width along x-axis [cells]
uint32 height # Map height alonge y-axis [cells]
float32[2] origin # Map frame origin xy-position [m], the xyz-axis direction of map frame is aligned with the world frame
# Map data, in x-major order, starting with [0,0], ending with [width, height]
# For a cell whose 2d-array-index is [ix, iy]
# its position in world frame is: [ix * resolution + origin[0], iy * resolution + origin[1]]
# its cell value is: data[width * iy + ix]
float32[] data