Skip to content

Commit 2a8fc8d

Browse files
committed
- added L6 archive for doy46
- updated reference position for doy46 - HAS: E29 excluded for doy46
1 parent e76099e commit 2a8fc8d

File tree

6 files changed

+39
-18
lines changed

6 files changed

+39
-18
lines changed

data/doy2025-046/2025046R.l6

879 KB
Binary file not shown.

samples/test_pppbds.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
file_bds = '../data/doy2023-223/223v_bdsb2b.txt'
4343
elif dataset == 2:
4444
ep = [2025, 2, 15, 17, 0, 0]
45-
xyz_ref = [-3962108.6726, 3381309.4719, 3668678.6264]
45+
xyz_ref = [-3962108.6836, 3381309.5672, 3668678.6720]
4646
navfile = '../data/doy2025-046/046r_rnx.nav'
47-
obsfile = '../data/doy2025-046/046r_rnx.obs' # PolaRX5
47+
obsfile = '../data/doy2025-046/046r_rnx.obs' # SEPT MOSAIC-X5
4848
file_bds = '../data/doy2025-046/046r_bdsb2b.txt'
4949

5050
time = epoch2time(ep)

samples/test_ppphas.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import cssrlib.gnss as gn
1515
from cssrlib.gnss import ecef2pos, Nav
1616
from cssrlib.gnss import time2gpst, time2doy, time2str, timediff, epoch2time
17-
from cssrlib.gnss import rSigRnx
17+
from cssrlib.gnss import rSigRnx, prn2sat, uGNSS
1818
from cssrlib.gnss import sys2str
1919
from cssrlib.peph import atxdec, searchpcv
2020
from cssrlib.cssr_has import cssr_has
@@ -25,7 +25,7 @@
2525
# Select test case
2626
#
2727
dataset = 2
28-
28+
excl_sat = []
2929
# Start epoch and number of epochs
3030
#
3131
fromSbfConvert = False
@@ -48,6 +48,7 @@
4848
navfile = '../data/doy2025-046/046r_rnx.nav' # Mosaic-X5
4949
obsfile = '../data/doy2025-046/046r_rnx.obs' # Mosaic-X5
5050
file_has = '../data/doy2025-046/046r_gale6.txt'
51+
excl_sat = [prn2sat(uGNSS.GAL, 29)] # E29
5152

5253
# Convert epoch and user reference position
5354
#
@@ -100,6 +101,9 @@
100101
#
101102
nav.pmode = 0
102103

104+
if len(excl_sat) > 0:
105+
nav.excl_sat = excl_sat
106+
103107
# Decode RINEX NAV data
104108
#
105109
nav = rnx.decode_nav(navfile, nav)

samples/test_pppmdc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
file_l6 = '../data/doy2023-223/223v_qzsl6.txt'
4444
elif dataset == 2:
4545
ep = [2025, 2, 15, 17, 0, 0]
46-
xyz_ref = [-3962108.6836, 3381309.5672, 3668678.6720]
47-
navfile = '../data/doy2025-046/046r_rnx.nav' # Mosaic-X5
48-
obsfile = '../data/doy2025-046/046r_rnx.obs' # Mosaic-X5
46+
xyz_ref = [-3962108.6836, 3381309.5672, 3668678.6720]
47+
navfile = '../data/doy2025-046/046r_rnx.nav' #
48+
obsfile = '../data/doy2025-046/046r_rnx.obs' # SEPT MOSAIC-X5
4949
file_l6 = '../data/doy2025-046/046r_qzsl6.txt'
5050

5151
time = epoch2time(ep)
@@ -66,7 +66,7 @@
6666
# Define signals to be processed
6767
#
6868
gnss = "GE"
69-
#gnss = "GEJR"
69+
# gnss = "GEJR"
7070
sigs = []
7171
if 'G' in gnss:
7272
sigs.extend([rSigRnx("GC1C"), rSigRnx("GC2W"),

samples/test_ppppvs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747

4848
ep = [2025, 2, 15, 17, 0, 0]
4949
navfile = '../data/doy2025-046/046r_rnx.nav'
50-
obsfile = '../data/doy2025-046/046r_rnx.obs' # PolaRX5
50+
obsfile = '../data/doy2025-046/046r_rnx.obs' # SEPT MOSAIC-X5
5151
file_pvs = '../data/doy2025-046/046r_sbas.txt'
52-
xyz_ref = [-3962108.6726, 3381309.4719, 3668678.6264]
52+
xyz_ref = [-3962108.6836, 3381309.5672, 3668678.6720]
5353

5454

5555
time = epoch2time(ep)

samples/test_ppprtk.py

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,32 @@
1919
l6_mode = 0 # 0: from receiver log, 1: from archive on QZSS
2020
dataset = 2
2121

22-
if l6_mode == 1:
22+
if l6_mode == 1: # from archive
2323

24-
ep = [2021, 3, 19, 12, 0, 0]
25-
xyz_ref = [-3962108.673, 3381309.574, 3668678.638]
26-
navfile = '../data/doy2021-078/SEPT078M.21P'
27-
obsfile = '../data/doy2021-078/SEPT078M.21O'
28-
l6file = '../data/doy2021-078/2021078M.l6'
24+
if dataset == 1:
2925

30-
else:
26+
ep = [2021, 3, 19, 12, 0, 0]
27+
xyz_ref = [-3962108.673, 3381309.574, 3668678.638]
28+
navfile = '../data/doy2021-078/SEPT078M.21P'
29+
obsfile = '../data/doy2021-078/SEPT078M.21O'
30+
l6file = '../data/doy2021-078/2021078M.l6'
31+
32+
elif dataset == 2:
33+
ep = [2025, 2, 15, 17, 0, 0]
34+
xyz_ref = [-3962108.6836, 3381309.5672, 3668678.6720]
35+
36+
time = epoch2time(ep)
37+
year = ep[0]
38+
doy = int(time2doy(time))
39+
let = chr(ord('a')+ep[3])
40+
41+
bdir = '../data/doy{:04d}-{:03d}/'.format(year, doy)
42+
43+
navfile = bdir+'{:03d}{}_rnx.nav'.format(doy, let)
44+
obsfile = bdir+'{:03d}{}_rnx.obs'.format(doy, let) # SEPT MOSAIC-X5
45+
l6file = bdir+'{:04d}{:03d}{}.L6'.format(year, doy, let)
46+
47+
else: # from receiver log
3148

3249
if dataset == 0:
3350

@@ -40,7 +57,7 @@
4057
elif dataset == 2:
4158

4259
ep = [2025, 2, 15, 17, 0, 0]
43-
xyz_ref = [-3962108.6726, 3381309.4719, 3668678.6264]
60+
xyz_ref = [-3962108.6836, 3381309.5672, 3668678.6720]
4461

4562
time = epoch2time(ep)
4663
year = ep[0]

0 commit comments

Comments
 (0)