├── .github └── workflows │ ├── build_and_test.yml │ └── industrial_ci_action.yml ├── .gitignore ├── CHANGELOG.rst ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── icons └── classes │ ├── ColorOccupancyGrid.png │ ├── OccupancyGrid.png │ ├── OccupancyGridStamped.png │ ├── OccupancyMap.png │ └── OccupancyMapStamped.png ├── include └── octomap_rviz_plugins │ ├── occupancy_grid_display.hpp │ └── occupancy_map_display.hpp ├── package.xml ├── plugins_description.xml └── src ├── occupancy_grid_display.cpp └── occupancy_map_display.cpp /.github/workflows/build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/.github/workflows/build_and_test.yml -------------------------------------------------------------------------------- /.github/workflows/industrial_ci_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/.github/workflows/industrial_ci_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/README.md -------------------------------------------------------------------------------- /icons/classes/ColorOccupancyGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/icons/classes/ColorOccupancyGrid.png -------------------------------------------------------------------------------- /icons/classes/OccupancyGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/icons/classes/OccupancyGrid.png -------------------------------------------------------------------------------- /icons/classes/OccupancyGridStamped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/icons/classes/OccupancyGridStamped.png -------------------------------------------------------------------------------- /icons/classes/OccupancyMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/icons/classes/OccupancyMap.png -------------------------------------------------------------------------------- /icons/classes/OccupancyMapStamped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/icons/classes/OccupancyMapStamped.png -------------------------------------------------------------------------------- /include/octomap_rviz_plugins/occupancy_grid_display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/include/octomap_rviz_plugins/occupancy_grid_display.hpp -------------------------------------------------------------------------------- /include/octomap_rviz_plugins/occupancy_map_display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/include/octomap_rviz_plugins/occupancy_map_display.hpp -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/package.xml -------------------------------------------------------------------------------- /plugins_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/plugins_description.xml -------------------------------------------------------------------------------- /src/occupancy_grid_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/src/occupancy_grid_display.cpp -------------------------------------------------------------------------------- /src/occupancy_map_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctoMap/octomap_rviz_plugins/HEAD/src/occupancy_map_display.cpp --------------------------------------------------------------------------------