Lane.msg 1014 B

1234567891011121314151617181920212223242526272829303132333435
  1. # This represents a lane in a map.
  2. # Id of this Lane object. Must be unique among all lane objects.
  3. int32 lane_id
  4. # Id of the first waypoint that belongs to this lane
  5. int32 start_waypoint_id
  6. # Id of the last waypoint that belongs to this lane
  7. int32 end_waypoint_id
  8. # This describes how many lanes there are in left side of this lane.
  9. # E.g. If there are 2 lanes on the left side, then lane_number will be 2.
  10. # If the road is single lane, then this will be 0.
  11. # This will be always 0 in intersection.
  12. int32 lane_number
  13. # Total number of lanes present in road.
  14. int32 num_of_lanes
  15. # Speed limit of this lane in [km/h]
  16. float64 speed_limit
  17. # Length of this lane in [m]
  18. # i.e. accumulated length from start_waypoint to end_waypoint of this lane
  19. float64 length
  20. # Maximum width of vehicle that can drive this lane in [m]
  21. float64 width_limit
  22. # Maximum height of vehicle that can drive this lane in [m].
  23. float64 height_limit
  24. # Maximum weight of vehicle that can drive this lane in [kg].
  25. float64 weight_limit