Getting Band from MSM messages? #43
-
Hey, so I can resolve signal ID by doing Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
You're on the right track - provided you have the keyword argument So, for example, a value of Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
Hey, thanks for detailed answer!
So what you are saying is that one can't put something like this in their github repo?
Cause I've mapped the codes from the docs, and wrote a simple python script to print the GNSS system + satellite + bands I'm seeing, e.g.:
|
Beta Was this translation helpful? Give feedback.
-
FYI I've just uploaded an enhancement in RC 1.0.13 which hopefully addresses your needs. The
The
|
Beta Was this translation helpful? Give feedback.
Hi @gytisgreitai
You're on the right track - provided you have the keyword argument
labelmsm
set to true (the default), pyrtcm will parse relevant MSM message attributes with a label signifying both the PRN and the signal RINEX code - see https://github.com/semuconsulting/pyrtcm/blob/main/src/pyrtcm/rtcmtables.py. Each signal RINEX code corresponds to a frequency band and signal channel.So, for example, a value of
DF405_10(014,5I)
signifies PRN 14 and a signal RINEX code of5I
, which corresponds to the frequency band/signalE5a/I
. A value ofDF405_10(023,1A)
signifies PRN 23 and a signal RINEX code of1A
which corresponds to frequency band/signalE1/A
. The frequency-signal ID mappings for…