diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-09-28 15:24:55 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-09-28 15:24:55 +0200 |
commit | 0efa7df1d31cc63f724935e34d21a1932472aac7 (patch) | |
tree | 3b3bee9ec40520cb79609514cc92044c90582c9b | |
parent | 9ed036199f39b5a4f694e44a192dec3129c6d83e (diff) | |
download | meteo_toolbox-0efa7df1d31cc63f724935e34d21a1932472aac7.tar.gz |
example config
-rw-r--r-- | config.yaml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..e358613 --- /dev/null +++ b/config.yaml @@ -0,0 +1,41 @@ +--- +plotter: + - module: vertical_from_grib + source: dwd_icon-eu/combined.grib2 + output: out + plots: + - lat: 47.96 + lon: 11.99 + name: Antersberg + analysis: lcl + - module: horizontal + source: dwd_icon-eu/combined.grib2 + output: out + plots: + - name: t_fi_850 + area: null + layers: + - layertype: raster + field: t + level: 850 + plot_units: degC + colormap: jet + - layertype: contour + field: z + level: 850 + plot_units: '_gpdm' + contours: 5 + clabels: true + - name: pmsl_t850 + area: null + layers: + - layertype: raster + field: t + level: 850 + plot_units: degC + colormap: jet + - layertype: contour + field: prmsl + plot_units: 'hPa' + contours: 10 + clabels: true |