forked from rtk-rs/rinex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnya200-brdc.sh
executable file
·41 lines (37 loc) · 1.63 KB
/
nya200-brdc.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
#!/bin/sh
# Real time surveying (BRDC) using observations from NYA100 (arctic).
# Some channels have zero (null) values - which is illegal, we work it around.
# NYA100 & NYA200 are located on the same site.
# Therefore, they share identical conditions, for example we can share NAV/V3 datasets.
DATA_DIR=test_resources
# Force new report (-f)
# Silent reporting (-q): open on last run only
# PPP solutions (ppp) with single Signal=C1C
./target/release/rinex-cli \
-P "GPS;C1C" \
-f -q -o "GPS-L1" \
--fp $DATA_DIR/CRNX/V3/NYA200NOR_R_20241240000_01D_30S_MO.crx.gz \
--fp $DATA_DIR/NAV/V3/NYA100NOR_S_20241240000_01D_GN.rnx.gz \
ppp -c tutorials/config/survey/spp_lsq.json
# Append PPP solutions (ppp) with single signal=C2X
./target/release/rinex-cli \
-P "GPS;C2L" \
-f -q -o "GPS-L2" \
--fp $DATA_DIR/CRNX/V3/NYA200NOR_R_20241240000_01D_30S_MO.crx.gz \
--fp $DATA_DIR/NAV/V3/NYA100NOR_S_20241240000_01D_GN.rnx.gz \
ppp -c tutorials/config/survey/spp_lsq.json
# Dual channel Navigation (C1C+C2X) compare to past runs
./target/release/rinex-cli \
-P "GPS;C1C,C2L" \
-f -q -o "GPS-L1L2" \
--fp $DATA_DIR/CRNX/V3/NYA200NOR_R_20241240000_01D_30S_MO.crx.gz \
--fp $DATA_DIR/NAV/V3/NYA100NOR_S_20241240000_01D_GN.rnx.gz \
ppp -c tutorials/config/survey/cpp_kf.json
# Generate CGGTTS solutions for the dual channel run as well.
# Open report.
./target/release/rinex-cli \
-P "GPS;C1C,C2L" \
-o "GPS-L1L2" \
--fp $DATA_DIR/CRNX/V3/NYA200NOR_R_20241240000_01D_30S_MO.crx.gz \
--fp $DATA_DIR/NAV/V3/NYA100NOR_S_20241240000_01D_GN.rnx.gz \
ppp --cggtts -c tutorials/config/survey/cpp_kf.json