forked from rtk-rs/rinex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmojdnk.sh
executable file
·44 lines (40 loc) · 1.49 KB
/
mojdnk.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
# Post processing:
# +3 week surveying of this lab station
# Compare this to real time (BRDC)
# Comment out one step to remove it from the synthesized report.
# Change the configuration to modify the navigation setup.
DATA_DIR=test_resources
# Example:
# Gal PRN>09
# Skip 1st hour
# E1 or E5 PR
FILTER="Gal;>E09;C1C,C5Q"
# Skip 1st hour (example)
TIMEFRAME=">2020-06-25T01:00:00 UTC"
CONF=tutorials/config/survey/spp_lsq.json
CONF=tutorials/config/survey/cpp_kf.json
# Analysis + ppp solutions
# -f: force new report synthesis
# -q: silent (open on last call)
# -o: custom name
./target/release/rinex-cli \
-P $FILTER "$TIMEFRAME" \
-f -q -o "GalE1E5" \
--fp $DATA_DIR/CRNX/V3/MOJN00DNK_R_20201770000_01D_30S_MO.crx.gz \
--fp $DATA_DIR/NAV/V3/MOJN00DNK_R_20201770000_01D_MN.rnx.gz \
--fp $DATA_DIR/SP3/GRG0MGXFIN_20201770000_01D_15M_ORB.SP3.gz \
--fp $DATA_DIR/CLK/V3/GRG0MGXFIN_20201770000_01D_30S_CLK.CLK.gz \
ppp -c $CONF
# cggtts solutions (+open).
# Since we're using strict identical options,
# the report is preserved and new solutions are appended.
# The report is automatically opened.
./target/release/rinex-cli \
-P $FILTER "$TIMEFRAME" \
-o "GalE1E5" \
--fp $DATA_DIR/CRNX/V3/MOJN00DNK_R_20201770000_01D_30S_MO.crx.gz \
--fp $DATA_DIR/NAV/V3/MOJN00DNK_R_20201770000_01D_MN.rnx.gz \
--fp $DATA_DIR/SP3/GRG0MGXFIN_20201770000_01D_15M_ORB.SP3.gz \
--fp $DATA_DIR/CLK/V3/GRG0MGXFIN_20201770000_01D_30S_CLK.CLK.gz \
ppp --cggtts -c $CONF