Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2016
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. plugins:
  2. - {name: static_map, type: "costmap_2d::StaticLayer"}
  3. - {name: obstacles1, type: "costmap_2d::ObstacleLayer"}
  4. - {name: obstacles2, type: "costmap_2d::VoxelLayer"}
  5. - {name: inflation, type: "costmap_2d::InflationLayer"}
  6.  
  7. global_frame: /world
  8. robot_base_frame: base_link_footprint
  9. update_frequency: 4.0
  10. publish_frequency: 4.0
  11.  
  12. track_unknown_space: false
  13. transform_tolerance: 0.3
  14. footprint: [[-0.54, -0.54], [-0.54, 0.54], [0.54, 0.54], [0.54, -0.54]]
  15. footprint_padding: 0.01
  16. inflation_radius: 0.80
  17. cost_scaling_factor: 10.0
  18.  
  19.  
  20.  
  21. static_map:
  22. map_topic: map_costmap
  23. lethal_cost_threshold: 100
  24. obstacles1:
  25. observation_sources: footprint_scan
  26. footprint_scan:
  27. {topic: ds/scan_footprint,
  28. data_type: LaserScan,
  29. expected_update_rate: 0.2,
  30. observation_persistence: 0.0,
  31. marking: true,
  32. clearing: true,
  33. max_obstacle_height: 10.0,
  34. min_obstacle_height: 0.0,
  35. obstacle_range: 2.0,
  36. raytrace_range: 4.0}
  37. obstacles2:
  38. observation_sources: cam_scan
  39. cam_scan:
  40. {
  41. topic: astra/depth/points/filtered,
  42. data_type: PointCloud2,
  43. map_type: voxel,
  44. origin_z: 0.0,
  45. z_resolution: 0.1,
  46. z_voxels: 15,
  47. publish_voxel_map: true,
  48. inf_is_valid: true,
  49. expected_update_rate: 0.02,
  50. observation_persistence: 0.0,
  51. marking: true,
  52. clearing: true,
  53. obstacle_range: 2.5,
  54. raytrace_range: 7.0,
  55. max_obstacle_height: 1.7,
  56. min_obstacle_height: 0.95}
  57. # min_obstacle_height: -0.35
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement