README
easynav_octomap_maps_manager
Description
Maps Manager that maintains an OctoMap (probabilistic 3D occupancy tree), supports filter plugins (e.g., inflation and obstacle filters), and exposes the map through ROS 2 topics. This README documents plugin-level parameters only.
Supported ROS 2 Distributions
Distribution |
Status |
|---|---|
kilted |
|
rolling |
Plugin (pluginlib)
Plugin Name:
easynav_octomap_maps_manager/OctomapMapsManagerType:
easynav::octomap::OctomapMapsManagerBase Class:
easynav::MapsManagerBaseLibrary:
easynav_octomap_maps_managerDescription: Maintains an OctoMap instance, handles map loading/import, point-cloud ingestion, and filter application.
Parameters
Plugin Parameters
The current code (OctomapMapsManager.cpp) has the high-level parameter declarations for package and map paths commented out. Active runtime parameters are therefore limited to filter plugin namespaces populated by entries in filters (if/when enabled). Until the declarations are restored, only filter-local parameters are honored.
Filter Parameters
Each entry in <plugin>.filters defines a sub-namespace <plugin>.<filter> with at least the key plugin, plus any specific parameters.
InflationFilter
Name |
Type |
Default |
Description |
|---|---|---|---|
|
|
|
Inflation radius (m) used to expand occupied cells. |
|
|
|
Exponential decay controlling the reduction of cost with distance. |
|
|
|
Inscribed radius (m) used by the inflation model. |
ObstacleFilter
This filter does not declare additional ROS parameters apart from plugin.
Example Configuration
maps_manager_node:
ros__parameters:
map_types: [octomap]
octomap:
plugin: easynav_octomap_maps_manager/OctomapMapsManager
package: my_maps_pkg
octomap_path_file: maps/site.pcd
filters: [inflation, obstacles]
inflation:
plugin: easynav_octomap_maps_manager/InflationFilter
inflation_radius: 0.3
cost_scaling_factor: 3.0
inscribed_radius: 0.3
obstacles:
plugin: easynav_octomap_maps_manager/ObstacleFilter
Interfaces (Topics and Services)
Subscriptions and Publications
Direction |
Topic |
Type |
Purpose |
QoS |
|---|---|---|---|---|
Publisher |
|
|
Publishes the current OctoMap. |
depth=1 |
Subscription |
|
|
Input point cloud used to build/update the OctoMap. |
depth=100 |
Services
Direction |
Service |
Type |
Purpose |
|---|---|---|---|
Service Server |
|
|
Saves the current OctoMap to disk. |
TF Frames
Role |
Transform |
Notes |
|---|---|---|
Publishes |
— |
This manager does not broadcast TF; outputs are stamped using the configured frame(s) in the map data. |
License
Apache-2.0