-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V0.16 #235
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gwbres
added
enhancement
New feature provided
performance
Performance enhancement
dependencies
Pull requests that update a dependency file
bug-fix
Fix proposal
labels
Apr 23, 2024
larsnaesbye
approved these changes
Apr 23, 2024
lnicola
approved these changes
Apr 24, 2024
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug-fix
Fix proposal
dependencies
Pull requests that update a dependency file
documentation
Improvements or additions to documentation
enhancement
New feature provided
performance
Performance enhancement
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
RINEX V0.16 comes with many improvements.
Clock RINEX
This file format is now correctly supported and we can take advantage of it for precise positioning.
It is also added to analysis opmodes, try this for Clock RINEX | SP3 Clock and BRDC Clock comparison for example
./target/release/rinex-cli
-f test_resources/NAV/V3/ESBC00DNK_R_20201770000_01D_MN.gz
-f test_resources/CLK/V3/GRG0MGXFIN_20201770000_01D_30S_CLK.CLK.gz
-f test_resources/SP3/V3/GRG0MGXFIN_20201770000_01D_15M_ORB.SP3.gz
-P G15,G16,G31 \
-g --clk
PPP processing time
RTK-RS core upgraded to V0.5: 50x computation speed improvement.
The following now runs in about 3sec on my computer, against 2'30 previously
./target/release/rinex-cli
-f test_resources/CRNX/V3/ESBC00DNK_R_20201770000_01D_30S_MO.crx.gz
-f test_resources/NAV/V3/ESBC00DNK_R_20201770000_01D_MN.gz
-f test_resources/CLK/V3/GRG0MGXFIN_20201770000_01D_30S_CLK.CLK.gz
-f test_resources/SP3/V3/GRG0MGXFIN_20201770000_01D_15M_ORB.SP3.gz
-P GPS
-p -c rinex-cli/config/rtk/gpst_spp_basic.json | tee logs.txt
SSI/SNR against SV elevation
SSI against SV Elevation visualization to emphasize their correlation
Code PPP
New positioning method: Code Based PPP which gives the best results ever obtained.
Run this to try the new strategy:
./target/release/rinex-cli
-f test_resources/CRNX/V3/ESBC00DNK_R_20201770000_01D_30S_MO.crx.gz
-f test_resources/NAV/V3/ESBC00DNK_R_20201770000_01D_MN.gz
-f test_resources/CLK/V3/GRG0MGXFIN_20201770000_01D_30S_CLK.CLK.gz
-f test_resources/SP3/V3/GRG0MGXFIN_20201770000_01D_15M_ORB.SP3.gz
-P GAL
-p -c rinex-cli/config/rtk/gpst_ppp_basic.json | tee logs.txt
Code based PPP + CGGTTS
./target/release/rinex-cli
-f test_resources/CRNX/V3/ESBC00DNK_R_20201770000_01D_30S_MO.crx.gz
-f test_resources/NAV/V3/ESBC00DNK_R_20201770000_01D_MN.gz
-f test_resources/CLK/V3/GRG0MGXFIN_20201770000_01D_30S_CLK.CLK.gz
-f test_resources/SP3/V3/GRG0MGXFIN_20201770000_01D_15M_ORB.SP3.gz
-P GAL,GPS
-p --cggtts -c rinex-cli/config/rtk/gpst_ppp_basic.json | tee logs.txt
DORIS
DORIS RINEX (special file format) is partially introduced.
In V0.16 state we can parse the file correctly but no analysis modes are available.
This will be introduced in following versions.
Other
as you would expect in profesionnal contexts like laboratories and production agencies.
What's next