eccodes

License Crates.io dependency status GitHub Workflow Status docs.rs

This crate contains safe high-level bindings for ecCodes library. Bindings can be considered safe mainly because all crate structures take ownership of the data in memory before passing the raw pointer to ecCodes.

Currently only reading of GRIB files is supported.

As the API of this crate differs significantly from the API of ecCodes library make sure to read its documentation. Read this section to learn more about design decisions of this crate.

If you want to see more features released quicker do not hesitate to contribute and check out Github repository. All submitted issues and pull requests are welcome.

ecCodes is an open-source library for reading and writing GRIB and BUFR files developed by European Centre for Medium-Range Weather Forecasts.

Because ecCodes supports mainly Linux platforms, this crate is not tested on other architectures.

Usage

ecCodes installation

This crate uses eccodes-sys with default options to link ecCodes. Check eccodes-sys website for more details on how it links the library.

The reccomended way to install ecCodes on your computer is using your package manager. For example, on Ubuntu you can use apt-get:

bash $ sudo apt-get install libeccodes-dev

Alternatively, you can install the library manually from source in suitable directory following this instructions.

Then add the lib/pkgconfig directory from your ecCodes installation directory to the PKG_CONFIG_PATH environmental variable. If ecCodes have been compiled as shared library you will also need to specify LD_LIBRARY_PATH. For example:

bash $ export PKG_CONFIG_PATH=<your_eccodes_path>/lib/pkgconfig $ export LD_LIBRARY_PATH=<your_eccodes_path>/lib

Accessing GRIB files

This crate provides an access to GRIB file by creating a CodesHandle and reading messages from the file with it.

The CodesHandle can be constructed in two ways:

Data (messages) inside the GRIB file can be accessed using the Iterator by iterating over the CodesHandle.

The Iterator returns a KeyedMessage structure which implements some methods to access data values. The data inside KeyedMessage is provided directly as Key or as more specific data type.

Example

```rust // We are reading the mean sea level pressure in Reykjavik // for 1st June 2021 00:00 UTC (data from ERA5)

// Open the GRIB file and create the CodesHandle let filepath = Path::new("./data/iceland.grib"); let productkind = ProductKind::GRIB;

let handle = CodesHandle::newfromfile(filepath, productkind).unwrap();

// Use iterator to get a Keyed message with shortName "msl" and typeOfLevel "surface" // First, filter and collect the messages to get those that we want let level: Result, CodesError> = handle .filter(|msg| { let msg = msg.as_ref().unwrap();

msg.read_key("shortName").unwrap() == Str(String::from("msl"))
    && msg.read_key("typeOfLevel").unwrap() == Str(String::from("surface"))
})
.collect();

// Now unwrap and access the first and only element of resulting vector let level = level.unwrap()[0];

// Read the value of KeyedMessage for the grid point nearest of Reykjavik (64N -22E) // Not yet implemented ```

Features

To build your own crate with this crate as dependency on docs.rs without linking ecCodes add following lines to your Cargo.toml

toml [package.metadata.docs.rs] features = ["eccodes/docs"]

Crate safety

Because the ecCodes library API heavily relies on raw pointers simply making ecCodes functions callable without unsafe block would still allow for creation of dangling pointers and use-after-free, and the crate would not be truly safe. Therefore these bindings are rather thick wrapper as they need to take full ownership of accessed data to make the code safe. Having the data and pointers contained in dedicated data structures is also an occassion to make this crate API more convienient to use than the original ecCodes API (which is not really user-friendly).

Roadmap

(Functions from ecCodes API wrapped at given stage are marked in parentheses)

License

The ecCodes library and these bindings are licensed under the Apache License Version 2.0