Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
1885e3e
- fixed initializer of class.
hirokawa Nov 4, 2025
ee866f1
- added utils.py to include common processing routines.
hirokawa Nov 9, 2025
24069db
- changed time to time0
hirokawa Nov 9, 2025
979e203
- added check for None
hirokawa Nov 10, 2025
5f91e8a
- added merge_cssr to support multiple channel for QZSS CLAS.
hirokawa Nov 15, 2025
78f0118
- added L1CB in rtcm decoder
hirokawa Nov 23, 2025
50980d2
- config file support
hirokawa Nov 24, 2025
6a27d61
- added config.
hirokawa Nov 24, 2025
cf7f091
- added RTCM SSR decoder
hirokawa Dec 14, 2025
427820f
- mi changed to bool
hirokawa Dec 14, 2025
3861587
- updated SSR Integrity message output.
hirokawa Dec 14, 2025
d2b53c1
- added MT12,13
hirokawa Dec 14, 2025
ceb8577
- fixed reference error.
hirokawa Dec 20, 2025
cccfd1c
- removed gn.
hirokawa Jan 3, 2026
b9ebd2f
- moved tideCorr to gnss.py
hirokawa Jan 3, 2026
40d23e2
- moved uTideModel.
hirokawa Jan 3, 2026
73f9d71
- added scan mode.
hirokawa Jan 3, 2026
23003cd
- improved GLO LxOC support in RINEX decoder
hirokawa Jan 3, 2026
8e21493
- added QZS L1C/B mode.
hirokawa Jan 3, 2026
ede5a67
- changed the initialization of P.
hirokawa Jan 3, 2026
cee2104
- updated to support newest edition of draft SC134 messages.
hirokawa Jan 4, 2026
053646c
- fixed compile error.
hirokawa Jan 4, 2026
8b33b36
- fixed SBAS MT24,26 decoder.
hirokawa Jan 10, 2026
605a0ff
- applied a change in MT54.9 message.
hirokawa Jan 13, 2026
68e1b18
- updated SC134 message based on the newest standard.
hirokawa Jan 15, 2026
c66ddda
- initial support of RTCM SSR encoder (experimental).
hirokawa Jan 18, 2026
0816d6b
- update udi.
hirokawa Jan 19, 2026
91d3851
- added experimental RTCM SSR support.
hirokawa Jan 24, 2026
372ad94
- defined common utility class for rtcm
hirokawa Jan 25, 2026
46a79d3
- fixed error.
hirokawa Jan 25, 2026
cd12353
- update sc134 messages.
hirokawa Jan 25, 2026
03a6815
update output of SC134 messages
hirokawa Jan 27, 2026
45f32de
- update output of sc134 messages.
hirokawa Jan 28, 2026
8336ca8
- added missing seq in sc134 messages.
hirokawa Jan 28, 2026
e25ac89
- fixed missing item.
hirokawa Jan 31, 2026
3d157be
- optimized by eliminating frequent update of sun position, antTx pos…
hirokawa Jan 31, 2026
594924d
- fixed ppprtk config loading.
hirokawa Feb 1, 2026
f37c320
- increased max PRN for GLO to support R28
hirokawa Feb 8, 2026
5d6cd79
- added maximum nsig check in RTCM SSR decoder.
hirokawa Feb 11, 2026
f6b3690
added option for clock bias reset, default is 1e2 [m].
hirokawa Feb 11, 2026
01bb005
- fixed glonass time in rtcm-ssr
hirokawa Feb 14, 2026
263f769
- rtcm ssr log output clean-up.
hirokawa Feb 14, 2026
dd79982
- fixed satant offset reference error for QZS.
hirokawa Feb 15, 2026
55ea16c
- SC134 decoder updated.
hirokawa Feb 23, 2026
0a4e6c0
- excluded satellite from config.yml
hirokawa Mar 1, 2026
ba5e090
- cnr monitor works when cnr is available.
hirokawa Mar 8, 2026
4a03f29
- added list of faulty satellites in RTCM SC134 MT2011 message.
hirokawa Mar 21, 2026
a666a73
- fixed grid message decode.
hirokawa Apr 25, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cssrlib/cssr_bds.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def decode_head(self, msg, i, st=-1):
if self.week >= 0:
self.time = bdt2gpst(bdt2time(self.week, self.tow))

head = {'uint': 0, 'mi': 0, 'iodssr': iodssr}
head = {'udi': 0, 'mi': 0, 'iodssr': iodssr}
return head, i

def add_gnss(self, mask, blen, gnss):
Expand Down
6 changes: 3 additions & 3 deletions src/cssrlib/cssr_has.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@ def decode_head(self, msg, i, st=-1):
""" decode header part of HAS messages """

if st == sCSSR.MASK:
ui = 0
udi = 0
else:
ui = bs.unpack_from('u4', msg, i)[0]
udi = bs.unpack_from('u4', msg, i)[0]
i += 4

if self.tow0 >= 0:
self.tow = self.tow0+self.toh
if self.week >= 0:
self.time = gpst2time(self.week, self.tow)

head = {'uint': ui, 'mi': 0, 'iodssr': self.iodssr}
head = {'udi': udi, 'mi': 0, 'iodssr': self.iodssr}
return head, i

def decode_cssr(self, msg, i=0):
Expand Down
8 changes: 4 additions & 4 deletions src/cssrlib/cssr_pvs.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ def slot2sat(self, slot):

def adjust_time_week(self, time, time0):
dt = timediff(time, time0)
if dt > rCST.DAY_SEC/2:
time = timeadd(time, -rCST.DAY_SEC)
elif dt < -rCST.DAY_SEC/2:
time = timeadd(time, rCST.DAY_SEC)
if dt > rCST.HALFWEEK_SEC:
time = timeadd(time, -rCST.WEEK_SEC)
elif dt < -rCST.HALFWEEK_SEC:
time = timeadd(time, rCST.WEEK_SEC)
return time

def check_validity(self, time):
Expand Down
Loading
Loading