The simulation enviroment is based on URJC Fuenlabrada Campus, where it is located this building. This world could be used to create new algorithms in localization or navigation.
- Add the following to your launch file:
urjc_building = launch.actions.IncludeLaunchDescription(
launch.launch_description_sources.PythonLaunchDescriptionSource(
os.path.join(
get_package_share_directory('urjc_building_3_world'),
'launch',
'urjc_building_3_1st.launch.py')))export GAZEBO_MODEL_PATH=`pwd`/models
gz sim worlds/urjc_building_3_1st.world# build for ROS
source /opt/ros/jazzy/setup.bash
source /usr/share/gazebo/setup.sh
rosdep install --from-paths . --ignore-src -r -y
colcon build
# run in ROS
source install/setup.sh
ros2 launch urjc_building_3_world urjc_building_3_1st.launch.pyFor to obtain a better performance the shadows were disabled. If you want to enable them, you can do it in the file urjc_building_3_1st.world, modifying the line:
<cast_shadows>0</cast_shadows>to
<cast_shadows>1</cast_shadows>

