-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* increase observation precision in formatted csv * add new DIFF example and associated data * Upgrade ANISE 0.5 * this upgrade fixes the .lock file problem * also correct the JPL model daily download * Fix a few warnings * add release flags at the workspace level * update gitignore --------- Signed-off-by: Guillaume W. Bres <[email protected]>
- Loading branch information
Showing
17 changed files
with
149 additions
and
68 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
DIFF | ||
==== | ||
|
||
RINEX(A) - RINEX(B) differential analysis, example application. | ||
RINEX(A) - RINEX(B) differential analysis and example applications. | ||
|
||
RINEX differential analysis is useful to permit several yet different | ||
and exotic measurements. For example, you can use phase differentiation to compare a local clock that is spread into two separate receivers. For that particular scenario, see our [phase-clock](./phase-clock.sh) example. | ||
|
||
RINEX differentiation applies to all observations format. | ||
[esbjrg-mojn](./esbjrg-mojn) is a demonstration of that. | ||
|
||
Observations need to be made synchronously and we only differentiate identical observations (same physics, same signal and modulation). |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/sh | ||
# A clock is split into two separate receivers, | ||
# sky is observed and we use identical GNSS RF signal/modulations | ||
# to obtain the local clock behavior. | ||
WORKSPACE=WORKSPACE | ||
DATA_DIR=test_resources/OBS/V3 | ||
|
||
# Generate ""differenced"" observation RINEX=obs(A)-obs(B) | ||
# diff is a file operations: a RINEX is dumped, no report synthesized. | ||
./target/release/rinex-cli \ | ||
--fp $DATA_DIR/OB713520.23O.gz \ | ||
diff $DATA_DIR/gps.23O.gz | ||
|
||
# Open previous results: generate a report | ||
./target/release/rinex-cli \ | ||
--fp $WORKSPACE/OB713520/DIFFERENCED.23O.gz |