Not able to simulate my sdf file in ignition gazebo

I was trying to simulate a goat in ignition gazebo and got this error:

[Err] [Server.cc:181] Error Code 13 Msg: Directory doesn’t exist[goat.dae]
[GUI] [Err] [PathManager.cc:57] Service call timed out for [/gazebo/resource_paths/get]

I followed the .sdf world tutorial properly and made a file goat.sdf (code below).
Note: I have kept the goat.sdf and goat.dae (mesh) file in my home directory.

<?xml version="1.0" ?>
<sdf version="1.7">
    <world name="world_demo">
      <physics name="1ms" type="ignored">
           <max_step_size>0.001</max_step_size>
           <real_time_factor>1.0</real_time_factor>
      </physics>
      <plugin
          filename="libignition-gazebo-physics-system.so"
          name="ignition::gazebo::systems::Physics">
       </plugin>
       <plugin
          filename="libignition-gazebo-user-commands-system.so"
          name="ignition::gazebo::systems::UserCommands">
        </plugin>
        <plugin
          filename="libignition-gazebo-scene-broadcaster-system.so"
          name="ignition::gazebo::systems::SceneBroadcaster">
        </plugin>

         <gui fullscreen="0">

           <!-- 3D scene -->
         <plugin filename="GzScene3D" name="3D View">
          <ignition-gui>
              <title>3D View</title>
              <property type="bool" key="showTitleBar">false</property>
              <property type="string" key="state">docked</property>
          </ignition-gui>

          <engine>ogre2</engine>
          <scene>scene</scene>
          <ambient_light>1.0 1.0 1.0</ambient_light>
          <background_color>0.8 0.8 0.8</background_color>
          <camera_pose>-6 0 6 0 0.5 0</camera_pose>
        </plugin>

        <!-- World control -->
        <plugin filename="WorldControl" name="World control">
          <ignition-gui>
            <title>World control</title>
            <property type="bool" key="showTitleBar">false</property>
            <property type="bool" key="resizable">false</property>
            <property type="double" key="height">72</property>
            <property type="double" key="width">121</property>
            <property type="double" key="z">1</property>

            <property type="string" key="state">floating</property>
            <anchors target="3D View">
              <line own="left" target="left"/>
              <line own="bottom" target="bottom"/>
            </anchors>
          </ignition-gui>

          <play_pause>true</play_pause>
          <step>true</step>
          <start_paused>true</start_paused>
          <service>/world/world_demo/control</service>
          <stats_topic>/world_demo/world_demo/stats</stats_topic>

        </plugin>

        <!-- World statistics -->
        <plugin filename="WorldStats" name="World stats">
            <ignition-gui>
                <title>World stats</title>
                <property type="bool" key="showTitleBar">false</property>
                <property type="bool" key="resizable">false</property>
                <property type="double" key="height">110</property>
                <property type="double" key="width">290</property>
                <property type="double" key="z">1</property>

                <property type="string" key="state">floating</property>
                <anchors target="3D View">
                <line own="right" target="right"/>
                <line own="bottom" target="bottom"/>
                </anchors>
            </ignition-gui>

            <sim_time>true</sim_time>
            <real_time>true</real_time>
            <real_time_factor>true</real_time_factor>
            <iterations>true</iterations>
            <topic>/world/world_demo/stats</topic>

        </plugin>

        <!-- Entity tree -->
        <plugin filename="EntityTree" name="Entity tree">
        </plugin>
      </gui>

      <!--light-->
      <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://goat.dae
         </uri>
      </include>
    </world>
</sdf>

Can anyone help me, please?

Thanks

Welcome to the community! Please ask questions like this on https://answers.gazebosim.org/ . This site is for high-level discussions and announcements. See you at Gazebo Answers!

Thanks, @chapulina. I have posted my question at https://answers.gazebosim.org/question/26547/not-able-to-simulate-my-sdf-file-in-ignition-gazebo/

1 Like