QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
TransectStyleComplexItemStats.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3
4import QGroundControl
5import QGroundControl.Controls
6
7// Statistics section for TransectStyleComplexItems
8Grid {
9 // The following properties must be available up the hierarchy chain
10 //property var missionItem ///< Mission Item for editor
11
12 columns: 2
13 columnSpacing: ScreenTools.defaultFontPixelWidth
14
15 QGCLabel { text: qsTr("Survey Area") }
16 QGCLabel { text: QGroundControl.unitsConversion.squareMetersToAppSettingsAreaUnits(missionItem.coveredArea).toFixed(2) + " " + QGroundControl.unitsConversion.appSettingsAreaUnitsString }
17
18 QGCLabel { text: qsTr("Photo Count") }
19 QGCLabel { text: missionItem.cameraShots }
20
21 QGCLabel { text: qsTr("Photo Interval") }
22 QGCLabel { text: missionItem.timeBetweenShots.toFixed(1) + " " + qsTr("secs") }
23
24 QGCLabel { text: qsTr("Trigger Distance") }
25 QGCLabel { text: missionItem.cameraCalc.adjustedFootprintFrontal.valueString + " " + missionItem.cameraCalc.adjustedFootprintFrontal.units }
26}