Waypoint.msg 550 B

1234567891011121314151617181920212223
  1. # This represents a waypoint in a map.
  2. # Id of this Waypoint object
  3. int32 waypoint_id
  4. # Id of Point that represents the position of this waypoint
  5. int32 point_id
  6. # reference velocity of this waypoint. [km/h]
  7. float64 velocity
  8. # describes whether vehicle must stop at this waypoint
  9. # no_stop = 0, stop = 1
  10. int32 stop_line
  11. # distance to left border of the belonging lane in [m]
  12. float64 left_width
  13. # distance to right border of the belonging lane in [m]
  14. float64 right_width
  15. # height limit for the vehicle to drive this waypoint [m]
  16. float64 height