Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gpstest | 1,295 | a month ago | 74 | apache-2.0 | Kotlin | |||||
The #1 open-source Android GNSS/GPS test program | ||||||||||
Opencpn | 828 | 18 hours ago | 177 | gpl-2.0 | C | |||||
A concise ChartPlotter/Navigator. A cross-platform ship-borne GUI application supporting * GPS/GPDS Postition Input * BSB Raster Chart Display * S57 Vector ENChart Display * AIS Input Decoding * Waypoint Autopilot Navigation | ||||||||||
Multi_sensor_fusion | 633 | 4 months ago | 1 | gpl-3.0 | C++ | |||||
Multi-Sensor Fusion (GNSS, IMU, Camera) 多源多传感器融合定位 GPS/INS组合导航 PPP/INS紧组合 | ||||||||||
Trail Sense | 606 | a day ago | 361 | mit | Kotlin | |||||
An Android app that uses your phone's sensors to assist with wilderness treks or survival situations. | ||||||||||
Navit | 489 | 3 months ago | 143 | other | C | |||||
The open source (GPL v2) turn-by-turn navigation software for many OS | ||||||||||
Navego | 473 | a month ago | 9 | other | MATLAB | |||||
NaveGo: an open-source MATLAB/GNU Octave toolbox for processing integrated navigation systems and performing inertial sensors analysis. | ||||||||||
Waypoint_nav | 244 | 2 months ago | 24 | C++ | ||||||
This package performs outdoor GPS waypoint navigation using move_base, robot_localization, gmapping and others. It can navigate while building a map, avoiding obstacles, and can navigate continuously between each goal. | ||||||||||
Marine Api | 224 | 16 | 2 | 3 months ago | 8 | July 06, 2019 | 11 | lgpl-3.0 | Java | |
Java Marine API - NMEA 0183 library for Java | ||||||||||
Smartnavi | 219 | 3 years ago | 10 | other | Java | |||||
SmartNavi offers OpenSource, step-based and GPS independent navigation for Android. smartnavi-app.com | ||||||||||
My Bareboat | 162 | 8 days ago | apache-2.0 | C | ||||||
Opensource hardware and software solutions for sailing and sailboats |
Project: | LEOGPS |
---|---|
Github: | sammmlow/LEOGPS |
Documents: | https://leogps.readthedocs.io/en/latest/ |
Version: | 1.3 (Latest) |
Author: | Samuel Y. W. Low |
---|
LEOGPS is an open-source Python software which performs relative satellite navigation between two formation flying satellites in low Earth orbit (LEO), with the objective of high accuracy relative positioning via double differential GPS. It uses a TKinter GUI to assist in processing your GPS measurements, and also provides a number of well documented functions, with minimal external package dependencies, useful for your processing (see advanced references in the documentation).
LEOGPS is not a PyPI packaged Python project. There is no installation possible through "pip" or via "conda" for Anaconda users. Simply performing a git clone of this repository is all you need to get started.
LEOGPS currently supports only observations from the GPS constellation (L1/L2 frequency), with observation files in RINEX v2.XX format. LEOGPS also uses the precise ephemeris (.EPH) and clock bias and drift files (.CLK) provided by the University of Bern, Center for Orbit Determination in Europe (CODE). As such, the coordinate frame used in the relative positioning is the International Terrestrial Reference Frame (ITRS) which is an Earth-Centered Earth-Fixed (ECEF) frame. Since the ephemeris files and RINEX v2 observations default to GPS Time, it is very important to also note that the time scale used in LEOGPS output files is GPS Time (as opposed to UTC).
This project also gives sincere appreciation and credit to the University of Bern, for their provision of the CODE FTP.
First, clone this repository by running in your terminal (or Git Bash):
git clone https://github.com/sammmlow/LEOGPS.git
Second, you should do a pip install in your terminal (or Anaconda prompt) of Martin Valgur's Pythonic translation of Hatanaka (de)compression in Python as well as the ncompress library by running:
pip install hatanaka
pip install ncompress
The Hatanaka library in Python was contributed in v1.1, and replaces the older "RNX2CRX" (and GZIP, thanks to the ncompress library) which are Windows-only executables, making the (de)compression possible across all platforms.
The user can then run the application by running 'leogps.py', in the main directory, and you should see the LEOGPS GUI launch:
Next, you can paste the two RINEX observation files of your LEO satellite pairs in the inputs folder, key in your configuration parameters, and hit the 'Run LEOGPS' button. That's it! LEOGPS will automatically source for the precise daily ephemeris and clock solutions, and process the raw GPS measurements to produce a report file in "LEOGPS_Results.txt" comprising:
LEOGPS will also output plots and reports on the interpolated GPS satellite ephemeris and clock biases.
For full documentation, please refer to the LEOGPS Read-The-Docs.
Recommended Python Version > 3.6
Core libraries necessary: NumPy (v1.14 and above), matplotlib, hatanaka
Standard Python libaries: os, copy, math, datetime, decimal, shutil, subprocess, warnings, urllib.request
Libraries for GUI: PIL, tkinter
Tested on Python version 3.6.5 (Anaconda with default packages).
If you have any queries feel free to reach out to me at:
Last Modified on 20-Sep-2021