Browse Source

Don't default to PCA, preliminary support for later transmitter versions

HEAD
Trevor Irons 6 years ago
parent
commit
6f7f678e26
2 changed files with 7 additions and 4 deletions
  1. 6
    3
      akvo/gui/main.ui
  2. 1
    1
      akvo/tressel/mrsurvey.py

+ 6
- 3
akvo/gui/main.ui View File

@@ -73,8 +73,8 @@
73 73
         <rect>
74 74
          <x>0</x>
75 75
          <y>0</y>
76
-         <width>966</width>
77
-         <height>919</height>
76
+         <width>982</width>
77
+         <height>921</height>
78 78
         </rect>
79 79
        </property>
80 80
        <layout class="QHBoxLayout" name="horizontalLayout_2">
@@ -1573,6 +1573,9 @@ background: dark grey;
1573 1573
              <property name="toolTip">
1574 1574
               <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Perform priciple component analysis on the reference channels? If &lt;span style=&quot; font-weight:600;&quot;&gt;yes&lt;/span&gt;, PCA will performed on the reference channels and the rotated channels will be used for noise cancelation rather than the raw noise channels. In the case of multiple noise sources where one dominantes across channels, better performance can be realized.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
1575 1575
              </property>
1576
+             <property name="currentIndex">
1577
+              <number>1</number>
1578
+             </property>
1576 1579
              <item>
1577 1580
               <property name="text">
1578 1581
                <string>Yes</string>
@@ -3127,7 +3130,7 @@ p, li { white-space: pre-wrap; }
3127 3130
      <x>0</x>
3128 3131
      <y>0</y>
3129 3132
      <width>1000</width>
3130
-     <height>20</height>
3133
+     <height>19</height>
3131 3134
     </rect>
3132 3135
    </property>
3133 3136
    <widget class="QMenu" name="menuFile">

+ 1
- 1
akvo/tressel/mrsurvey.py View File

@@ -226,7 +226,7 @@ class GMRDataProcessor(SNMRDataProcessor):
226 226
 
227 227
         ######################################################
228 228
         # PreAmp gain
229
-        if self.nTransVersion == 4:
229
+        if self.nTransVersion >= 4:
230 230
             self.PreAmpGain = 1000.
231 231
         elif self.nTransVersion == 1 or self.nTransVersion == 2 or self.nTransVersion == 3:
232 232
             self.PreAmpGain = 500.

Loading…
Cancel
Save