diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-10-18 23:55:21 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-10-18 23:55:21 +0200 |
commit | 436a3d3eaebcca11d8da6d8b1bb4f6f543e135e4 (patch) | |
tree | b7cf8adef98c4a108379b897d2c0d722bd421433 /plotter/horizontal.py | |
parent | ea086464f8919b1477369fb08177fc9b0797f222 (diff) | |
download | meteo_toolbox-436a3d3eaebcca11d8da6d8b1bb4f6f543e135e4.tar.gz |
implemented aggreator
Diffstat (limited to 'plotter/horizontal.py')
-rwxr-xr-x | plotter/horizontal.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plotter/horizontal.py b/plotter/horizontal.py index e83b683..fa5f9df 100755 --- a/plotter/horizontal.py +++ b/plotter/horizontal.py @@ -33,10 +33,8 @@ config = { ] } -def run(source, plots, output='.'): +def run(data, plots, output='.'): misc.create_output_dir(output) - data = xr.load_dataset(source, engine='cfgrib') - index = [] for plot in plots: |