Bug report #21933

Updated by Jürgen Fischer about 5 years ago

I tried several versions of QGIS (2.18, 3.6, 3.4)

All of them show the same behaviour:

The H Accuracy and V Accuracy is always allways "-1.0m".

If you use a receiver in RTK-Mode, you really want to see the residuals..

h3. Vertical RMS

@VRMS = math.sqrt(math.pow(GST_Field_8, 2))
@

h3. Horizontal RMS

@HRMS = math.sqrt((math.pow(GST_Field_6, 2) + math.pow(GST_Field_7, 2))/2)
@

h3. Positional RMS

@PRMS = math.sqrt((math.pow(GST_Field_6, 2) + math.pow(GST_Field_7, 2) + math.pow(GST_Field_8, 2))/3)
@

Please make that available!
Thanks!

Back