Serialize state before shutdown (#502)

master
Jihoon Lee 2017-09-29 14:44:07 +02:00 committed by Damon Kohler
parent 3fab4ad6b6
commit 92fefe3f7e
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,8 @@ DEFINE_string(map_filename, "", "If non-empty, filename of a map to load.");
DEFINE_bool(
start_trajectory_with_default_topics, true,
"Enable to immediately start the first trajectory with default topics.");
DEFINE_string(save_map_filename, "",
"If non-empty, serialize state and write it to disk before shutting down.");
namespace cartographer_ros {
namespace {
@ -57,6 +59,10 @@ void Run() {
node.FinishAllTrajectories();
node.RunFinalOptimization();
if (!FLAGS_save_map_filename.empty()) {
node.SerializeState(FLAGS_save_map_filename);
}
}
} // namespace