ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Cagurtay's profile - activity

2018-09-17 12:21:47 -0500 received badge  Good Question (source)
2018-03-26 21:28:32 -0500 received badge  Nice Question (source)
2016-09-08 06:28:30 -0500 received badge  Student (source)
2015-11-26 10:49:05 -0500 received badge  Enthusiast
2015-11-23 13:57:08 -0500 received badge  Famous Question (source)
2015-11-23 13:02:43 -0500 commented answer Rviz: Fixed frame [Map] does not exist

I added my launch file. It looks like it contains all of them. I just copy-pasted from the tutorial, changed map location.

2015-11-23 13:01:18 -0500 received badge  Editor (source)
2015-11-23 04:40:18 -0500 received badge  Notable Question (source)
2015-11-23 03:36:12 -0500 commented answer Rviz: Fixed frame [Map] does not exist

I don't even know how to change it. I tried your solution, it fixes "Global Status" but there still is RobotModel error: Screenshot

2015-11-23 03:00:18 -0500 received badge  Popular Question (source)
2015-11-21 20:36:58 -0500 asked a question Rviz: Fixed frame [Map] does not exist

Hello,

I am trying to do this tutorial Writing A Global Path Planner As Plugin in ROS and i finally managed to get to last step, to simulate on Gazebo. After using roslaunch relaxed_astar test.launch and roslaunch turtlebot_rviz_launchers view_navigation.launch --screen Gazebo opens but I get an error :

Fixed frame [Map] does not exist

image description

Any ideas?

Thank you.

Edit: My map files:

image: my_map.pgm
# a 584 X 526 map @ 0.100 m/cell
resolution: 0.1
origin: [-18, -15, 0.0]
occupied_thresh: 0.65
free_thresh: 0.196
negate: 0

Map

My launch file :

<launch>
<include file="/opt/ros/indigo/share/turtlebot_bringup/launch/minimal.launch"></include>

  <include file="/opt/ros/indigo/share/turtlebot_bringup/launch/3dsensor.launch">
    <arg name="rgb_processing" value="false" />
    <arg name="depth_registration" value="false" />
    <arg name="depth_processing" value="false" />
    <arg name="scan_topic" value="/scan" />
  </include>

  <!-- Map server -->
  <arg name="map_file" default="/home/cagurtay/catkin_ws/src/relaxed_astar/maps/my_map.yaml"/>
  <node name="map_server" pkg="map_server" type="map_server" args="$(arg map_file)" />

  <arg name="initial_pose_x" default="0.0"/>
  <arg name="initial_pose_y" default="0.0"/>
  <arg name="initial_pose_a" default="0.0"/>
  <include file="/opt/ros/indigo/share/turtlebot_navigation/launch/includes/amcl.launch.xml">
    <arg name="initial_pose_x" value="$(arg initial_pose_x)"/>
    <arg name="initial_pose_y" value="$(arg initial_pose_y)"/>
    <arg name="initial_pose_a" value="$(arg initial_pose_a)"/>
  </include>

  <!-- Move base -->
  <include file="/opt/ros/indigo/share/turtlebot_navigation/launch/includes/move_base.launch.xml"/>

</launch>