Skip to content

Commit

Permalink
refactor(radar_scan_to_pointcloud2, radar_static_pointcloud_filter, r…
Browse files Browse the repository at this point in the history
…adar_threshold_filter)!: add package name prefix of autoware_ (autowarefoundation#8132)

* refactor(radar_scan_to_pointcloud2): rename package and update references

Signed-off-by: Taekjin LEE <[email protected]>

fix: rename package folder

Signed-off-by: Taekjin LEE <[email protected]>

* refactor(radar_static_pointcloud_filter): rename package and update references

Signed-off-by: Taekjin LEE <[email protected]>

refactor: update launch file name for autoware_radar_static_pointcloud_filter

* refactor(radar_threshold_filter): rename package and update references

Signed-off-by: Taekjin LEE <[email protected]>

---------

Signed-off-by: Taekjin LEE <[email protected]>
  • Loading branch information
technolojin authored Jul 23, 2024
1 parent 37676fd commit fe03b39
Show file tree
Hide file tree
Showing 27 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ sensing/image_transport_decompressor/** [email protected] yukihiro.saito@tier
sensing/imu_corrector/** [email protected] [email protected]
sensing/livox/autoware_livox_tag_filter/** [email protected] [email protected]
sensing/autoware_pointcloud_preprocessor/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
sensing/radar_scan_to_pointcloud2/** [email protected] [email protected] [email protected] [email protected]
sensing/radar_static_pointcloud_filter/** [email protected] [email protected] [email protected] [email protected]
sensing/radar_threshold_filter/** [email protected] [email protected] [email protected] [email protected]
sensing/autoware_radar_scan_to_pointcloud2/** [email protected] [email protected] [email protected] [email protected]
sensing/autoware_radar_static_pointcloud_filter/** [email protected] [email protected] [email protected] [email protected]
sensing/autoware_radar_threshold_filter/** [email protected] [email protected] [email protected] [email protected]
sensing/radar_tracks_noise_filter/** [email protected] [email protected] [email protected] [email protected]
sensing/tier4_pcl_extensions/** [email protected] [email protected] [email protected]
sensing/vehicle_velocity_converter/** [email protected]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(radar_scan_to_pointcloud2)
project(autoware_radar_scan_to_pointcloud2)

# Dependencies
find_package(autoware_cmake REQUIRED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
### How to launch

```sh
ros2 launch radar_scan_to_pointcloud2 radar_scan_to_pointcloud2.launch.xml
ros2 launch autoware_radar_scan_to_pointcloud2 radar_scan_to_pointcloud2.launch.xml
```
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<arg name="output/amplitude_pointcloud" default="output/amplitude_pointcloud"/>
<arg name="output/doppler_pointcloud" default="output/doppler_pointcloud"/>
<!-- Parameter -->
<arg name="param_file" default="$(find-pkg-share radar_scan_to_pointcloud2)/config/radar_scan_to_pointcloud2.param.yaml"/>
<arg name="param_file" default="$(find-pkg-share autoware_radar_scan_to_pointcloud2)/config/radar_scan_to_pointcloud2.param.yaml"/>

<node pkg="radar_scan_to_pointcloud2" exec="radar_scan_to_pointcloud2_node" name="radar_scan_to_pointcloud2" output="screen">
<node pkg="autoware_radar_scan_to_pointcloud2" exec="radar_scan_to_pointcloud2_node" name="radar_scan_to_pointcloud2" output="screen">
<remap from="~/input/radar" to="$(var input/radar)"/>
<remap from="~/output/amplitude_pointcloud" to="$(var output/amplitude_pointcloud)"/>
<remap from="~/output/doppler_pointcloud" to="$(var output/doppler_pointcloud)"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package format="3">
<name>radar_scan_to_pointcloud2</name>
<name>autoware_radar_scan_to_pointcloud2</name>
<version>0.1.0</version>
<description>radar_scan_to_pointcloud2</description>
<description>autoware_radar_scan_to_pointcloud2</description>
<maintainer email="[email protected]">Satoshi Tanaka</maintainer>
<maintainer email="[email protected]">Shunsuke Miura</maintainer>
<maintainer email="[email protected]">Yoshi Ri</maintainer>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(radar_static_pointcloud_filter)
project(autoware_radar_static_pointcloud_filter)

# Dependencies
find_package(autoware_cmake REQUIRED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Calculation cost is O(n). `n` is the number of radar pointcloud.
### How to launch

```sh
ros2 launch radar_static_pointcloud_filter radar_static_pointcloud_filter.launch
ros2 launch autoware_radar_static_pointcloud_filter radar_static_pointcloud_filter.launch.xml
```

### Algorithm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<arg name="output/static_radar_scan" default="output/static_radar_scan"/>
<arg name="output/dynamic_radar_scan" default="output/dynamic_radar_scan"/>
<!-- Parameter -->
<arg name="config_file" default="$(find-pkg-share radar_static_pointcloud_filter)/config/radar_static_pointcloud_filter.param.yaml"/>
<arg name="config_file" default="$(find-pkg-share autoware_radar_static_pointcloud_filter)/config/radar_static_pointcloud_filter.param.yaml"/>

<node pkg="radar_static_pointcloud_filter" exec="radar_static_pointcloud_filter_node" name="radar_static_pointcloud_filter" output="screen">
<node pkg="autoware_radar_static_pointcloud_filter" exec="radar_static_pointcloud_filter_node" name="radar_static_pointcloud_filter" output="screen">
<remap from="~/input/radar" to="$(var input/radar)"/>
<remap from="~/input/odometry" to="$(var input/odometry)"/>
<remap from="~/output/static_radar_scan" to="$(var output/static_radar_scan)"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package format="3">
<name>radar_static_pointcloud_filter</name>
<name>autoware_radar_static_pointcloud_filter</name>
<version>0.1.0</version>
<description>radar_static_pointcloud_filter</description>
<description>autoware_radar_static_pointcloud_filter</description>
<maintainer email="[email protected]">Satoshi Tanaka</maintainer>
<maintainer email="[email protected]">Shunsuke Miura</maintainer>
<maintainer email="[email protected]">Yoshi Ri</maintainer>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(radar_threshold_filter)
project(autoware_radar_threshold_filter)

# Dependencies
find_package(autoware_cmake REQUIRED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ Calculation cost is O(n). `n` is the number of radar return.
### How to launch

```sh
ros2 launch radar_threshold_filter radar_threshold_filter.launch.xml
ros2 launch autoware_radar_threshold_filter radar_threshold_filter.launch.xml
```
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<launch>
<arg name="input/radar" default="input/radar"/>
<arg name="output/radar" default="output/threshold_filtered_radar"/>
<arg name="config_file" default="$(find-pkg-share radar_threshold_filter)/config/radar_threshold_filter.param.yaml"/>
<arg name="config_file" default="$(find-pkg-share autoware_radar_threshold_filter)/config/radar_threshold_filter.param.yaml"/>

<!-- Node -->
<node pkg="radar_threshold_filter" exec="radar_threshold_filter_node" name="radar_threshold_filter" output="screen">
<node pkg="autoware_radar_threshold_filter" exec="radar_threshold_filter_node" name="radar_threshold_filter" output="screen">
<remap from="~/input/radar" to="$(var input/radar)"/>
<remap from="~/output/radar" to="$(var output/radar)"/>
<param from="$(var config_file)"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package format="3">
<name>radar_threshold_filter</name>
<name>autoware_radar_threshold_filter</name>
<version>0.1.0</version>
<description>radar_threshold_filter</description>
<description>autoware_radar_threshold_filter</description>
<maintainer email="[email protected]">Satoshi Tanaka</maintainer>
<maintainer email="[email protected]">Shunsuke Miura</maintainer>
<maintainer email="[email protected]">Yoshi Ri</maintainer>
Expand Down

0 comments on commit fe03b39

Please sign in to comment.