Fix overflowing density altitude for the Kestrel DROP D3
The density altitudes calculated by the device appear to overflow & wrap around somewhere near 10,600 feet, with no apparent discrepencies in any of the other measurements this value is derived from.
...
Recalculate the density altitude values using the other measured quantities. There are two calculations available:
Calculate density altitude from the provided station parameters, assuming moistness.
See: https://www.weather.gov/media/epz/wxcalc/densityAltitude.pdf for more information
This approach appears to most closely match the Kestrel's internal density altitude calculation. Deltas between the two values appear to be on the order of 10-20 feet.
Calculate density altitude from the provided station parameters, assuming dry air.
See: https://en.wikipedia.org/wiki/Density_altitude#Calculation for more information
Deltas between this calculation and the Kesterl's internal density altitude calculation have been on the order of 100-150 feet.
Process a single Kestrel log file.
Parameter | Description | Type | Default |
---|---|---|---|
--log-filepath |
Path to Kestrel log to parse. | Path|None |
GUI Prompt |
--fix-type |
Log fixing method.1 | str |
'wet_air' |
Process a directory of Kestrel log file(s).
Parameter | Description | Type | Default |
---|---|---|---|
--log-directory |
Path to Kestrel log directory to parse. | Path|None |
GUI Prompt |
--log-pattern |
Log file glob pattern to match.2 | str |
"*.csv" |
--fix-type |
Log fixing method.1 | str |
"wet_air" |
- See Ok, What's The Fix for valid fixing method specifications
- Case file sensitivity is deferred to the host OS