-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge miscellaneous tweaks (mostly doc improvements) made while assis…
…ting with DVL debugging (#1193) * README.md: update documentation link (https://noetic.cbrxyz.com -> https://mil.ufl.edu/docs/) * scripts/install.sh: fix abort if update-manager package isn't installed (e.g. in a schroot) Fixes this error: $ scripts/install.sh [...] sed: can't read /etc/update-manager/release-upgrades: No such file or directory * subjugator_msgs: remove VelocityMeasurement[s] messages duplicated from mil_msgs * mil_msgs: document meaning of VelocityMeasurement[s] messages' fields * odom_estimator: warn on non-unit VelocityMeasurement::direction vector --------- Co-authored-by: Forrest Voight <[email protected]>
- Loading branch information
Showing
9 changed files
with
29 additions
and
11 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
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
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
SubjuGator/utils/subjugator_msgs/msg/VelocityMeasurements.msg
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# Generic representation of measurement from one beam of a Doppler Velocity Log (DVL)-like sensor | ||
|
||
# unit vector pointing along beam (in sensor coordinate frame) | ||
geometry_msgs/Vector3 direction | ||
|
||
# measured velocity (in m/s) of sensor relative to pool floor, projected onto `direction` vector | ||
# * should be NaN if measurement is bad/invalid/unknown | ||
float64 velocity | ||
|
||
# correlation value | ||
# * describes the SNR of the return ping; currently only for diagnostic usage | ||
# * should be NaN if unknown | ||
float64 correlation |
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,2 +1,11 @@ | ||
# Generic representation of one measurement report from a Doppler Velocity Log (DVL)-like sensor | ||
|
||
# stamp is the time the measurements were made | ||
# frame_id ... | ||
# * should have its origin at the location where the beam vectors intersect | ||
# * defines the coordinate frame of the `velocity_measurements.direction` vectors | ||
Header header | ||
|
||
# velocity_measurements should have one element for each beam the hardware supports (typically 4) | ||
# * invalid beams should still have VelocityMeasurement elements | ||
VelocityMeasurement[] velocity_measurements |
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