You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've searched other issues and no duplicate issues were found.
I've agreed with the maintainers that I can plan this task.
Description
Autoware has only 1 sample vehicle and sensor kit, so why not make them defaults vehicle and sensor models in the launch file?
<argname="vehicle_model"default="sample_vehicle"description="vehicle model name"/>
<argname="sensor_model"default="sample_sensor_kit"description="sensor model name"/>
Alternatively, these variables could be set using environment variables:
<argname="vehicle_model"default="$(env VEHICLE_MODEL)"description="vehicle model name"/>
<argname="sensor_model"default="$(env SENSOR_MODEL)"description="sensor model name"/>
Where the environment would be set with a script like this:
Actually the latter solution is something we have been using internally for a while. But even without overengineering things to much, I think there is no drawback with the first proposal (hardcoded default vehicle/sensor)
Purpose
win 5 seconds whenever I launch autoware from command line.
Possible approaches
set default vehicle/sensor to sample ones
or set default to environment variables, and provide script to source instead of install/setup.bash
Definition of done
don't have to type vehicle_model:=xxx anymore
The text was updated successfully, but these errors were encountered:
Checklist
Description
Autoware has only 1 sample vehicle and sensor kit, so why not make them defaults vehicle and sensor models in the launch file?
Alternatively, these variables could be set using environment variables:
Where the environment would be set with a script like this:
Actually the latter solution is something we have been using internally for a while. But even without overengineering things to much, I think there is no drawback with the first proposal (hardcoded default vehicle/sensor)
Purpose
win 5 seconds whenever I launch autoware from command line.
Possible approaches
install/setup.bash
Definition of done
don't have to type
vehicle_model:=xxx
anymoreThe text was updated successfully, but these errors were encountered: