Experimental pure Python version of eccodes
Project description
pyeccodes
:warning: This is an experimental project: do not use in operations. The code has only been tested on a handful of GRIB files.
This is an experiment of a pure Python GRIB decoder based on eccodes. The code is automatically generated from the definition files and tables.
The package does not support encoding.
The difference with other Python bindings are:
- All arrays and lists are returns as numpy arrays
- Missing data values are set to numpy.NaN
- Asking for a missing key is not an error. The value None is returned
- If a key returns a missing value (e.g. 255), None is returned instead
You can use pyeccodes with cfgrib with a version greater or equal to 0.9.8.1.
Accessing data values:
from pyeccodes import Reader
reader = Reader("test.grib")
for grib in reader:
print(grib.get('date'))
print(grib.get('values'))
To get a list of all available keys:
from pyeccodes import Reader
reader = Reader("test.grib")
grib = next(reader)
grib.dump()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyeccodes-0.1.1.tar.gz
(1.5 MB
view details)
File details
Details for the file pyeccodes-0.1.1.tar.gz
.
File metadata
- Download URL: pyeccodes-0.1.1.tar.gz
- Upload date:
- Size: 1.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5b5e62b8ea3fcd069caa0dec48d7f67889a6eadf198e015ec029839935fe596 |
|
MD5 | 225e82798d5b5a068d19c5023ac4d724 |
|
BLAKE2b-256 | 171241637bfd719af54980495af5f080fb566803f26865e149660c1ac8b0b01a |