-
Notifications
You must be signed in to change notification settings - Fork 10
Nav Simulation Bringup Housecleaning #29
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
Open
a-cires
wants to merge
12
commits into
umdloop:main
Choose a base branch
from
a-cires:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
1121f1c
**Package Dependency Fixes:**
34274e9
Merge remote-tracking branch 'upstream/main'
9385129
removed unused launch argument in gz_sim.launch.py
f8dfc37
[comments] Clarified world file origin
2d428de
updated spawn.launch.py to reflect convention
ff06114
Updated rear wheel joint names
e1a7991
Changed rover name from 'rover' to 'athena'
f5f8b84
Added missing 'world_name' to ros_gz_sim create node params
3433fc6
Changed IMU topic to unidirection (gazebo -> ros) from bidirectional
1dd7b46
Added velocity command interface to back propulsion joints
0e80120
Added simulation README.md for git lfs issue
8886c44
Added common issue and solution to simulation README.md
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 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
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,33 @@ | ||
| # simulation | ||
|
|
||
| ## Common Issues | ||
|
|
||
| ### Missing terrain.dae file | ||
|
|
||
| You may run into issues with a missing terrain.dae file. The issue is that the `terrain.dae` file is stored in **Git LFS** (Large File Storage), but hasn't been downloaded. To fix this, do the following: | ||
|
|
||
| 1. Install git-lfs if not already installed | ||
| ```bash | ||
| sudo apt install git-lfs | ||
| ``` | ||
|
|
||
| 2. Initialize git-lfs in your local repo | ||
| ```bash | ||
| git lfs install | ||
| ``` | ||
|
|
||
| 3. Pull the actual LFS files | ||
| ```bash | ||
| git lfs pull | ||
| ``` | ||
|
|
||
| ### Ground truth TF publisher not found | ||
|
|
||
| If you get an error like `executable 'ground_truth_tf_publisher.py' not found on the libexec directory` when launching with `publish_ground_truth_tf:=true`, the script needs executable permissions. | ||
|
|
||
| Fix it by running: | ||
| ```bash | ||
| chmod +x src/simulation/scripts/ground_truth_tf_publisher.py | ||
| colcon build --packages-select simulation | ||
| source install/setup.bash | ||
| ``` | ||
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
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
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.
Fix this by making the script executable in Git.
https://stackoverflow.com/questions/21691202/how-to-create-file-execute-mode-permissions-in-git-on-windows