5import QGroundControl.Controls
7// Statistics section for TransectStyleComplexItems
9 // The following properties must be available up the hierarchy chain
10 //property var missionItem ///< Mission Item for editor
13 columnSpacing: ScreenTools.defaultFontPixelWidth
15 QGCLabel { text: qsTr("Survey Area") }
16 QGCLabel { text: QGroundControl.unitsConversion.squareMetersToAppSettingsAreaUnits(missionItem.coveredArea).toFixed(2) + " " + QGroundControl.unitsConversion.appSettingsAreaUnitsString }
18 QGCLabel { text: qsTr("Photo Count") }
19 QGCLabel { text: missionItem.cameraShots }
21 QGCLabel { text: qsTr("Photo Interval") }
22 QGCLabel { text: missionItem.timeBetweenShots.toFixed(1) + " " + qsTr("secs") }
24 QGCLabel { text: qsTr("Trigger Distance") }
25 QGCLabel { text: missionItem.cameraCalc.adjustedFootprintFrontal.valueString + " " + missionItem.cameraCalc.adjustedFootprintFrontal.units }