Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.

Commit 49799a8

Browse files
committed
license error: updated copyright header
1 parent 4949f7f commit 49799a8

4 files changed

Lines changed: 9 additions & 31 deletions

File tree

easynav_pointcloud_maps_builder/include/easynav_pointcloud_maps_builder/PointcloudMapsBuilderNode.hpp

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
// Copyright 2025 Intelligent Robotics Lab
22
//
3-
// This file is part of the project Easy Navigation (EasyNav in short)
4-
// licensed under the GNU General Public License v3.0.
5-
// See <http://www.gnu.org/licenses/> for details.
6-
//
7-
// Easy Navigation program is free software: you can redistribute it and/or modify
3+
// This program is free software: you can redistribute it and/or modify
84
// it under the terms of the GNU General Public License as published by
95
// the Free Software Foundation, either version 3 of the License, or
106
// (at your option) any later version.
@@ -15,8 +11,7 @@
1511
// GNU General Public License for more details.
1612
//
1713
// You should have received a copy of the GNU General Public License
18-
// along with this program. If not, see <http://www.gnu.org/licenses/>.
19-
14+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2015

2116
/// \file
2217
/// \brief Definition of the PointcloudMapsBuilderNode class.

easynav_pointcloud_maps_builder/src/easynav_pointcloud_maps_builder/PointcloudMapsBuilderNode.cpp

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
// Copyright 2025 Intelligent Robotics Lab
22
//
3-
// This file is part of the project Easy Navigation (EasyNav in short)
4-
// licensed under the GNU General Public License v3.0.
5-
// See <http://www.gnu.org/licenses/> for details.
6-
//
7-
// Easy Navigation program is free software: you can redistribute it and/or modify
3+
// This program is free software: you can redistribute it and/or modify
84
// it under the terms of the GNU General Public License as published by
95
// the Free Software Foundation, either version 3 of the License, or
106
// (at your option) any later version.
@@ -15,9 +11,7 @@
1511
// GNU General Public License for more details.
1612
//
1713
// You should have received a copy of the GNU General Public License
18-
// along with this program. If not, see <http://www.gnu.org/licenses/>.
19-
20-
14+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2115
/// \file
2216
/// \brief Implementation of the PointcloudMapsBuilderNode class.
2317

easynav_pointcloud_maps_builder/src/pointcloud_maps_builder_main.cpp

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
// Copyright 2025 Intelligent Robotics Lab
22
//
3-
// This file is part of the project Easy Navigation (EasyNav in short)
4-
// licensed under the GNU General Public License v3.0.
5-
// See <http://www.gnu.org/licenses/> for details.
6-
//
7-
// Easy Navigation program is free software: you can redistribute it and/or modify
3+
// This program is free software: you can redistribute it and/or modify
84
// it under the terms of the GNU General Public License as published by
95
// the Free Software Foundation, either version 3 of the License, or
106
// (at your option) any later version.
@@ -15,8 +11,7 @@
1511
// GNU General Public License for more details.
1612
//
1713
// You should have received a copy of the GNU General Public License
18-
// along with this program. If not, see <http://www.gnu.org/licenses/>.
19-
14+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2015

2116
#include "rclcpp/rclcpp.hpp"
2217
#include "rclcpp_lifecycle/lifecycle_node.hpp"

easynav_pointcloud_maps_builder/tests/pointcloud_maps_builder_tests.cpp

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
// Copyright 2025 Intelligent Robotics Lab
22
//
3-
// This file is part of the project Easy Navigation (EasyNav in short)
4-
// licensed under the GNU General Public License v3.0.
5-
// See <http://www.gnu.org/licenses/> for details.
6-
//
7-
// Easy Navigation program is free software: you can redistribute it and/or modify
3+
// This program is free software: you can redistribute it and/or modify
84
// it under the terms of the GNU General Public License as published by
95
// the Free Software Foundation, either version 3 of the License, or
106
// (at your option) any later version.
@@ -15,8 +11,7 @@
1511
// GNU General Public License for more details.
1612
//
1713
// You should have received a copy of the GNU General Public License
18-
// along with this program. If not, see <http://www.gnu.org/licenses/>.
19-
14+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2015

2116
#include "gtest/gtest.h"
2217
#include "rclcpp/rclcpp.hpp"
@@ -44,8 +39,7 @@ TEST_F(PointcloudMapsBuilderTest, test_configure_success)
4439
{
4540
auto options = rclcpp::NodeOptions();
4641

47-
options.append_parameter_override("map_types", std::vector<std::string>{"pcl"});
48-
options.append_parameter_override("sensor_topic", "points");
42+
options.append_parameter_override("downsample_resolution", 0.2);
4943

5044
auto node = std::make_shared<easynav::PointcloudMapsBuilderNode>(options);
5145

0 commit comments

Comments
 (0)