Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
4d56e487
Unverified
Commit
4d56e487
authored
Mar 20, 2018
by
Don Gagne
Committed by
GitHub
Mar 20, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6238 from DonLakeFlyer/TriggerDistance
Add trigger distance to editors statistics
parents
eca233d0
2e3e5734
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
StructureScanEditor.qml
src/PlanView/StructureScanEditor.qml
+3
-0
SurveyItemEditor.qml
src/PlanView/SurveyItemEditor.qml
+6
-3
No files found.
src/PlanView/StructureScanEditor.qml
View file @
4d56e487
...
@@ -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
src/PlanView/SurveyItemEditor.qml
View file @
4d56e487
...
@@ -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
a
rea
"
)
}
QGCLabel
{
text
:
qsTr
(
"
Survey
A
rea
"
)
}
QGCLabel
{
text
:
QGroundControl
.
squareMetersToAppSettingsAreaUnits
(
missionItem
.
coveredArea
).
toFixed
(
2
)
+
"
"
+
QGroundControl
.
appSettingsAreaUnitsString
}
QGCLabel
{
text
:
QGroundControl
.
squareMetersToAppSettingsAreaUnits
(
missionItem
.
coveredArea
).
toFixed
(
2
)
+
"
"
+
QGroundControl
.
appSettingsAreaUnitsString
}
QGCLabel
{
text
:
qsTr
(
"
Photo
c
ount
"
)
}
QGCLabel
{
text
:
qsTr
(
"
Photo
C
ount
"
)
}
QGCLabel
{
text
:
missionItem
.
cameraShots
}
QGCLabel
{
text
:
missionItem
.
cameraShots
}
QGCLabel
{
text
:
qsTr
(
"
Photo
i
nterval
"
)
}
QGCLabel
{
text
:
qsTr
(
"
Photo
I
nterval
"
)
}
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
}
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment