-
Notifications
You must be signed in to change notification settings - Fork 683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(ekf_localizer): rename dev to var in the Simple1DFilter class #8576
refactor(ekf_localizer): rename dev to var in the Simple1DFilter class #8576
Conversation
Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have confirmed that logging_simulator works well and the mean error compared to AWSIM ground truth is almost the same as before (6.5cm -> 6.6cm)
LGTM
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8576 +/- ##
=======================================
Coverage 23.99% 24.00%
=======================================
Files 1384 1384
Lines 102173 102179 +6
Branches 38956 38959 +3
=======================================
+ Hits 24520 24525 +5
Misses 75180 75180
- Partials 2473 2474 +1
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
autowarefoundation#8576) rename dev to var Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
autowarefoundation#8576) rename dev to var Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
autowarefoundation#8576) rename dev to var Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
Description
The variable dev_ in Simple1DFilter is being treated as variance, not standard deviation.
So, I have renamed
dev
tovar
in the Simple1DFilter classRelated links
Parent Issue:
How was this PR tested?
Lsim works
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.