-
Notifications
You must be signed in to change notification settings - Fork 276
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
Add DopplerVelocityLogSystem plugin #1804
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
da0b9ac
Add DopplerVelocityLogSystem plugin
hidmic cd16bc8
Please cppcheck
hidmic f9f4213
Add DopplerVelocityLogSystem plugin tests
hidmic 4b08667
Merge branch 'main' into hidmic/dvl
iche033 bdfe547
fix build and doxygen generation. Update doxygen, style
iche033 0cb2e4d
split tests, fix Bottom tracking test
iche033 2df4a98
remove unneeded code
iche033 fae98b1
more style fixes, fixing windows
iche033 4685c4f
fixing windows, disable tests on macos
iche033 edf0959
remove gz-sensors dep in core
iche033 fbd8783
fix model manipulator, model observer, dvl tests
iche033 ef04eb8
add include
iche033 ce79e44
remove unused var
iche033 2070591
fix ang vel for bottom tracking
iche033 c0ef18f
update todo
iche033 a91ff9e
fix retrieving model properties in test, ensure setworldstates is cal…
iche033 5112ee9
doxy
iche033 1740385
Merge branch 'main' into hidmic/dvl
iche033 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -142,6 +142,7 @@ gz_find_package(gz-sensors8 REQUIRED | |
navsat | ||
|
||
# rendering | ||
dvl | ||
rendering | ||
lidar | ||
gpu_lidar | ||
|
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.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
gz_add_system(dvl | ||
SOURCES | ||
DopplerVelocityLogSystem.cc | ||
PUBLIC_LINK_LIBS | ||
gz-common${GZ_COMMON_VER}::gz-common${GZ_COMMON_VER} | ||
gz-rendering${GZ_RENDERING_VER}::gz-rendering${GZ_RENDERING_VER} | ||
PRIVATE_LINK_LIBS | ||
gz-sensors${GZ_SENSORS_VER}::dvl | ||
gz-sensors${GZ_SENSORS_VER}::rendering | ||
) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@iche033 hmm, so we are duplicating
EnvironmentalData
definition, ingz-sensors
and here, to avoid the dependency?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.
this introduces gz-sensors dependency in the core component of gz-sim. So far, only the gz systems (plugins) have dependency on gz-sensors, which are are loaded at run time
The general approach we've been taking is to add the common data structure in sdformat in use them in other gz libraries. It's possible to add this extra dependency but I think it needs some discussion. I made the change to try and get the PR in first.