-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow using a CSV file to define currents for hydrodynamic system (#1839
) * Adds support for Hydrodynamic Current This PR adds support for looking up hydrodynamic currents from a data file via the new Environment component. This allows users to vary currents throughout the water column. Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> * Codecheck Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> * more style Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> * Address PR Feedback Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> * Fix a few more outstanding issues. Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> * Address second pass Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> * Final touches. Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> * Retrigger CI Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> * style Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org> Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org>
- Loading branch information
Showing
6 changed files
with
327 additions
and
17 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 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,17 @@ | ||
timestamp,x,y,z,current_x,current_y,current_z | ||
0,-20,-20, 20,1,0,0 | ||
0,20,-20, 20,1,0,0 | ||
0,-20,-20,-20,1,0,0 | ||
0,20,-20,-20,1,0,0 | ||
0,-20, 20, 20,1,0,0 | ||
0,20, 20, 20,1,0,0 | ||
0,-20, 20,-20,1,0,0 | ||
0,20, 20,-20,1,0,0 | ||
10000, 20,-20, 20,1,0,0 | ||
10000,-20,-20, 20,1,0,0 | ||
10000, 20,-20,-20,1,0,0 | ||
10000,-20,-20,-20,1,0,0 | ||
10000, 20, 20, 20,1,0,0 | ||
10000,-20, 20, 20,1,0,0 | ||
10000, 20, 20,-20,1,0,0 | ||
10000,-20, 20,-20,1,0,0 |
Oops, something went wrong.