Git Product home page Git Product logo

ros-params's Introduction

ros-params

This repo contains a set of ROS default yaml parameter files to be used with a ROS robot. The intent is to include all options, their defaults, and the description of the options to make it easier to see the options that are available. In some cases the standard default is replaced by recommendations made from reputable sources.

Download these yaml files and adjust as needed. You can use clone this repo, download or use wget to pull the files you need. Example: wget https://raw.githubusercontent.com/brannonvann/ros-params/master/move_base.yaml

To use the parameter files, make sure your launch file is pointing to the correct location.

Examples:

Loading in the base namespace

<launch>
    <node pkg="amcl" type="amcl" name="amcl" output="screen">
        <rosparam file="$(find PACKAGE_NAME_HERE)/params/amcl.yaml" command="load"/>
    </node>
</launch>

Loading in the node's namespace

note: the common is loaded in to the node's namespace under the namespace of local_costmap and global_costmap.

<launch>
    <node pkg="move_base" type="move_base" respawn="false" name="move_base" output="screen">
        <rosparam file="$(find PACKAGE_NAME_HERE)/params/costmap_common.yaml" command="load" ns="global_costmap" />
        <rosparam file="$(find PACKAGE_NAME_HERE)/params/costmap_common.yaml" command="load" ns="local_costmap" />
        <rosparam file="$(find PACKAGE_NAME_HERE)/params/local_costmap.yaml" command="load" />
        <rosparam file="$(find PACKAGE_NAME_HERE)/params/global_costmap.yaml" command="load" />
        <rosparam file="$(find PACKAGE_NAME_HERE)/params/move_base.yaml" command="load" />
    </node>
</launch>

References

Much of the text comes directly from the documentation available at ros.org for each package. Other sources are mentioned in the files. I also referenced Kaiyu Zheng's ROS Navigation Tuninig Guide.

ros-params's People

Contributors

brannonvann avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.