-
Notifications
You must be signed in to change notification settings - Fork 466
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
[noetic] LaserScan message are cutted off after 1 meter #1511
Comments
By default the range_max value of the LaserScan msg should be used as the cutoff, so maybe a bug here: |
Looks like, we missed this when migrating from tf1 to tf2, because the old tf-based function isn't available anymore for tf2, but silently shadowed by another one. |
Fixed via #1512 |
Looks like the following function applies a 1 meter default cuttoff:
rviz/src/rviz/default_plugin/laser_scan_display.cpp
Lines 84 to 85 in 25f377d
If I replace it by :
the problem disappears (or I guess a 60 meters cuttoff is applied)
The text was updated successfully, but these errors were encountered: