Replies: 2 comments
-
I cannot find the unit of the calibration coefficients anywhere in the PROMICE ESSD paper or i pypromice. But the answer must be there? I am dealing with this issue since the unit in the GlacioBasis Zackenberg ZAC_L logger program is in mV and not V*10^-2 as newer versions of the logger program. |
Beta Was this translation helpful? Give feedback.
-
Tilt is directly lifted from the previous IDL processing scripts here: As shown in pypromice here: pypromice/src/pypromice/process/L0toL1.py Line 304 in e4ff5ed There is no documentation on the IDL scripts about why we do this, but we kept it in order to produce the same output.
This is where we apply the calibration coefficients in pypromice: pypromice/src/pypromice/process/L0toL1.py Lines 48 to 55 in e4ff5ed Again, not sure what units these are provided in but perhaps @robertfausto or Allan knows? The calibration certificates for each instrument should come back to GEUS with units surely? If the units differ for logger program |
Beta Was this translation helpful? Give feedback.
-
In the conversion of tilt from voltage to degrees (in the function getTiltDegrees on line 304 in L0toL1.py), the tilt is divided by 10:
tilt = tilt / 10
Why is this? In the logger programs (at least PROMICE_V2_2022_V1_2.CR1), the tilt is written out in V10^-2, so I assume it is not to go from V10^-2 to V as you would then divide by 100?
Beta Was this translation helpful? Give feedback.
All reactions