-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add license header and SPDX-License-Identifier
Signed-off-by: hoangtungdinh <[email protected]>
- Loading branch information
1 parent
ddc58d8
commit cd21b79
Showing
48 changed files
with
288 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# Copyright 2024, ASAM e.V. | ||
# This Source Code Form is subject to the terms of the Mozilla | ||
# Public License, v. 2.0. If a copy of the MPL was not distributed | ||
# with this file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
from . import constants as constants | ||
from . import checks as checks | ||
from . import basic_preconditions as basic_preconditions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# Copyright 2024, ASAM e.V. | ||
# This Source Code Form is subject to the terms of the Mozilla | ||
# Public License, v. 2.0. If a copy of the MPL was not distributed | ||
# with this file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
from qc_opendrive import main | ||
|
||
main.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# Copyright 2024, ASAM e.V. | ||
# This Source Code Form is subject to the terms of the Mozilla | ||
# Public License, v. 2.0. If a copy of the MPL was not distributed | ||
# with this file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
from . import models as models | ||
from . import utils as utils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/geometry/road_geometry_parampoly3_arclength_range.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/geometry/road_geometry_parampoly3_length_match.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/geometry/road_geometry_parampoly3_normalized_range.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/geometry/road_lane_border_overlap_with_inner_lanes.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# Copyright 2024, ASAM e.V. | ||
# This Source Code Form is subject to the terms of the Mozilla | ||
# Public License, v. 2.0. If a copy of the MPL was not distributed | ||
# with this file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
from . import ( | ||
performance_avoid_redundant_info as performance_avoid_redundant_info, | ||
) |
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/performance/performance_avoid_redundant_info.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# Copyright 2024, ASAM e.V. | ||
# This Source Code Form is subject to the terms of the Mozilla | ||
# Public License, v. 2.0. If a copy of the MPL was not distributed | ||
# with this file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
from . import valid_schema as valid_schema |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/junctions_connection_connect_road_no_incoming_road.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/junctions_connection_one_connection_element.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/junctions_connection_one_link_to_incoming.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/road_lane_access_no_mix_of_deny_or_allow.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/road_lane_level_true_one_side.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/road_lane_link_lanes_across_lane_sections.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/road_lane_link_new_lane_appear.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/road_lane_link_zero_width_at_end.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/road_lane_link_zero_width_at_start.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
qc_opendrive/checks/semantic/road_linkage_is_junction_needed.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# Copyright 2024, ASAM e.V. | ||
# This Source Code Form is subject to the terms of the Mozilla | ||
# Public License, v. 2.0. If a copy of the MPL was not distributed | ||
# with this file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
from . import ( | ||
lane_smoothness_contact_point_no_horizontal_gaps as lane_smoothness_contact_point_no_horizontal_gaps, | ||
) |
Oops, something went wrong.