├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── design ├── design.md └── template │ ├── answer.ja.md │ ├── answer.ko.md │ ├── answer.md │ └── answer.zh-cn.md └── docs ├── en ├── .readthedocs.yaml ├── Makefile ├── make.bat └── source │ ├── answers │ ├── data │ │ ├── 001.rst │ │ ├── 003.rst │ │ ├── 004.rst │ │ └── 005.rst │ ├── hardware │ │ ├── 001.rst │ │ ├── 002.md │ │ └── 003.rst │ ├── hdmap │ │ ├── 001.rst │ │ ├── 003.rst │ │ └── 004.rst │ ├── misc │ │ ├── 001.rst │ │ ├── 002.rst │ │ ├── 003.rst │ │ ├── 004.rst │ │ └── 005.rst │ ├── perception │ │ ├── 001.rst │ │ ├── 002.rst │ │ └── 003.rst │ ├── planning │ │ └── 001.rst │ ├── simulation │ │ └── 001.rst │ └── transform │ │ └── 001.rst │ ├── conf.py │ ├── index.rst │ └── questions.rst ├── images ├── local_coordinate_system.png ├── vehicle_coordinate_system.jpg └── world_geodetic_system.png ├── ja ├── .readthedocs.yaml ├── Makefile ├── make.bat └── source │ ├── answers │ ├── data │ │ ├── 001.rst │ │ ├── 003.rst │ │ ├── 004.rst │ │ └── 005.rst │ ├── hardware │ │ ├── 001.rst │ │ ├── 002.md │ │ └── 003.rst │ ├── hdmap │ │ ├── 001.rst │ │ ├── 003.rst │ │ └── 004.rst │ ├── misc │ │ ├── 001.rst │ │ ├── 002.rst │ │ ├── 003.rst │ │ ├── 004.rst │ │ └── 005.rst │ ├── perception │ │ ├── 001.rst │ │ ├── 002.rst │ │ └── 003.rst │ ├── planning │ │ └── 001.rst │ ├── simulation │ │ └── 001.rst │ └── transform │ │ └── 001.rst │ ├── conf.py │ ├── index.rst │ └── questions.rst ├── ko ├── .readthedocs.yaml ├── Makefile ├── make.bat └── source │ ├── answers │ ├── data │ │ ├── 001.rst │ │ ├── 003.rst │ │ ├── 004.rst │ │ └── 005.rst │ ├── hardware │ │ ├── 001.rst │ │ ├── 002.md │ │ └── 003.rst │ ├── hdmap │ │ ├── 001.rst │ │ ├── 003.rst │ │ └── 004.rst │ ├── misc │ │ ├── 001.rst │ │ ├── 002.rst │ │ ├── 003.rst │ │ ├── 004.rst │ │ └── 005.rst │ ├── perception │ │ ├── 001.rst │ │ ├── 002.rst │ │ └── 003.rst │ ├── planning │ │ └── 001.rst │ ├── simulation │ │ └── 001.rst │ └── transform │ │ └── 001.rst │ ├── conf.py │ ├── index.rst │ └── questions.rst ├── requirements.txt └── zh-cn ├── .readthedocs.yaml ├── Makefile ├── make.bat └── source ├── answers ├── data │ ├── 001.rst │ ├── 003.rst │ ├── 004.rst │ └── 005.rst ├── hardware │ ├── 001.rst │ ├── 002.md │ └── 003.rst ├── hdmap │ ├── 001.rst │ ├── 003.rst │ └── 004.rst ├── misc │ ├── 001.rst │ ├── 002.rst │ ├── 003.rst │ ├── 004.rst │ └── 005.rst ├── perception │ ├── 001.md │ ├── 002.rst │ └── 003.rst ├── planning │ └── 001.md ├── simulation │ └── 001.md └── transform │ └── 001.rst ├── conf.py ├── index.rst └── questions.rst /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/README.md -------------------------------------------------------------------------------- /design/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/design/design.md -------------------------------------------------------------------------------- /design/template/answer.ja.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /design/template/answer.ko.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /design/template/answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/design/template/answer.md -------------------------------------------------------------------------------- /design/template/answer.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/design/template/answer.zh-cn.md -------------------------------------------------------------------------------- /docs/en/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/.readthedocs.yaml -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/make.bat -------------------------------------------------------------------------------- /docs/en/source/answers/data/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/data/001.rst -------------------------------------------------------------------------------- /docs/en/source/answers/data/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/data/003.rst -------------------------------------------------------------------------------- /docs/en/source/answers/data/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/data/004.rst -------------------------------------------------------------------------------- /docs/en/source/answers/data/005.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/data/005.rst -------------------------------------------------------------------------------- /docs/en/source/answers/hardware/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/hardware/001.rst -------------------------------------------------------------------------------- /docs/en/source/answers/hardware/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/hardware/002.md -------------------------------------------------------------------------------- /docs/en/source/answers/hardware/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/hardware/003.rst -------------------------------------------------------------------------------- /docs/en/source/answers/hdmap/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/hdmap/001.rst -------------------------------------------------------------------------------- /docs/en/source/answers/hdmap/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/hdmap/003.rst -------------------------------------------------------------------------------- /docs/en/source/answers/hdmap/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/hdmap/004.rst -------------------------------------------------------------------------------- /docs/en/source/answers/misc/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/misc/001.rst -------------------------------------------------------------------------------- /docs/en/source/answers/misc/002.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/misc/002.rst -------------------------------------------------------------------------------- /docs/en/source/answers/misc/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/misc/003.rst -------------------------------------------------------------------------------- /docs/en/source/answers/misc/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/misc/004.rst -------------------------------------------------------------------------------- /docs/en/source/answers/misc/005.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/misc/005.rst -------------------------------------------------------------------------------- /docs/en/source/answers/perception/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/perception/001.rst -------------------------------------------------------------------------------- /docs/en/source/answers/perception/002.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/perception/002.rst -------------------------------------------------------------------------------- /docs/en/source/answers/perception/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/perception/003.rst -------------------------------------------------------------------------------- /docs/en/source/answers/planning/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/planning/001.rst -------------------------------------------------------------------------------- /docs/en/source/answers/simulation/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/simulation/001.rst -------------------------------------------------------------------------------- /docs/en/source/answers/transform/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/answers/transform/001.rst -------------------------------------------------------------------------------- /docs/en/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/conf.py -------------------------------------------------------------------------------- /docs/en/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/index.rst -------------------------------------------------------------------------------- /docs/en/source/questions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/en/source/questions.rst -------------------------------------------------------------------------------- /docs/images/local_coordinate_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/images/local_coordinate_system.png -------------------------------------------------------------------------------- /docs/images/vehicle_coordinate_system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/images/vehicle_coordinate_system.jpg -------------------------------------------------------------------------------- /docs/images/world_geodetic_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/images/world_geodetic_system.png -------------------------------------------------------------------------------- /docs/ja/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/.readthedocs.yaml -------------------------------------------------------------------------------- /docs/ja/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/Makefile -------------------------------------------------------------------------------- /docs/ja/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/make.bat -------------------------------------------------------------------------------- /docs/ja/source/answers/data/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/data/001.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/data/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/data/003.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/data/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/data/004.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/data/005.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/data/005.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/hardware/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/hardware/001.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/hardware/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/hardware/002.md -------------------------------------------------------------------------------- /docs/ja/source/answers/hardware/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/hardware/003.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/hdmap/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/hdmap/001.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/hdmap/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/hdmap/003.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/hdmap/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/hdmap/004.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/misc/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/misc/001.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/misc/002.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/misc/002.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/misc/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/misc/003.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/misc/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/misc/004.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/misc/005.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/misc/005.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/perception/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/perception/001.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/perception/002.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/perception/002.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/perception/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/perception/003.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/planning/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/planning/001.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/simulation/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/simulation/001.rst -------------------------------------------------------------------------------- /docs/ja/source/answers/transform/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/answers/transform/001.rst -------------------------------------------------------------------------------- /docs/ja/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/conf.py -------------------------------------------------------------------------------- /docs/ja/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/index.rst -------------------------------------------------------------------------------- /docs/ja/source/questions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ja/source/questions.rst -------------------------------------------------------------------------------- /docs/ko/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/.readthedocs.yaml -------------------------------------------------------------------------------- /docs/ko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/Makefile -------------------------------------------------------------------------------- /docs/ko/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/make.bat -------------------------------------------------------------------------------- /docs/ko/source/answers/data/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/data/001.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/data/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/data/003.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/data/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/data/004.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/data/005.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/data/005.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/hardware/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/hardware/001.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/hardware/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/hardware/002.md -------------------------------------------------------------------------------- /docs/ko/source/answers/hardware/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/hardware/003.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/hdmap/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/hdmap/001.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/hdmap/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/hdmap/003.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/hdmap/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/hdmap/004.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/misc/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/misc/001.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/misc/002.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/misc/002.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/misc/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/misc/003.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/misc/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/misc/004.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/misc/005.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/misc/005.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/perception/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/perception/001.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/perception/002.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/perception/002.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/perception/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/perception/003.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/planning/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/planning/001.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/simulation/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/simulation/001.rst -------------------------------------------------------------------------------- /docs/ko/source/answers/transform/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/answers/transform/001.rst -------------------------------------------------------------------------------- /docs/ko/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/conf.py -------------------------------------------------------------------------------- /docs/ko/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/index.rst -------------------------------------------------------------------------------- /docs/ko/source/questions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/ko/source/questions.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | myst_parser 2 | sphinx_rtd_theme 3 | -------------------------------------------------------------------------------- /docs/zh-cn/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/.readthedocs.yaml -------------------------------------------------------------------------------- /docs/zh-cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/Makefile -------------------------------------------------------------------------------- /docs/zh-cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/make.bat -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/data/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/data/001.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/data/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/data/003.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/data/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/data/004.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/data/005.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/data/005.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/hardware/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/hardware/001.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/hardware/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/hardware/002.md -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/hardware/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/hardware/003.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/hdmap/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/hdmap/001.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/hdmap/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/hdmap/003.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/hdmap/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/hdmap/004.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/misc/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/misc/001.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/misc/002.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/misc/002.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/misc/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/misc/003.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/misc/004.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/misc/004.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/misc/005.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/misc/005.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/perception/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/perception/001.md -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/perception/002.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/perception/002.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/perception/003.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/perception/003.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/planning/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/planning/001.md -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/simulation/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/simulation/001.md -------------------------------------------------------------------------------- /docs/zh-cn/source/answers/transform/001.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/answers/transform/001.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/conf.py -------------------------------------------------------------------------------- /docs/zh-cn/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/index.rst -------------------------------------------------------------------------------- /docs/zh-cn/source/questions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApolloAuto/Apollo-1000-questions/HEAD/docs/zh-cn/source/questions.rst --------------------------------------------------------------------------------