Unverified Commit 4d56e487 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #6238 from DonLakeFlyer/TriggerDistance

Add trigger distance to editors statistics
parents eca233d0 2e3e5734
...@@ -159,6 +159,9 @@ Rectangle { ...@@ -159,6 +159,9 @@ Rectangle {
QGCLabel { text: qsTr("Photo interval") } QGCLabel { text: qsTr("Photo interval") }
QGCLabel { text: missionItem.timeBetweenShots.toFixed(1) + " " + qsTr("secs") } QGCLabel { text: missionItem.timeBetweenShots.toFixed(1) + " " + qsTr("secs") }
QGCLabel { text: qsTr("Trigger Distance") }
QGCLabel { text: missionItem.cameraCalc.adjustedFootprintSide.valueString + " " + QGroundControl.appSettingsDistanceUnitsString }
} }
} // Column } // Column
} // Rectangle } // Rectangle
...@@ -658,13 +658,13 @@ Rectangle { ...@@ -658,13 +658,13 @@ Rectangle {
columnSpacing: ScreenTools.defaultFontPixelWidth columnSpacing: ScreenTools.defaultFontPixelWidth
visible: statsHeader.checked visible: statsHeader.checked
QGCLabel { text: qsTr("Survey area") } QGCLabel { text: qsTr("Survey Area") }
QGCLabel { text: QGroundControl.squareMetersToAppSettingsAreaUnits(missionItem.coveredArea).toFixed(2) + " " + QGroundControl.appSettingsAreaUnitsString } QGCLabel { text: QGroundControl.squareMetersToAppSettingsAreaUnits(missionItem.coveredArea).toFixed(2) + " " + QGroundControl.appSettingsAreaUnitsString }
QGCLabel { text: qsTr("Photo count") } QGCLabel { text: qsTr("Photo Count") }
QGCLabel { text: missionItem.cameraShots } QGCLabel { text: missionItem.cameraShots }
QGCLabel { text: qsTr("Photo interval") } QGCLabel { text: qsTr("Photo Interval") }
QGCLabel { QGCLabel {
text: { text: {
var timeVal = missionItem.timeBetweenShots var timeVal = missionItem.timeBetweenShots
...@@ -674,6 +674,9 @@ Rectangle { ...@@ -674,6 +674,9 @@ Rectangle {
return timeVal.toFixed(1) + " " + qsTr("secs") return timeVal.toFixed(1) + " " + qsTr("secs")
} }
} }
QGCLabel { text: qsTr("Trigger Distance") }
QGCLabel { text: missionItem.cameraTriggerDistance.valueString + " " + QGroundControl.appSettingsDistanceUnitsString }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment