-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from tier4/tier4/universe
merge main for galactic release
- Loading branch information
Showing
36 changed files
with
6,754 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,42 @@ | ||
## PR Type | ||
|
||
<!-- Select one and remove others. If an appropriate one is not listed, please write by yourself. --> | ||
|
||
- New Feature | ||
- Improvement | ||
- Bug Fix | ||
|
||
## Related Links | ||
|
||
<!-- Please write related links to GitHub/Jira/Slack/etc. --> | ||
|
||
## Description | ||
|
||
<!-- Describe what this PR changes. --> | ||
<!-- Write a brief description of this PR. --> | ||
|
||
## Related links | ||
|
||
## Review Procedure | ||
<!-- Write the links related to this PR. --> | ||
|
||
<!-- Explain how to review this PR. --> | ||
## Tests performed | ||
|
||
## Remarks | ||
<!-- Describe how you have tested this PR. --> | ||
|
||
<!-- Write remarks as you like if you need them. --> | ||
## Notes for reviewers | ||
|
||
## Pre-Review Checklist for the PR Author | ||
<!-- Write additional information if necessary. It should be written if there are related PRs that should be merged at the same time. --> | ||
|
||
**PR Author should check the checkboxes below when creating the PR.** | ||
## Pre-review checklist for the PR author | ||
|
||
- [ ] Code follows [coding guidelines][coding-guidelines] | ||
- [ ] Assign PR to reviewer | ||
The PR author **must** check the checkboxes below when creating the PR. | ||
|
||
## Checklist for the PR Reviewer | ||
- [ ] I've confirmed the [contribution guidelines]. | ||
- [ ] The PR follows the [pull request guidelines]. | ||
|
||
**Reviewers should check the checkboxes below before approval.** | ||
## In-review checklist for the PR reviewers | ||
|
||
- [ ] Commits are properly organized and messages are according to the guideline | ||
- [ ] Code follows [coding guidelines][coding-guidelines] | ||
- [ ] (Optional) Unit tests have been written for new behavior | ||
- [ ] PR title describes the changes | ||
The PR reviewers **must** check the checkboxes below before approval. | ||
|
||
## Post-Review Checklist for the PR Author | ||
- [ ] The PR follows the [pull request guidelines]. | ||
- [ ] The PR has been properly tested. | ||
- [ ] The PR has been reviewed by the code owners. | ||
|
||
**PR Author should check the checkboxes below before merging.** | ||
## Post-review checklist for the PR author | ||
|
||
- [ ] All open points are addressed and tracked via issues or tickets | ||
- [ ] Write [release notes][release-notes] | ||
The PR author **must** check the checkboxes below before merging. | ||
|
||
## CI Checks | ||
- [ ] There are no open discussions or they are tracked via tickets. | ||
- [ ] The PR is ready for merge. | ||
|
||
- **Build and test for PR**: Required to pass before the merge. | ||
- **Check spelling**: NOT required to pass before the merge. It is up to the reviewer(s). See [here][spell-check-dict] if you want to add some words to the spell check dictionary. | ||
After all checkboxes are checked, anyone who has write access can merge the PR. | ||
|
||
[coding-guidelines]: https://tier4.atlassian.net/wiki/spaces/AIP/pages/1194394777/T4 | ||
[release-notes]: https://tier4.atlassian.net/l/c/X1p69s6B | ||
[spell-check-dict]: https://github.com/tier4/autoware-spell-check-dict#how-to-contribute | ||
[contribution guidelines]: https://autowarefoundation.github.io/autoware-documentation/main/contributing/ | ||
[pull request guidelines]: https://autowarefoundation.github.io/autoware-documentation/main/contributing/pull-request-guidelines/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: sync-tier4-universe-to-humble | ||
on: | ||
schedule: | ||
- cron: 0 0 * * * | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync-branches: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Generate token | ||
id: generate-token | ||
uses: tibdex/github-app-token@v1 | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.PRIVATE_KEY }} | ||
|
||
- name: Run sync-branches | ||
uses: autowarefoundation/autoware-github-actions/sync-branches@v1 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
base-branch: humble | ||
sync-target-repository: [email protected]:tier4/CalibrationTools.git | ||
sync-target-branch: tier4/universe | ||
sync-branch: sync-tier4-universe-to-humble | ||
pr-title: "chore: sync tier4/universe to humble" | ||
auto-merge-method: merge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,18 @@ Calibration tools used for autonomous driving | |
|
||
## Requirement | ||
|
||
- Ubuntu20.04 | ||
- Ros Galactic | ||
|
||
- Ubuntu 20.04 | ||
- ROS 2 Galactic | ||
|
||
## Installation procedures | ||
|
||
After cloning pilot-auto(private repository) or [autoware](https://github.com/tier4/autoware), execute the following commands: | ||
After installing [autoware](https://github.com/tier4/autoware) (please see [source-installation](https://autowarefoundation.github.io/autoware-documentation/main/installation/autoware/source-installation/) page), execute the following commands: | ||
|
||
```bash | ||
mkdir src | ||
vcs import src < autoware.repos | ||
cd src/autoware | ||
git clone [email protected]:tier4/CalibrationTools.git | ||
cd ../../ | ||
vcs import src < src/autoware/calibration_tools/calibration_tools.repos | ||
cd autoware | ||
wget https://raw.githubusercontent.com/tier4/CalibrationTools/tier4/universe/calibration_tools.repos | ||
vcs import src < calibration_tools.repos | ||
rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO | ||
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release | ||
``` | ||
|
||
|
@@ -28,28 +25,28 @@ colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release | |
|
||
We provide calibration tool for sensor pairs like LiDAR - LiDAR, LiDAR - Camera, etc. | ||
|
||
[README](https://github.com/tier4/calibration_tools.iv/blob/tier4/universe/sensor/README.md) | ||
[README](sensor/README.md) | ||
|
||
### localization - deviation estimation tools | ||
|
||
Estimate parameters of sensors used for dead reckoning (IMU and odometry) for a better localization performance | ||
|
||
[README](https://github.com/tier4/calibration_tools.iv/blob/tier4/universe/localization/deviation_estimation_tools/ReadMe.md) | ||
[README](localization/deviation_estimation_tools/ReadMe.md) | ||
|
||
### control - vehicle cmd analyzer | ||
|
||
Visualization and analysis tools for the control outputs from Autoware | ||
|
||
[README](https://github.com/tier4/calibration_tools.iv/blob/tier4/universe/control/vehicle_cmd_analyzer/README.md) | ||
[README](control/vehicle_cmd_analyzer/README.md) | ||
|
||
### vehicle - time delay estimator | ||
|
||
Calibration tool to fix the delay of the commands to the vehicle | ||
|
||
[README](https://github.com/tier4/calibration_tools.iv/blob/tier4/universe/vehicle/time_delay_estimator/README.md) | ||
[README](vehicle/time_delay_estimator/README.md) | ||
|
||
### system - tunable static tf broadcaster | ||
|
||
GUI to modify the parameters of generic TFs. | ||
|
||
[README](https://github.com/tier4/calibration_tools.iv/blob/tier4/universe/system/tunable_static_tf_broadcaster/README.md) | ||
[README](system/tunable_static_tf_broadcaster/README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
repositories: | ||
autoware/calibration_tools: | ||
type: git | ||
url: [email protected]:tier4/CalibrationTools.git | ||
version: tier4/universe | ||
vendor/lidartag: | ||
type: git | ||
url: [email protected]:tier4/LiDARTag.git | ||
|
@@ -19,3 +23,7 @@ repositories: | |
type: git | ||
url: [email protected]:Box-Robotics/ros2_numpy.git | ||
version: rolling | ||
vendor/image_pipeline: | ||
type: git | ||
url: https://github.com/tier4/image_pipeline.git | ||
version: 47964112293eb19f9f57254b2e6b68706954cc63 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...evaluator/config/deviation_evaluator.yaml → ...tor/config/deviation_evaluator.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
parameter_estimator: | ||
/**: | ||
ros__parameters: | ||
# Parameters that you want to evaluate | ||
stddev_vx: 0.3 # [m/s] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.