Map server params update and refactoring (#265)
* Simplify some of the map server code * Use a YAML file to configure the map server. This allows the map server to be used as a standalone node or composed with other nodes into a single executable. Also, update the costmap_world_model to make sure its got the latest map from the map_server. * Rename the factory method to be createMapServer since that's what it's creating * Fixes for cpplint/uncrustify * Continue to simplify map server * Introduce a MapLoader that is used by the MapServer * Get the tests working again * Change the default resolution to what it was before * Add some comments * Update README for the map server to be consistent with recent code changes * Remove unneeded param from YAML file * Start a system YAML file seeded with the map server params * Remove obsolete dependency on yaml_cpp_vendor package * Reintroduce the factory pattern. Each instance of the map server will load a single map of a particular type. Based on the incoming map type parameter, the map server will create the corresponding map loader to load the file. * Remove author fields (rely on maintainer fields only) * Integrate feedback from the Naviation WG. Split the map-specific parameters and occupancy grid conversion parameters. The map parameters remain in the map YAML file and can reside with the map. The occupancy grid conversion parameters are parameters of the map server node. There can be multiple map nodes, each with different conversion parameters. * Update the map server README * Update sample YAML files * Fix a merge problem after rebasing * Update the nav2 launch file * Move the map parameters back to the map YAML file * Fix unintended change of resolution in YAML file * Update README again * Clarify a statement in the README
Showing
- nav2_map_server/test/test_constants/test_constants.h 0 additions, 1 deletionnav2_map_server/test/test_constants/test_constants.h
- nav2_map_server/test/test_launch_files/map_server_node.launch.py 2 additions, 1 deletion...p_server/test/test_launch_files/map_server_node.launch.py
- nav2_map_server/test/testmap.yaml 4 additions, 2 deletionsnav2_map_server/test/testmap.yaml
- nav2_map_server/test/unit/test_occ_grid.cpp 60 additions, 34 deletionsnav2_map_server/test/unit/test_occ_grid.cpp
Please register or sign in to comment