Code Monkey home page Code Monkey logo

dwdgribextractor's Introduction

dwdGribExtractor: A tiny Python interface to request and extract NWP grib file data from opendata.dwd.de

dwdGribExtractor is a smart package to easely extract data from numerical weather prediction grib files provided by DWD. The difference to other packages is the location flexibility. So every point on the 2.2km x 2.2km grid (ICON-D2) can be retrieved for the next X forecast hours.

At the moment only ICON_D2 is supported.

Supported weather variables

For currently available weather variabels see: ICON User Manual Chapter 6.1.4 table 6.4

Installation

Install with pip:

$ pip install dwdGrilbExtractor

Dependencies

To read the grib2 files xarray with cfgrib engine is used. The easiest way to install cfgrib and all its binary dependencies is via Conda:

$ conda install -c conda-forge cfgrib

alternatively, if you install the binary dependencies yourself, you can install the Python package from PyPI with:

$ pip install cfgrib

Binary dependencies

cfgrib depends on the eccodes python package to access the ECMWF ecCodes binary library, when not using conda please follow the System dependencies section there.

Windows

It is strongly recommended to use Unix enironment running dwdGrib2location. For windows several issues may appear. At the moment dwdGrib2location is tested with Windows10 and works if following requirements are satiesfied. To build eccodes on windows by your own should be avoided. The easiest way to use eccodes on windows is to install it in an MSYS environment.

  1. Install MSYS

  2. Install eccodes. Depending on your system run in the MSYS cli:

    $ pacman -S mingw-w64-ucrt-x86_64-eccodes
    
  3. Set environment variables:

    ECCODES_DIR = <path_to_ecccodes_install_dir> e.g (C:\msys64\ucrt64)
    ECCODES_DEFINITION_PATH = <path_to_eccodes_definitions> (e.g C:\msys64\ucrt64\share\eccodes\definitions)
    
  4. Add eccodes to path. This is the folder inside the MSYS environment where the .exe files are located:

    e.g. C:\msys64\ucrt64\bin
    
  5. Install ecCodes:

    $ pip install eccodes
    
  6. Install cfgrib:

    $ pip install cfgrib
    
  7. Check if cfgrib is working:

    $ python -m cfgrib selfcheck
    Found: ecCodes v2.20.0.
    Your system is ready.
    

Linux

1. Install eccodes with apt or build it by your own TODO

Example

locationList = {
    "Vienna": {
        "lat": 48.20,
        "lon": 16.37
    },
    "Graz": {
        "lat": 47.07,
        "lon": 15.43
    }
}

variables = ["aswdir_s", "aswdifd_s", "t_2m"]

forecast = ICON_D2(locations = locationList, forecastHours = 3)
data = forecast.collectData(varList = variables, cores = None) # Disable multiprocessing
#data = forecast.collectData(varList = variables, cores = 4)


#### Indexing one location
loc = "Graz"
result = data.loc[loc]
result = data.loc[loc, "2021-09-06 06:15:00"]

#### Indexing multiple locations
loc = ["Graz", "Vienna"]
result = data.loc[loc]

#### Indexing one location with datetime condition
loc = "Graz"
mask = data.loc[loc].index.get_level_values(0) > np.datetime64('2021-09-06T06:15:00')
mask = data.loc[loc].index.get_level_values(0).hour == 8
result = data.loc[loc][mask]

#### Indexing multiple locations with datetime condition
loc = ["Graz", "Vienna"]
mask = data.loc[loc].index.get_level_values(1) > np.datetime64('2021-09-06 06:15:00')
mask = data.loc[loc].index.get_level_values(1).hour == 8
result = data.loc[loc][mask]

Knwon Issues

Windows

  • Multiprocessing on some windows machines may not work. Disable it by setting forecast.collectData(varList = variables, cores = None)
  • Spyder IDE does not produce print outputs if multiprocessing is enabled.
  • Dont run the code in Spyder with F5 or debug mode. This calls runfile() and sometimes crashes memory.

Author

Manuel Strohmaier

License

Code license

Licensed under the MIT license. See LICENSE for details.

Data license

The DWD has information about their terms of use policy in German and English.

dwdgribextractor's People

Contributors

prayer007 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.