sdf_to_urdf.md
Authors - Alexion Ramos & Ilan Hascal
Creating a Gazebo Model
Building Saving a model
Why is .sdf not useful for Autonomous Pacman and how it conflicts with Services?
spawn_model_client = rospy.ServiceProxy('/gazebo/spawn_sdf_model', SpawnModel)
spawn_model_client(
model_name='TESTCYLINDER',
model_xml=open('/my_ros_data/catkin_ws/src/ros-autonomous-pacman/models/TESTCYLINDER/TESTCYLINDER.urdf', 'r').read(),
initial_pose=Pose(),
reference_frame='world'
)Solution
Last updated
Was this helpful?
