No version for distro humble showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro jazzy showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro kilted showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro rolling showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro ardent showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro bouncy showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro crystal showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro eloquent showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro dashing showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro galactic showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro foxy showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

No version for distro iron showing lunar. Known supported distros are highlighted in the buttons above.
Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
lunar

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
slam_gmapping

Recent questions tagged gmapping at Robotics Stack Exchange

Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
jade

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Recent questions tagged gmapping at Robotics Stack Exchange

Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
indigo

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Recent questions tagged gmapping at Robotics Stack Exchange

Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
hydro

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Recent questions tagged gmapping at Robotics Stack Exchange

Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
kinetic

Package Summary

Tags No category tags.
Version 1.3.10
License CreativeCommons-by-nc-sa-2.0
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version hydro-devel
Last Updated 2018-01-24
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • Vincent Rabaud

Authors

  • Brian Gerkey
README
No README found. No README in repository either.
CHANGELOG

Changelog for package gmapping

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test
  • fixing include order removing pointer for Gmapping object
  • Minor Fix thanks to vrabaud comments
  • [new feature] replay on bag file The aim is to provide a way to get exactly the same map after running gmapping multiple times on the same rosbag file. It wasn't possible with the tool 'rosbag play', indeed one missing laser scan could provide really different results. Moreover, this modification allow to process rosbag offline at the maximum speed with the guarantee that all lasers scans are processed. It is useful in automatic tests and when finding optimal gmapping parameters with a script. Example usage: rosrun gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag _particles:=100 _maxUrange:=10 more options: rosrun gmapping slam_gmapping_replay --help
  • spliting init and constructor The objective is to allow future handling of replay offline rosbag files. This commit also add a variable for the seed, with the objective is to allow to have repeateable run (for future offline rosbag replay)
  • Added cfloat include
  • Change arbitrary constant to FLT_EPSILON
  • Added check that scan goes from -x to x
  • Contributors: Laurent GEORGE, Patrick Doyle, Qiao Huang, Vincent Rabaud, Windel Bouwman

1.3.5 (2014-08-28)

  • Fixed typo in slam_gmapping_pr2.launch Fixed a typo in the launchfile in the parameter "map_update_interval".
  • Contributors: DaMalo

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Recent questions tagged gmapping at Robotics Stack Exchange

Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 1.4.2
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version melodic-devel
Last Updated 2024-08-21
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • ROS Orphaned Package Maintainers

Authors

  • Brian Gerkey
README
No README found. See repository README.
CHANGELOG

Changelog for package gmapping

1.4.2 (2020-10-02)

  • change find_package(Boost REQUIRED signales) to find_package(Boost REQUIRED) for noteic (#84)
  • Contributors: Kei Okada

1.4.1 (2020-03-16)

  • Merge pull request #85 from k-okada/install_nodelet install slam_gmapping_nodelet
  • Merge pull request #87 from acxz/patch-1 remove signals dep
  • remove signals dep signals is included in boost > 1.70
  • install slam_gmapping_nodelet
  • Contributors: Kei Okada, Michael Ferguson, acxz

1.4.0 (2019-07-12)

  • update license to BSD and maintainer to ros-orphaned-packages@googlegroups.com since original gmapping source and ROS openslam_gmapping package has been updated to the BSD-3 license, I think we have no reason to use CC for slam_gmapping package
  • Contributors: Kei Okada

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Recent questions tagged gmapping at Robotics Stack Exchange

Package symbol

gmapping package from slam_gmapping repo

gmapping slam_gmapping

ROS Distro
noetic

Package Summary

Tags No category tags.
Version 1.4.2
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-perception/slam_gmapping.git
VCS Type git
VCS Version melodic-devel
Last Updated 2024-08-21
Dev Status UNMAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

This package contains a ROS wrapper for OpenSlam's Gmapping. The gmapping package provides laser-based SLAM (Simultaneous Localization and Mapping), as a ROS node called slam_gmapping. Using slam_gmapping, you can create a 2-D occupancy grid map (like a building floorplan) from laser and pose data collected by a mobile robot.

Additional Links

Maintainers

  • ROS Orphaned Package Maintainers

Authors

  • Brian Gerkey
README
No README found. See repository README.
CHANGELOG

Changelog for package gmapping

1.4.2 (2020-10-02)

  • change find_package(Boost REQUIRED signales) to find_package(Boost REQUIRED) for noteic (#84)
  • Contributors: Kei Okada

1.4.1 (2020-03-16)

  • Merge pull request #85 from k-okada/install_nodelet install slam_gmapping_nodelet
  • Merge pull request #87 from acxz/patch-1 remove signals dep
  • remove signals dep signals is included in boost > 1.70
  • install slam_gmapping_nodelet
  • Contributors: Kei Okada, Michael Ferguson, acxz

1.4.0 (2019-07-12)

  • update license to BSD and maintainer to ros-orphaned-packages@googlegroups.com since original gmapping source and ROS openslam_gmapping package has been updated to the BSD-3 license, I think we have no reason to use CC for slam_gmapping package
  • Contributors: Kei Okada

1.3.10 (2018-01-23)

  • Install nodelet plugin descriptor file. (#56)
  • Contributors: Mikael Arguedas, gavanderhoorn

1.3.9 (2017-10-22)

  • remove unused file

  • add missing nodelet dependency to find_package

  • make rostest in CMakeLists optional (ros/rosdistro#3010)

  • Add nodelet implementation. (#41)

    * Add nodelet implementation. Add additional nodelet layer to mirror the node implementation. This allows the Slam GMapping library to be run as a nodelet instead. This would allow you to, for example, run it under the same nodelet manager as the nodelet producing the /scan output for greater efficiency.

    * Remove superfluous semicolons Removed superfluous semicolons and mildly clarified info stream output.

  • fix comment, change type from double to int (#40)

    • fix comment, change type from double to int
    • fix comment, iterations param is not double but int
  • Contributors: David Hodo, Kevin Wells, Lukas Bulwahn, Oscar Lima, Vincent Rabaud

1.3.8 (2015-07-31)

  • fix a test that would take too long sometimes
  • better verbosity
  • add a test for upside down lasers
  • add a test for symmetry
  • make sure the laser sent to gmapping is always centered
  • do not display warning message if scan is processed at some point
  • Contributors: Vincent Rabaud

1.3.7 (2015-07-04)

  • get replay to behave like live processing
  • Contributors: Vincent Rabaud

1.3.6 (2015-06-26)

  • Don't crash on exit from replay.
  • replay: Add "on_done" command line parameter. Example usage: ros run gmapping slam_gmapping_replay --scan_topic=/scan --bag_filename=/tmp/in.bag --on_done "rosrun map_server map_saver -f foo" _particles:=100 _maxUrange:=10
  • replay: Handle order-of-data-in-bag-file issues better at startup. Silently discard scans at startup that arrive prior to the TF frames required by those scans. TF can't interpolate from non-existant data, so discard scans that arrive with timestamps prior to the first TF frame. We do this expediently by discarding laser scans that throw ExtrapolationException's until/unless we successfully process our first scan. Similarly, ignore LookupException's at startup.
  • Fix indexing error for inverting scan.
  • add test dependencies
  • get replay test to pass
  • rename test

File truncated at 100 lines see the full file

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Recent questions tagged gmapping at Robotics Stack Exchange