Skip to content

Commit 885d5be

Browse files
committed
Move world directory to common, add common prefix to packages
1 parent 5ebd033 commit 885d5be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+54
-58
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ The simulation is fairly computation intensive so a GPU is recommended. Note tha
3535
4. ```source install/setup.bash```
3636

3737
### Launching
38-
Running ```ros2 launch marvin_simulation display.launch.py``` will open RViz and display the robot model. This launch file is made to quickly check if the robot model is correctly formatted and used internally when developing the stack.
38+
Running ```ros2 launch simulation_marvin display.launch.py``` will open RViz and display the robot model. This launch file is made to quickly check if the robot model is correctly formatted and used internally when developing the stack.
3939

40-
Running ```ros2 launch marvin_simulation simulation.launch.py``` will spawn the robot in Gazebo and visualize sensor outputs in RViz. Any project interfacing with the simulation should use this launch file.
40+
Running ```ros2 launch simulation_marvin simulation.launch.py``` will spawn the robot in Gazebo and visualize sensor outputs in RViz. Any project interfacing with the simulation should use this launch file.
4141

4242

4343
## Interfacing with the Stack
@@ -101,4 +101,4 @@ This error is caused by [snap variables leaking into terminal variables](https:/
101101
## Credits
102102
Jason Ning and Kari Naga on the sensors team, who created the original URDF files and the Gazebo World in the [marvin](https://github.com/umigv/marvin/tree/main/urdf) repository.
103103

104-
[UTRA ART](https://github.com/UTRA-ART) for their [full IGVC course world](https://github.com/UTRA-ART/Caffeine/tree/master/worlds/). Any file or folder containing IGVC is under the original [Apache 2.0 license](https://github.com/umigv/simulation_stack/blob/igvc_course/marvin_simulation/world/LICENSE)
104+
[UTRA ART](https://github.com/UTRA-ART) for their [full IGVC course world](https://github.com/UTRA-ART/Caffeine/tree/master/worlds/). Any file or folder containing IGVC is under the original [Apache 2.0 license](https://github.com/umigv/simulation_stack/blob/igvc_course/simulation_marvin/world/LICENSE)

marvin_simulation/urdf/plugins.xacro

Lines changed: 0 additions & 30 deletions
This file was deleted.

scripts/setup.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ colcon build --symlink-install
1919
source install/setup.bash)
2020

2121
# Install IGVC World Models
22-
bash marvin_simulation/world/igvc_models/install_models.sh)
22+
bash simulation_common/world/igvc_models/install_models.sh)
2323

2424
echo "Setup successful!"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.8)
2-
project(common_xacro)
2+
project(simulation_common)
33

44
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
55
add_compile_options(-Wall -Wextra -Wpedantic)
@@ -12,7 +12,7 @@ find_package(ament_cmake REQUIRED)
1212
# find_package(<dependency> REQUIRED)
1313

1414
install(
15-
DIRECTORY urdf
15+
DIRECTORY urdf world
1616
DESTINATION share/${PROJECT_NAME}
1717
)
1818

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0"?>
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
4-
<name>common_xacro</name>
4+
<name>simulation_common</name>
55
<version>1.0.0</version>
6-
<description>ARV Common Xacro Files</description>
6+
<description>ARV Simulation Common Files</description>
77
<maintainer email="[email protected]">Ryan Liao</maintainer>
88
<license>MIT</license>
99

File renamed without changes.

common_xacro/urdf/sensor/depth_camera.xacro renamed to simulation_common/urdf/sensor/depth_camera.xacro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<robot xmlns:xacro="http://ros.org/wiki/xacro" name="depth_camera">
1212
<xacro:macro name="depth_camera" params="name parent:=base_link *joint_origin">
1313
<!-- Includes -->
14-
<xacro:include filename="$(find common_xacro)/urdf/physics/inertia.xacro"/>
14+
<xacro:include filename="$(find simulation_common)/urdf/physics/inertia.xacro"/>
1515

1616
<!-- Constants -->
1717
<xacro:property name="mass" value="0.230"/>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<robot xmlns:xacro="http://ros.org/wiki/xacro" name="caster">
1212
<xacro:macro name="imu" params="name parent:=base_link *joint_origin">
1313
<!-- Includes -->
14-
<xacro:include filename="$(find common_xacro)/urdf/physics/inertia.xacro"/>
14+
<xacro:include filename="$(find simulation_common)/urdf/physics/inertia.xacro"/>
1515

1616
<!-- Constants -->
1717
<xacro:property name="mass" value="0.025"/>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<robot xmlns:xacro="http://ros.org/wiki/xacro" name="caster">
1111
<xacro:macro name="caster" params="name parent:=base_link *joint_origin">
1212
<!-- Includes -->
13-
<xacro:include filename="$(find common_xacro)/urdf/physics/inertia.xacro"/>
13+
<xacro:include filename="$(find simulation_common)/urdf/physics/inertia.xacro"/>
1414

1515
<!-- Constants -->
1616
<xacro:property name="radius" value="${3.5*0.0254}"/>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<robot xmlns:xacro="http://ros.org/wiki/xacro" name="wheel">
1111
<xacro:macro name="wheel" params="name parent:=base_link *joint_origin">
1212
<!-- Includes -->
13-
<xacro:include filename="$(find common_xacro)/urdf/physics/inertia.xacro"/>
13+
<xacro:include filename="$(find simulation_common)/urdf/physics/inertia.xacro"/>
1414

1515
<!-- Constants -->
1616
<xacro:property name="radius" value="${6.1875*0.0254}"/>

0 commit comments

Comments
 (0)