From a287843108113ae950b48999fdbbe5cb3f8a6fde Mon Sep 17 00:00:00 2001 From: Andre Kjellstrup Date: Fri, 23 Sep 2016 12:28:49 +0200 Subject: [PATCH 1/2] Survey: Corrected EOS-M focal length The 22mm as stated on the lens is actual, not 35mm equvalent as on smaller cameras. - So it was wrong to reverse calculate for crop factor. --- src/MissionEditor/SurveyItemEditor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MissionEditor/SurveyItemEditor.qml b/src/MissionEditor/SurveyItemEditor.qml index 3273442..3e8455e 100644 --- a/src/MissionEditor/SurveyItemEditor.qml +++ b/src/MissionEditor/SurveyItemEditor.qml @@ -65,7 +65,7 @@ Rectangle { sensorHeight: 15.6 imageWidth: 5184 imageHeight: 3456 - focalLength: 14.36 + focalLength: 22 } } From 921aa9fb70547ec197b65435bf7aa3b22342578f Mon Sep 17 00:00:00 2001 From: Andre Kjellstrup Date: Sat, 24 Sep 2016 01:14:19 +0200 Subject: [PATCH 2/2] Survey: EOS-M sensor size corrected it's not a typical APS-C sensor, proper size gives more accurate calculations. --- src/MissionEditor/SurveyItemEditor.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MissionEditor/SurveyItemEditor.qml b/src/MissionEditor/SurveyItemEditor.qml index 3e8455e..b56393b 100644 --- a/src/MissionEditor/SurveyItemEditor.qml +++ b/src/MissionEditor/SurveyItemEditor.qml @@ -61,8 +61,8 @@ Rectangle { } ListElement { text: qsTr("Canon EOS-M 22mm") - sensorWidth: 23.5 - sensorHeight: 15.6 + sensorWidth: 22.3 + sensorHeight: 14.9 imageWidth: 5184 imageHeight: 3456 focalLength: 22