Browse Source

Merge pull request #5587 from DonLakeFlyer/SurvetFixes

Survey fixes
QGC4.4
Don Gagne 8 years ago committed by GitHub
parent
commit
bad9ed5787
  1. 8
      src/MissionManager/SurveyMissionItem.cc
  2. 18
      src/PlanView/SurveyItemEditor.qml
  3. 2
      src/QtLocationPlugin/QMLControl/OfflineMap.qml

8
src/MissionManager/SurveyMissionItem.cc

@ -747,7 +747,9 @@ void SurveyMissionItem::_generateGrid(void) @@ -747,7 +747,9 @@ void SurveyMissionItem::_generateGrid(void)
_setSurveyDistance(surveyDistance);
if (cameraShots == 0 && _triggerCamera()) {
cameraShots = (int)ceil(surveyDistance / _triggerDistance());
cameraShots = (int)floor(surveyDistance / _triggerDistance());
// Take into account immediate camera trigger at waypoint entry
cameraShots++;
}
_setCameraShots(cameraShots);
@ -1065,7 +1067,9 @@ int SurveyMissionItem::_gridGenerator(const QList<QPointF>& polygonPoints, QLis @@ -1065,7 +1067,9 @@ int SurveyMissionItem::_gridGenerator(const QList<QPointF>& polygonPoints, QLis
// Calc camera shots here if there are no images in turnaround
if (_triggerCamera() && !_imagesEverywhere()) {
for (int i=0; i<resultLines.count(); i++) {
cameraShots += (int)ceil(resultLines[i].length() / _triggerDistance());
cameraShots += (int)floor(resultLines[i].length() / _triggerDistance());
// Take into account immediate camera trigger at waypoint entry
cameraShots++;
}
}

18
src/PlanView/SurveyItemEditor.qml

@ -584,6 +584,24 @@ Rectangle { @@ -584,6 +584,24 @@ Rectangle {
Layout.fillWidth: true
}
FactCheckBox {
text: qsTr("Hover and capture image")
fact: missionItem.hoverAndCapture
visible: missionItem.hoverAndCaptureAllowed
Layout.columnSpan: 2
onClicked: {
if (checked) {
missionItem.cameraTriggerInTurnaround.rawValue = false
}
}
}
FactCheckBox {
text: qsTr("Take images in turnarounds")
fact: missionItem.cameraTriggerInTurnaround
enabled: !missionItem.hoverAndCapture.rawValue
Layout.columnSpan: 2
}
QGCCheckBox {
text: qsTr("Refly at 90 degree offset")

2
src/QtLocationPlugin/QMLControl/OfflineMap.qml

@ -342,8 +342,6 @@ QGCView { @@ -342,8 +342,6 @@ QGCView {
property bool isSatelliteMap: activeMapType.name.indexOf("Satellite") > -1 || activeMapType.name.indexOf("Hybrid") > -1
plugin: Plugin { name: "QGroundControl" }
MapRectangle {
id: mapBoundary
border.width: 2

Loading…
Cancel
Save