diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-10-22 01:29:30 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-10-22 01:29:30 +0200 |
commit | e832421e29cf408ced155a250f7da2b113c708e2 (patch) | |
tree | 9f7c51f5529b66f290b7e59d3f1d6dd5ccb114c1 /metchart | |
parent | 381a8c282eccb9f448c1ff5392329087e2b3c448 (diff) | |
download | meteo_toolbox-e832421e29cf408ced155a250f7da2b113c708e2.tar.gz |
skewt fix name in list
Diffstat (limited to 'metchart')
-rwxr-xr-x | metchart/plotter/vertical_from_grib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metchart/plotter/vertical_from_grib.py b/metchart/plotter/vertical_from_grib.py index 2c636f0..159ff4b 100755 --- a/metchart/plotter/vertical_from_grib.py +++ b/metchart/plotter/vertical_from_grib.py @@ -95,7 +95,7 @@ def _plot(data, output, name, lat=None, lon=None, analysis=None): with open(os.path.join(output, f'skewt_{name}.index.json'), 'w') as f: f.write(json.dumps(index, indent=4)) - return {'name': name, 'indexfile': f'skewt_{name}.index.json', 'list_title': 'Location'} + return {'name': name, 'indexfile': f'skewt_{name}.index.json', 'list_title': 'INIT+'} if __name__ == '__main__': run(**config) |