-
Notifications
You must be signed in to change notification settings - Fork 7
Manual Drive sim integration and SDF creation. #8
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
13c9280
Fixed simulation bugs to enable rover control in gazebo
mdurrani808 6cacced
SDF creation and joystick integration with sim
Rishav-N 60f5524
Merge pull request #1 from Rishav-N/ManualDrive
Rishav-N f5212e9
deleted stray file
Rishav-N 3be6a2c
Merge pull request #2 from Rishav-N/ManualDrive
Rishav-N 38ce7c9
SDF creation and joystick integration with sim
Rishav-N de82642
Deleted twist_stamper and added spherical coords to sdf
Rishav-N 3ff494e
Merge pull request #3 from Rishav-N/ManualDrive
Rishav-N c075cd0
deleted stray files
Rishav-N 915a1aa
Merge pull request #4 from Rishav-N/ManualDrive
Rishav-N dd23833
deleted stray text
Rishav-N 9ed38c2
Merge pull request #5 from Rishav-N/ManualDrive
Rishav-N 017b6e8
Merge branch 'main' into main
mdurrani808 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
120 changes: 120 additions & 0 deletions
120
src/description/models/terrain_world/meshes/terrain.dae
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 @@ | ||
| <?xml version="1.0"?> | ||
| <model> | ||
| <name>terrain_world</name> | ||
| <version>1.0</version> | ||
| <sdf version="1.7">model.sdf</sdf> | ||
| <author> | ||
| <name>Rishav Nair</name> | ||
| </author> | ||
| <description>Terrain imported from Blender (.glb)</description> | ||
| </model> |
This file contains hidden or 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,34 @@ | ||
| <?xml version="1.0"?> | ||
| <sdf version="1.7"> | ||
| <model name="terrain_world"> | ||
| <static>true</static> | ||
| <link name="terrain_world_link"> | ||
| <visual name="terrain_world_visual"> | ||
| <geometry> | ||
| <mesh> | ||
| <uri>model://terrain_world/meshes/terrain.dae</uri> | ||
| </mesh> | ||
| </geometry> | ||
| <!-- <material> | ||
| <script> | ||
| <uri>model://terrain/meshes/scripts</uri> | ||
| <name>RepeatedSand/Diffuse</name> | ||
| </script> | ||
| </material> --> | ||
| <material> | ||
| <ambient>0.85 0.76 0.52 1</ambient> | ||
| <diffuse>0.85 0.76 0.52 1</diffuse> | ||
| <specular>0.0 0.0 0.0 1</specular> | ||
| </material> | ||
|
|
||
| </visual> | ||
| <collision name="terrain_world_collision"> | ||
| <geometry> | ||
| <mesh> | ||
| <uri>model://terrain_world/meshes/terrain.dae</uri> | ||
| </mesh> | ||
| </geometry> | ||
| </collision> | ||
| </link> | ||
| </model> | ||
| </sdf> |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -52,4 +52,4 @@ | |
| </xacro:unless> | ||
|
|
||
|
|
||
| </robot> | ||
| </robot> | ||
This file contains hidden or 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 hidden or 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,32 @@ | ||
| <?xml version="1.0" ?> | ||
| <sdf version="1.7"> | ||
| <world name="default"> | ||
| <spherical_coordinates> | ||
| <surface_model>EARTH_WGS84</surface_model> | ||
| <world_frame_orientation>ENU</world_frame_orientation> | ||
|
|
||
| <latitude_deg>38.42391162772634</latitude_deg> | ||
| <longitude_deg>-110.78490558433397</longitude_deg> | ||
|
|
||
| <elevation>0.0</elevation> | ||
|
|
||
| <heading_deg>0.0</heading_deg> | ||
| </spherical_coordinates> | ||
| <light type="directional" name="sun"> | ||
| <cast_shadows>true</cast_shadows> | ||
| <pose>0 0 10 0 0 0</pose> | ||
| <diffuse>0.8 0.8 0.8 1</diffuse> | ||
| <specular>0.2 0.2 0.2 1</specular> | ||
| <attenuation> | ||
| <range>1000</range> | ||
| <constant>0.9</constant> | ||
| <linear>0.01</linear> | ||
| <quadratic>0.001</quadratic> | ||
| </attenuation> | ||
| <direction>-0.5 0.1 -0.9</direction> | ||
| </light> | ||
| <include> | ||
| <uri>model://terrain_world</uri> | ||
| </include> | ||
| </world> | ||
| </sdf> |
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.