In the last post I described a process to troubleshoot problems occurring in real-time solutions that are not seen in post-processing solutions for the same data. I collected a data set demonstrating this issue, and traced the problem to the conversion of the measurement data from raw binary format to the RTCM format. This conversion is typically done in real-time applications to compress the data and minimize bandwidth requirements for the base to rover real-time data link. In this post I will look into that example in more detail and also explore some of the limitations of the RTCM format.
First, it is important to understand that the conversion to RTCM is not a lossless process. There are several ways in which information is lost in this process. In some cases these losses are probably not significant but in other cases it is not so clear that is the case.
So let’s look at some of those differences. We actually have three formats to compare here: the raw binary format from the u-blox receiver, the RTCM format, and the RINEX format. Both the RTCM and RINEX formats contain less information than the raw binary format and information is lost when the conversion is made to either format. The reason I include the RINEX format here is because in the post-processing procedure, the measurements, whether they come from the raw binary format or the RTCM format, must first be converted to RINEX format before being input into the solution. What I see with my example data set that fails in real-time is that it looks good in post-processing if the raw measurements are converted directly from raw binary to RINEX but fail if the raw measurements are first converted to RTCM and then the RTCM is converted to RINEX. Therefore it is very likely that there is something critical that is lost in the conversion to RTCM that is not lost in the conversion to RINEX.
The official RTCM spec is not freely available on the internet (it must be purchased), so I have relied on this document from Geo++ for the RTCM details. Here is a chart of the most significant differences I am aware of between the three formats. In the case of RTCM, these numbers apply only to the older 1002/1010 messages used by Reach and most other systems, not the newer MSM messages.
U-blox binary | RINEX 3.0 | RTCM 3.0 | |
Psuedorange resolution | double precison floating point | 0.001 m | 0.02 m |
Carrier phase resolution | double precison floating point | 0.001 cycles = 0.2 mm | 0.5 mm |
Doppler resolution | single precision floating point | 0.001 Hz | Not supported |
Time stamp resolution | double precison floating point | 100 nsec | 1 msec |
Lock time | 1 ms | Lock status only | Variable (> 1 ms) |
Half cycle invalid | Supported | Supported | Not supported |
To figure out which (if any) of these differences is responsible for the failure I needed a way to run the solution multiple times, each run done with only a single difference injected into the conversion.
I already had a matlab script I had previously written previously to parse a RINEX observation file into a set of variables in the matlab space. So I wrote a second script that goes the other way, from variables in memory to a RINEX observation file. Once I had done this, I could read in the good RINEX observation file translated directly from the u-blox binary file, modify a single measurement type, write it back to a new RINEX observation file, then run this file through a solution.
My first guess was that it was the missing “Half Cycle Invalid” flag that would prove to be the culprit since I have seen this before with the M8N receiver as described in this post. Although I suspect that this probably is true in some cases, it did not make a difference with this data set. My next suspect was the missing doppler measurements, since RTKLIB uses the doppler measurements when estimating the receiver clock bias, but again, it was not the case. In the end it turned out to be my very last guess that made the difference and that was the time stamp resolution. So much for me thinking I was starting to get the hang of this RTK stuff! The differences were so small in the time stamps relative to the distance between them, that I had unconsciously ignored them. For example, the two first time stamps in the good measurements were 49.9995584 and 50.999584 but the time stamps in the failing measurements had been rounded off to 50.0000000 and 51.0000000. Even after discovering that this round-off error makes a difference, it still is not obvious to me why this is true. In any GPS solution, the receiver clocks are assumed to lack sufficient accuracy to be relied upon without correction and the clock errors are one of the unknowns in the solution along with the three position axes. I don’t know why RTKLIB does not correctly estimate this error in its clock bias estimate and remove it. Maybe one of you guys who has been doing this a lot longer than I have can explain this?
Just to be sure it wasn’t a fluke, I started the data processing at three different times in the data set, and I also ran additional solutions with the sign of the error in the time stamps reversed. In every cases, regardless of sign, or starting location, the solution failed to get a fix when the error was present and succeeded when the error was not there.
I have read somewhere that more expensive receivers will typically align there time stamps to round numbers which would avoid the need for as much resolution. The only expensive receivers I have access to are the CORS stations so I took a look at data from a couple of them. Sure enough, it appears to be true that they do use round numbers for their time stamps. If this is more generally true it might explain why the RTCM spec does not have sufficient resolution for the u-blox data but would work fine for more commonly used, higher priced receivers.
I was curious why the u-blox time stamps don’t occur at round numbers so took a look at the hardware description spec. I found this explanation
“In practice the receiver’s local oscillator will not be as stable as the atomic clocks to which GNSS systems are referenced and consequently clock bias will tend to accumulate. However, when selecting the next navigation epoch, the receiver will always try to use the 1 kHz clock tick which it estimates to be closest to the desired fix period as measured in GNSS system time”
I interpret this to mean that the receiver is aware of alignment error in its clock source relative to GPS system time, and it adjusts the time stamp values to includes its estimate of that error.
Something else I am curious about but have not had time to investigate in any detail is how this issue is affected by differences between the RXM_RAWX measurements which are what is normally used with the M8T receiver, and the debug TRK_MEAS messages which also contain the raw measurements and are the only raw measurement messages available on the M8N receiver. Looking at several data sets from the both the M8N and M8T, it appears that the TRK_MEAS time stamps for both receivers are aligned to round numbers while the RXM-RAWX measurements are not aligned. This means that the TRK_MEAS messages would not be affected by the lack of resolution in the RTCM format. However, the TRK_MEAS measurements lack the compensation for inter-channel frequency delays in the GLONASS measurements and so would not be a good substitute. Maybe it’s possible to combine the two into a single set of measurements? The two include different references and clock errors so it is not obvious if that is possible. Below is an example of partial TRK_MEAS and RXM-RAWX outputs for the same epoch when both were enabled, TRK_MEAS on the top, and RXM_RAWX below.
Another avenue I considered is using the newer MSM messages (1077,1087)in the RTCM format instead of the current 1002/1010 messages that Reach and most other users are using. These have higher resolutions for the pseudorange and carrier phase, and include doppler and half cycle invalid flags. Unfortunately, the resolution for the time stamps does not seem to have changed, or if it has, it hasn’t changed enough to see a difference in the output for the small deltas in my example.
There also appears to be a bug in the RTKLIB implementation of the encode or decode of these messages which sometimes causes the number of integer cycles in the carrier phase measurements to be incorrect (the fractional part is fine). This bug appears to be present in both the official 2.4.3 release and the demo5 code but some of the changes I have made to the u-blox translation in the demo5 code seem to have increased the frequency of these incorrect measurements.
Reach does use the MSM messages for the SBAS measurements although it does not need to since the 1002 message supports SBAS as well as GPS. It is possible this could introduce a problem for users in North America where the WAAS satellites used for SBAS correction include carrier phase measurements. Users in Europe would not see this problem because the EGNOS satellites used for SBAS correction in Europe don’t provide the carrier phase. I did not see any corruption in the SBAS carrier phase measurements in the initial RTCM data in this example but after I enabled the 1077 and 1087 measurements, I did see corruption in the measurements in all three systems.
So, unfortunately this is still somewhat a work in progress and I don’t have any easy answer how to fix this. I am hoping some of the experts out there can comment and help put some of the pieces of the puzzle together.
In the meantime I would suggest using the u-blox binary format for the base-rover data-link instead of the RTCM format. The bandwidth requirements will be 2.5 to 3 time higher but some of this can be offset by reducing the measurement sample rate for the base station.
I believe a long term fix is going to require two things. First of all a workaround to the time tag resolution issue described in this post. But even with fixed, the half cycle valid flag and doppler information will still be lost. I haven’t done any tests to understand how critical the doppler measurements are, but I have demonstrated in the post I referenced above, that losing the half cycle valid flag can definitely degrade the solution. Fortunately, the newer MSM RTCM messages do include both half cycle valid flag and doppler. They do not appear to be usable until the bug in the encode/decode of the carrier phase data is fixed, so that will have to happen as well.
On the other hand, I suspect most real-time RTK systems do use RTCM and manage to live with its limitations so maybe I am overreacting here. I would be interested in other people’s opinions and experiences with RTCM on u-blox or other receiver types.