├── Documentation.md ├── HAS_Converter.py ├── Licence.txt ├── Notice.txt ├── README.md ├── Tests ├── ReadMe.md └── TestRecordings.zip ├── galileo_has.pdf ├── galileo_has_decoder ├── __init__.py ├── binex_reading.py ├── conv.py ├── crc.py ├── file_write.py ├── has_classes.py ├── readers.py ├── resources │ └── genMatrix.txt ├── sbf_reading.py ├── serial_reading.py ├── ssr_classes.py ├── ssr_converter.py ├── ssr_formats.py ├── ssr_igs.py ├── ssr_rtcm.py ├── tcp_binex_reading.py ├── tcp_sbf_reading.py ├── tcp_server.py ├── utils.py ├── utils_binex.py ├── utils_sbf.py ├── utils_testing.py └── writers.py ├── reinstall.sh └── setup.py /Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/Documentation.md -------------------------------------------------------------------------------- /HAS_Converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/HAS_Converter.py -------------------------------------------------------------------------------- /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/Licence.txt -------------------------------------------------------------------------------- /Notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/Notice.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/README.md -------------------------------------------------------------------------------- /Tests/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/Tests/ReadMe.md -------------------------------------------------------------------------------- /Tests/TestRecordings.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/Tests/TestRecordings.zip -------------------------------------------------------------------------------- /galileo_has.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has.pdf -------------------------------------------------------------------------------- /galileo_has_decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galileo_has_decoder/binex_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/binex_reading.py -------------------------------------------------------------------------------- /galileo_has_decoder/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/conv.py -------------------------------------------------------------------------------- /galileo_has_decoder/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/crc.py -------------------------------------------------------------------------------- /galileo_has_decoder/file_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/file_write.py -------------------------------------------------------------------------------- /galileo_has_decoder/has_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/has_classes.py -------------------------------------------------------------------------------- /galileo_has_decoder/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/readers.py -------------------------------------------------------------------------------- /galileo_has_decoder/resources/genMatrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/resources/genMatrix.txt -------------------------------------------------------------------------------- /galileo_has_decoder/sbf_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/sbf_reading.py -------------------------------------------------------------------------------- /galileo_has_decoder/serial_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/serial_reading.py -------------------------------------------------------------------------------- /galileo_has_decoder/ssr_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/ssr_classes.py -------------------------------------------------------------------------------- /galileo_has_decoder/ssr_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/ssr_converter.py -------------------------------------------------------------------------------- /galileo_has_decoder/ssr_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/ssr_formats.py -------------------------------------------------------------------------------- /galileo_has_decoder/ssr_igs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/ssr_igs.py -------------------------------------------------------------------------------- /galileo_has_decoder/ssr_rtcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/ssr_rtcm.py -------------------------------------------------------------------------------- /galileo_has_decoder/tcp_binex_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/tcp_binex_reading.py -------------------------------------------------------------------------------- /galileo_has_decoder/tcp_sbf_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/tcp_sbf_reading.py -------------------------------------------------------------------------------- /galileo_has_decoder/tcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/tcp_server.py -------------------------------------------------------------------------------- /galileo_has_decoder/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/utils.py -------------------------------------------------------------------------------- /galileo_has_decoder/utils_binex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/utils_binex.py -------------------------------------------------------------------------------- /galileo_has_decoder/utils_sbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/utils_sbf.py -------------------------------------------------------------------------------- /galileo_has_decoder/utils_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/utils_testing.py -------------------------------------------------------------------------------- /galileo_has_decoder/writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/galileo_has_decoder/writers.py -------------------------------------------------------------------------------- /reinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/reinstall.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlsfi/HASlib/HEAD/setup.py --------------------------------------------------------------------------------