├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── assignments └── DujardinArthurGNSS.zip ├── gnsstools ├── VERSION.md ├── __init__.py ├── const.py ├── gnsstime.py ├── logger.py ├── orbits │ ├── __init__.py │ ├── orbit.py │ └── orbit_sp3.py ├── process.py ├── rinex │ ├── __init__.py │ ├── datasets.py │ ├── header.py │ ├── nav.py │ ├── obs2.py │ ├── obs3.py │ ├── reader.py │ ├── sp3.py │ └── utils.py ├── satellites │ ├── __init__.py │ ├── funtional.py │ ├── galileo.py │ ├── glonass.py │ ├── gps.py │ └── satellite.py ├── trilateration.py └── utils.py ├── media ├── logo.png ├── rinex2_obs.png ├── rinex3_nav.png └── rinex3_sp3.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/README.md -------------------------------------------------------------------------------- /assignments/DujardinArthurGNSS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/assignments/DujardinArthurGNSS.zip -------------------------------------------------------------------------------- /gnsstools/VERSION.md: -------------------------------------------------------------------------------- 1 | 0.0.1 -------------------------------------------------------------------------------- /gnsstools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/__init__.py -------------------------------------------------------------------------------- /gnsstools/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/const.py -------------------------------------------------------------------------------- /gnsstools/gnsstime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/gnsstime.py -------------------------------------------------------------------------------- /gnsstools/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/logger.py -------------------------------------------------------------------------------- /gnsstools/orbits/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/orbits/__init__.py -------------------------------------------------------------------------------- /gnsstools/orbits/orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/orbits/orbit.py -------------------------------------------------------------------------------- /gnsstools/orbits/orbit_sp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/orbits/orbit_sp3.py -------------------------------------------------------------------------------- /gnsstools/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/process.py -------------------------------------------------------------------------------- /gnsstools/rinex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/__init__.py -------------------------------------------------------------------------------- /gnsstools/rinex/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/datasets.py -------------------------------------------------------------------------------- /gnsstools/rinex/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/header.py -------------------------------------------------------------------------------- /gnsstools/rinex/nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/nav.py -------------------------------------------------------------------------------- /gnsstools/rinex/obs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/obs2.py -------------------------------------------------------------------------------- /gnsstools/rinex/obs3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/obs3.py -------------------------------------------------------------------------------- /gnsstools/rinex/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/reader.py -------------------------------------------------------------------------------- /gnsstools/rinex/sp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/sp3.py -------------------------------------------------------------------------------- /gnsstools/rinex/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/rinex/utils.py -------------------------------------------------------------------------------- /gnsstools/satellites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/satellites/__init__.py -------------------------------------------------------------------------------- /gnsstools/satellites/funtional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/satellites/funtional.py -------------------------------------------------------------------------------- /gnsstools/satellites/galileo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/satellites/galileo.py -------------------------------------------------------------------------------- /gnsstools/satellites/glonass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/satellites/glonass.py -------------------------------------------------------------------------------- /gnsstools/satellites/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/satellites/gps.py -------------------------------------------------------------------------------- /gnsstools/satellites/satellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/satellites/satellite.py -------------------------------------------------------------------------------- /gnsstools/trilateration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/trilateration.py -------------------------------------------------------------------------------- /gnsstools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/gnsstools/utils.py -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/rinex2_obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/media/rinex2_obs.png -------------------------------------------------------------------------------- /media/rinex3_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/media/rinex3_nav.png -------------------------------------------------------------------------------- /media/rinex3_sp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/media/rinex3_sp3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurdjn/gnsstools/HEAD/requirements.txt --------------------------------------------------------------------------------