Anyone run sdf_parser.launch.py from the gazebo demos?
I have Gazebo Harmonic on Ubuntu 24.04 built from source. I tried to run the above demo and it throws an error in this line <uri>package://ros_gz_sim_demos/models/vehicle</uri>that it cannot find the model.
I tried modifying it to this <uri>model://vehicle</uri> but still get the same error.
Tried also from the binary installation and still getting the same error.
What could be wrong?
Edit: Reply to the answer of @JustPtrck
I wanted to see how the tf tree is structured. My tf tree is similat to the tf tree from another example namely tf_bridge.launch.py
TF tree of the example:
My TF tree:
In my TF tree I don't understand why all the sensors are not under the x500_lidar_2d/base_link frame.
In my sdf file all my sensors have this tag:
<pose relative_to="base_link">0 0 0.1 0 0 0</pose> And a separate joint definition such as:
<joint name="imu_joint" type="fixed"> <parent>base_link</parent> <child>imu_link</child> </joint> 
