diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-10-22 11:43:11 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-10-22 11:43:11 +0200 |
commit | d5bf2513c2cff126b9f37290caf6fe8ad30e6d66 (patch) | |
tree | 381077a7208155ef02658c49ea77497f97c2a8c1 /Readme.md | |
parent | 5f323cf19217d4860d2aab4fd77c9a538b594747 (diff) | |
download | meteo_toolbox-d5bf2513c2cff126b9f37290caf6fe8ad30e6d66.tar.gz |
readme
Diffstat (limited to 'Readme.md')
-rw-r--r-- | Readme.md | 34 |
1 files changed, 28 insertions, 6 deletions
@@ -1,15 +1,37 @@ # meteo toolbox -DTKE_CON for convection forecast? +This projects aims to provide a declarative frontend to create weather charts from a variety of sources. +It mainly builds upon [MetPy](https://unidata.github.io/MetPy/latest/index.html), +[Xarray](https://docs.xarray.dev) and [cfgrib](https://github.com/ecmwf/cfgrib). -w_ctmax updraft velocity +## Requirements -## Sources +This project depends on the [ecCodes](https://confluence.ecmwf.int/display/ECC/ecCodes+Home) tools, +as well as some Python libraries. -DWD OpenData: opendata.dwd.de -ECMWF OpenData: https://www.ecmwf.int/en/forecasts/datasets/open-data +The former can be installed with `pip install -r requirements.txt`. -## +*ecCodes* is available in the [Arch User Repository](https://aur.archlinux.org/packages/eccodes). + +## Usage + +A configuration file is needed to run. +It defines datasources, as well as plots to create. + +See the included `config.yaml` for an example configuration. + +To trigger chart generation, execute `run.py`. + +## Data Sources + +Currently, only the *DWD* models *ICON*, *ICON-EU* and *ICON-D2* are supported via the [DWD OpenData site](https://opendata.dwd.de/weather/nwp/). +I plan to extend that to at least [ECMWF OpenData](https://www.ecmwf.int/en/forecasts/datasets/open-data) +and the *University of Wyoming* [Atmospheric Science Radiosonde Archive](http://weather.uwyo.edu/upperair/bufrraob.shtml). + +It is my goal to make every plotter work with as many data sources as possible, +to enable the parallel usage of as many datasources as possible. + +## notes https://matplotlib.org/3.1.1/gallery/color/colormap_reference.html https://unidata.github.io/MetPy/v1.0/api/generated/metpy.plots.ctables.html |