diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-09-23 23:49:47 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-09-23 23:49:47 +0200 |
commit | ba741f1c2e0e6a9c90c1eedf0caca6bd68b41c57 (patch) | |
tree | 9e32b57b261000ddb7f647c3cbeaa907a3e30ca3 | |
parent | 459b4665e436a23a55202ccdfdaf5b3bb9c83416 (diff) | |
download | meteo_toolbox-ba741f1c2e0e6a9c90c1eedf0caca6bd68b41c57.tar.gz |
add custom gpm and gpdm units
metpy's gpm is defined as m,
we need the correct 9.81 * J/kg
-rwxr-xr-x | run.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -4,6 +4,13 @@ import sys import yaml import matplotlib.pyplot as plt +from metpy.units import units + +# Define custom gpm and gpdm units. The default gpm in metpy is aliased to meter. +# We need the correct definition +units.define('_gpm = 9.80665 * J/kg') +units.define('_gpdm = 10 * _gpm') + FILE = 'config.yaml' if len(sys.argv) > 1: FILE = sys.argv[1] |