Skip to content

Commit 77749eb

Browse files
3: Change the license
1 parent 9e137df commit 77749eb

File tree

24 files changed

+326
-45
lines changed

24 files changed

+326
-45
lines changed

planning/mapless_architecture/autoware_hmi/include/autoware/hmi/hmi_node.hpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#ifndef AUTOWARE__HMI__HMI_NODE_HPP_
416
#define AUTOWARE__HMI__HMI_NODE_HPP_
517

planning/mapless_architecture/autoware_hmi/launch/hmi.launch.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
# Copyright 2024 driveblocks GmbH
2-
# driveblocks proprietary license
1+
# Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
#     http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
315
from launch import LaunchDescription
416
from launch_ros.actions import Node
517

planning/mapless_architecture/autoware_hmi/src/hmi_node.cpp

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
314

415
#include "autoware/hmi/hmi_node.hpp"
516

planning/mapless_architecture/autoware_hmi/test/gtest_main.cpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#include "gtest/gtest.h"
416

517
int main(int argc, char ** argv)

planning/mapless_architecture/autoware_local_map_provider/include/autoware/local_map_provider/local_map_provider_node.hpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#ifndef AUTOWARE__LOCAL_MAP_PROVIDER__LOCAL_MAP_PROVIDER_NODE_HPP_
416
#define AUTOWARE__LOCAL_MAP_PROVIDER__LOCAL_MAP_PROVIDER_NODE_HPP_
517

planning/mapless_architecture/autoware_local_map_provider/launch/local_map_provider.launch.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
# Copyright 2024 driveblocks GmbH
2-
# driveblocks proprietary license
1+
# Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
#     http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
315
from launch import LaunchDescription
416
from launch_ros.actions import Node
517

planning/mapless_architecture/autoware_local_map_provider/src/local_map_provider_node.cpp

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
314

415
#include "autoware/local_map_provider/local_map_provider_node.hpp"
516

planning/mapless_architecture/autoware_local_map_provider/test/gtest_main.cpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#include "gtest/gtest.h"
416

517
int main(int argc, char ** argv)

planning/mapless_architecture/autoware_local_mission_planner/include/autoware/local_mission_planner/mission_planner_node.hpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#ifndef AUTOWARE__LOCAL_MISSION_PLANNER__MISSION_PLANNER_NODE_HPP_
416
#define AUTOWARE__LOCAL_MISSION_PLANNER__MISSION_PLANNER_NODE_HPP_
517

planning/mapless_architecture/autoware_local_mission_planner/launch/mission_planner.launch.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
# Copyright 2024 driveblocks GmbH
2-
# driveblocks proprietary license
1+
# Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
#     http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
315
import os
416

517
from ament_index_python.packages import get_package_share_directory

planning/mapless_architecture/autoware_local_mission_planner/launch/mission_planner_compose.launch.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
# Copyright 2024 driveblocks GmbH
2-
# driveblocks proprietary license
1+
# Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
#     http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
315
from pathlib import Path
416

517
from ament_index_python.packages import get_package_share_directory

planning/mapless_architecture/autoware_local_mission_planner/src/mission_planner_node.cpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#include "autoware/local_mission_planner/mission_planner_node.hpp"
416

517
#include "autoware/local_mission_planner_common/helper_functions.hpp"

planning/mapless_architecture/autoware_local_mission_planner/test/gtest_main.cpp

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
314

415
#include "gtest/gtest.h"
516
#include "include/test_mission_planner_core.hpp"

planning/mapless_architecture/autoware_local_mission_planner/test/include/test_mission_planner_core.hpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#ifndef TEST_MISSION_PLANNER_CORE_HPP_
416
#define TEST_MISSION_PLANNER_CORE_HPP_
517

planning/mapless_architecture/autoware_local_mission_planner/test/src/test_mission_planner_core.cpp

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
314

415
#include "autoware/local_mission_planner/mission_planner_node.hpp"
516
#include "autoware/local_mission_planner_common/helper_functions.hpp"

planning/mapless_architecture/autoware_local_mission_planner_common/include/autoware/local_mission_planner_common/helper_functions.hpp

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#ifndef AUTOWARE__LOCAL_MISSION_PLANNER_COMMON__HELPER_FUNCTIONS_HPP_
416
#define AUTOWARE__LOCAL_MISSION_PLANNER_COMMON__HELPER_FUNCTIONS_HPP_
517

planning/mapless_architecture/autoware_local_mission_planner_common/src/helper_functions.cpp

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#include "autoware/local_mission_planner_common/helper_functions.hpp"
416

517
#include "lanelet2_core/geometry/Lanelet.h"

planning/mapless_architecture/autoware_local_mission_planner_common/test/gtest_main.cpp

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#include "gtest/gtest.h"
416

517
/**

planning/mapless_architecture/autoware_mission_lane_converter/include/autoware/mission_lane_converter/mission_lane_converter_node.hpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright 2024 driveblocks GmbH
2-
// driveblocks proprietary license
1+
// Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
//      http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
315
#ifndef AUTOWARE__MISSION_LANE_CONVERTER__MISSION_LANE_CONVERTER_NODE_HPP_
416
#define AUTOWARE__MISSION_LANE_CONVERTER__MISSION_LANE_CONVERTER_NODE_HPP_
517

planning/mapless_architecture/autoware_mission_lane_converter/launch/mission_lane_converter.launch.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
# Copyright 2024 driveblocks GmbH
2-
# driveblocks proprietary license
1+
# Copyright 2024 driveblocks GmbH, authors: Simon Eisenmann, Thomas Herrmann
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
#     http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
315
import os
416

517
from ament_index_python.packages import get_package_share_directory

0 commit comments

Comments
 (0)