Skip to content

Commit

Permalink
fix: add autoware prefix to the vehicle_velocity_converter (#618)
Browse files Browse the repository at this point in the history
add autoware prefix

Signed-off-by: a-maumau <[email protected]>
  • Loading branch information
a-maumau authored Nov 23, 2024
1 parent bed42ca commit d5a4a6e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/design/autoware-interfaces/components/localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Current velocity of the ego vehicle, published by the vehicle interface.
- float lateral_velocity;
- float heading_rate;

Before the velocity input localization interface, module `vehicle_velocity_converter` converts message type `autoware_vehicle_msgs/msg/VelocityReport` to `geometry_msgs/msg/TwistWithCovarianceStamped`.
Before the velocity input localization interface, module `autoware_vehicle_velocity_converter` converts message type `autoware_vehicle_msgs/msg/VelocityReport` to `geometry_msgs/msg/TwistWithCovarianceStamped`.

## Outputs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ The current autoware sensing launch files design for `sensor_kit_launch` package
</figcaption>
</figure>

The `sensing.launch.xml` also launches `vehicle_velocity_converter` package
The `sensing.launch.xml` also launches `autoware_vehicle_velocity_converter` package
for converting `autoware_auto_vehicle_msgs::msg::VelocityReport` message to `geometry_msgs::msg::TwistWithCovarianceStamped` for gyro_odometer node.
So,
be sure
Expand All @@ -429,7 +429,7 @@ or you must update `input_vehicle_velocity_topic` at `sensing.launch.xml`.

```diff
...
<include file="$(find-pkg-share vehicle_velocity_converter)/launch/vehicle_velocity_converter.launch.xml">
<include file="$(find-pkg-share autoware_vehicle_velocity_converter)/launch/vehicle_velocity_converter.launch.xml">
- <arg name="input_vehicle_velocity_topic" value="/vehicle/status/velocity_status"/>
+ <arg name="input_vehicle_velocity_topic" value="<YOUR-VELOCITY-STATUS-TOPIC>"/>
<arg name="output_twist_with_covariance" value="/sensing/vehicle_velocity_converter/twist_with_covariance"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ you can add this argument on `tier4_localization_component.launch.xml` launch fi
```

**Note:** Gyro odometer input topic provided from velocity converter package. This package will be launched at sensor_kit. For more information,
please check [velocity converter package](https://github.com/autowarefoundation/autoware.universe/tree/main/sensing/vehicle_velocity_converter).
please check [velocity converter package](https://github.com/autowarefoundation/autoware.universe/tree/main/sensing/autoware_vehicle_velocity_converter).

## Note when using non NDT pose estimator

Expand Down

0 comments on commit d5a4a6e

Please sign in to comment.