diff options
Diffstat (limited to 'plotter/horizontal.py')
-rwxr-xr-x | plotter/horizontal.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plotter/horizontal.py b/plotter/horizontal.py index a81b372..e83b683 100755 --- a/plotter/horizontal.py +++ b/plotter/horizontal.py @@ -37,8 +37,12 @@ def run(source, plots, output='.'): misc.create_output_dir(output) data = xr.load_dataset(source, engine='cfgrib') + index = [] + for plot in plots: - _plot(data, output, **plot) + index.append(_plot(data, output, **plot)) + + return index def _plot(data, output, name, layers, area = None): index = [] @@ -88,6 +92,8 @@ def _plot(data, output, name, layers, area = None): with open(os.path.join(output, f'{name}.index.json'), 'w') as f: f.write(json.dumps(index, indent=4)) + return { 'name': name, 'indexfile': f'{name}.index.json' } + def _layer(data, layertype, **kwargs): layertypes={ 'raster': { |