├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── Dockerfile ├── FindLibRT.cmake ├── LICENSE ├── README.md ├── code-of-conduct.md └── src ├── Angler.cpp ├── Angler.hpp ├── Contours.cpp ├── Contours.hpp ├── GsrTester.cpp ├── GsrTester.hpp ├── Printer.cpp ├── Printer.hpp ├── Reducer.cpp ├── Reducer.hpp ├── Tracker.cpp ├── Tracker.hpp ├── cluon-complete-v0.0.127.hpp ├── lightning.cpp ├── opendlv-standard-message-set-v0.9.6.odvd ├── python └── gsrtester.py └── tests ├── TestMain.cpp └── catch.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode/ 3 | export/ 4 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/Dockerfile -------------------------------------------------------------------------------- /FindLibRT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/FindLibRT.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /src/Angler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Angler.cpp -------------------------------------------------------------------------------- /src/Angler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Angler.hpp -------------------------------------------------------------------------------- /src/Contours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Contours.cpp -------------------------------------------------------------------------------- /src/Contours.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Contours.hpp -------------------------------------------------------------------------------- /src/GsrTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/GsrTester.cpp -------------------------------------------------------------------------------- /src/GsrTester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/GsrTester.hpp -------------------------------------------------------------------------------- /src/Printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Printer.cpp -------------------------------------------------------------------------------- /src/Printer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Printer.hpp -------------------------------------------------------------------------------- /src/Reducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Reducer.cpp -------------------------------------------------------------------------------- /src/Reducer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Reducer.hpp -------------------------------------------------------------------------------- /src/Tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Tracker.cpp -------------------------------------------------------------------------------- /src/Tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/Tracker.hpp -------------------------------------------------------------------------------- /src/cluon-complete-v0.0.127.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/cluon-complete-v0.0.127.hpp -------------------------------------------------------------------------------- /src/lightning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/lightning.cpp -------------------------------------------------------------------------------- /src/opendlv-standard-message-set-v0.9.6.odvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/opendlv-standard-message-set-v0.9.6.odvd -------------------------------------------------------------------------------- /src/python/gsrtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/python/gsrtester.py -------------------------------------------------------------------------------- /src/tests/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/tests/TestMain.cpp -------------------------------------------------------------------------------- /src/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Data-Engineering-Project/HEAD/src/tests/catch.hpp --------------------------------------------------------------------------------