Why is the SPARTN ionospheric term negative? #42
|
Hi everyone, I am working with SPARTN HPAC ionospheric corrections and I am trying to understand how the ionospheric term should be interpreted from the receiver/user side. In my case, I have messages with no grid information, so I assume I_G = 0, and with SF054 = 0, meaning the ionospheric polynomial reduces to the constant term c_{00} (from SF057). For some satellites, SF057 is negative, so the resulting slant ionospheric value is also negative. An example:
More specifically: Thanks in advance |
Replies: 2 comments 5 replies
|
Hi @ferraragianluigi97-source , This is probably a question for the protocol authors (i.e. u-blox) or a more specialist technical forum. The protocol defines the ionospheric delay coefficients as follows, and the pyspartn parser simply implements this format:
|
|
Hi, I apologize again for the inconvenience. I can't find a parser for BPAC messages in the documentation. Can you help me? |

pyspartn applies the documented scaling factor and range automatically as part of the
SPARTN_DATA_FIELDSdata dictionary, e.g. in the following,FLsignifies 'float',12signifies 12 bits,0.04signifies scaling factor (resolution) and-81.88signifies range minimum:pyspartn/src/pyspartn/spartntypes_core.py
Line 151 in 6f2356f