Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(autoware_lanelet2_map_validator): introduce autoware_lanelet2_map_validator #118

Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
1d9f97e
introduce autoware_lanelet2_map_validator to autoware_tools
TaikiYamada4 Sep 13, 2024
43d2441
wrote description a little to README.md
TaikiYamada4 Sep 13, 2024
0419b74
style(pre-commit): autofix
pre-commit-ci[bot] Sep 13, 2024
37daad6
Restore commented out parts.
TaikiYamada4 Sep 13, 2024
b6d8b36
style(pre-commit): autofix
pre-commit-ci[bot] Sep 13, 2024
77416f2
Separate validation rules to samller pieces.
TaikiYamada4 Sep 17, 2024
ebefd7c
Split the validation code into smaller pieces.
TaikiYamada4 Sep 19, 2024
ea38dd1
Fixed test codes to use the separated codes
TaikiYamada4 Sep 19, 2024
e091ff6
Removed unused code which are already divided to smaller codes.
TaikiYamada4 Sep 19, 2024
359f359
Rename new_main.cpp to main.cpp
TaikiYamada4 Sep 19, 2024
e622c91
style(pre-commit): autofix
pre-commit-ci[bot] Sep 20, 2024
37489ec
Wrote detailed README.md
TaikiYamada4 Sep 27, 2024
b653c84
Fixed commit mistake
TaikiYamada4 Sep 27, 2024
27b354d
Renew input command option to `-i` from `-r`.
TaikiYamada4 Sep 27, 2024
9014a3c
style(pre-commit): autofix
pre-commit-ci[bot] Sep 27, 2024
fcbc7d8
Fixed long to uint64_t
TaikiYamada4 Sep 30, 2024
1685e7e
Fixed spelling
TaikiYamada4 Sep 30, 2024
077e7e6
style(pre-commit): autofix
pre-commit-ci[bot] Sep 30, 2024
18524be
Fixed typo
TaikiYamada4 Sep 30, 2024
dfdb4f0
Split long lines in the code
TaikiYamada4 Sep 30, 2024
ef09205
style(pre-commit): autofix
pre-commit-ci[bot] Sep 30, 2024
4e42996
Changed the entire structure.
TaikiYamada4 Sep 30, 2024
f9a16da
style(pre-commit): autofix
pre-commit-ci[bot] Sep 30, 2024
147ba6a
Fixed pre-commit.ci related stuff
TaikiYamada4 Sep 30, 2024
c14477e
Write more details about the relationship to lanelet2_validation.
TaikiYamada4 Oct 1, 2024
315dbf0
Added figure of the architecture
TaikiYamada4 Oct 3, 2024
2f7d839
Change the input/output to JSON
TaikiYamada4 Oct 3, 2024
f5ec766
Revised architecture image of autoware_lanelet2_map_validator
TaikiYamada4 Oct 10, 2024
8a2a8c2
fixed typo
TaikiYamada4 Oct 10, 2024
8f15908
Renew year numbers
TaikiYamada4 Oct 15, 2024
ef2f5ad
Fixed dependency
TaikiYamada4 Oct 15, 2024
b72177d
Fixed pointed out issues
TaikiYamada4 Oct 25, 2024
d16b54b
Improve error handling
TaikiYamada4 Oct 25, 2024
8b93027
Avoid clang format
TaikiYamada4 Oct 25, 2024
c2a437c
Removed redundant process.
TaikiYamada4 Oct 28, 2024
6f47702
Added approaches to the documents
TaikiYamada4 Oct 28, 2024
c114991
Fixed typo
TaikiYamada4 Oct 28, 2024
fe9d19a
Removed catch and improve io error handling
TaikiYamada4 Oct 28, 2024
98b4ee6
Fixed grammatical error.
TaikiYamada4 Oct 28, 2024
b405d14
Added stop_line validator to the table in the main README.md
TaikiYamada4 Oct 28, 2024
4570bbf
Renamed lib to common.
TaikiYamada4 Oct 28, 2024
118596e
Removed redundant under score
TaikiYamada4 Oct 28, 2024
d1e0a26
Removed redundant underscore again
TaikiYamada4 Oct 28, 2024
074c4f2
Changed years.
TaikiYamada4 Oct 29, 2024
2c9dca1
Removed underscore from test_regulatory_element_details.cpp
TaikiYamada4 Oct 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed redundant under score
Signed-off-by: TaikiYamada4 <taiki.yamada@tier4.jp>
  • Loading branch information
TaikiYamada4 committed Oct 28, 2024
commit 118596e7034d1abc7d908abae2a9ade88bccf1ae
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ TEST_F(TestSuite, MissingRegulatoryElementOfCrosswalk) // NOLINT for gtest
LaneletMapPtr test_map_ptr = lanelet::utils::createMap({cw_no_reg_elem});
addTestMap(test_map_ptr);

lanelet::validation::MissingRegulatoryElementsForCrosswalksValidator checker_;
lanelet::validation::MissingRegulatoryElementsForCrosswalksValidator checker;
const auto & issues = checker_(*test_map_ptr);

uint8_t expected_num_issues = 1;
Expand Down
Loading