Browse Source

GPSRTKIndicator: show final accuracy after survey-in

QGC4.4
Beat Küng 8 years ago
parent
commit
46c8ae235e
  1. 5
      src/ui/toolbar/GPSRTKIndicator.qml

5
src/ui/toolbar/GPSRTKIndicator.qml

@ -67,12 +67,11 @@ Item { @@ -67,12 +67,11 @@ Item {
visible: QGroundControl.gpsRtk.active.value
}
QGCLabel {
text: qsTr("Current Accuracy:")
visible: QGroundControl.gpsRtk.active.value
// during survey-in show the current accuracy, after that show the final accuracy
text: QGroundControl.gpsRtk.valid.value ? qsTr("Accuracy:") : qsTr("Current Accuracy:")
}
QGCLabel {
text: (QGroundControl.gpsRtk.currentAccuracy.value/1000).toFixed(1) + ' m'
visible: QGroundControl.gpsRtk.active.value
}
QGCLabel { text: qsTr("Satellites:") }
QGCLabel { text: QGroundControl.gpsRtk.numSatellites.value }

Loading…
Cancel
Save