diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-10-31 19:09:15 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-10-31 19:09:15 +0100 |
commit | cd69f3b04bd42005a181b5c7459de5ec7f2aa572 (patch) | |
tree | 03a95327967a8d201b68f5f256c54391734d674a | |
parent | e832421e29cf408ced155a250f7da2b113c708e2 (diff) | |
download | meteo_toolbox-cd69f3b04bd42005a181b5c7459de5ec7f2aa572.tar.gz |
diff modifier
-rw-r--r-- | metchart/modifier/diff.py | 6 | ||||
-rw-r--r-- | pyproject.toml | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/metchart/modifier/diff.py b/metchart/modifier/diff.py new file mode 100644 index 0000000..496acf7 --- /dev/null +++ b/metchart/modifier/diff.py @@ -0,0 +1,6 @@ +def run(data, vars): + ret = data[0] + for var in vars: + ret[var['name']] = ret[var['field']].diff(var['by']) + + return ret diff --git a/pyproject.toml b/pyproject.toml index d5f2744..d5a60bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "metchart" -version = "0.0.1" +version = "0.0.2" dependencies = [ "metpy", "xarray", |