ECMWF's GRIB and BUFR decoding/encoding library
Go to file
Shahram Najm f3f8025d57 Testing: GRIB1 data_dummy_field packing 2024-01-10 16:20:12 +00:00
.github Add version to nightly ci install path 2023-12-11 10:36:26 +01:00
bamboo Get Bamboo CIE to work 2023-01-27 16:57:42 +00:00
cmake Add libaec_ROOT as search hint for FindAEC 2023-09-25 09:30:44 +01:00
confluence ECC-1235: Add to Confluence 2021-04-26 14:28:30 +01:00
data Testing: Gaussian sub-area legacy 2024-01-05 16:05:59 +00:00
definitions Definitions: GTS formatting 2024-01-03 10:55:32 +00:00
deprecated Deprecate the old Windows Visual Studio solution/project files 2023-07-12 19:23:02 +01:00
doxygen Doxygen: Fix python version 2022-12-27 13:10:01 +00:00
examples Remove deprecated file 2024-01-08 18:50:33 +00:00
experimental Remove deprecated files 2023-01-29 18:10:47 +00:00
fortran Testing: Fortran read bytes 2024-01-08 13:42:39 +00:00
html Documentation 2022-05-17 13:57:48 +01:00
ifs_samples IFS Samples: GRIB samples with packingType=grid_ieee 2022-06-30 19:09:15 +01:00
memfs ECC-1276: MEMFS: Better management of generated files 2021-08-31 11:38:56 +01:00
samples Testing: HDF5 2024-01-07 13:22:05 +00:00
share/eccodes Rebranding 2015-02-20 13:54:12 +00:00
src Action write: check for -ve value 2024-01-10 15:50:30 +00:00
tests Testing: GRIB1 data_dummy_field packing 2024-01-10 16:20:12 +00:00
tools Tools: deprecated options 2024-01-10 12:42:17 +00:00
.appveyor.yml Windows: Upgrade to Visual Studio 2022 2023-10-10 17:49:20 +01:00
.clang-format Clang-format 2023-02-13 10:36:47 +00:00
.gitignore Ignore *.analyzerinfo *.snalyzerinfo files 2023-06-13 12:25:25 +00:00
.travis.yml GitHub CI: remove ENABLE_PYTHON=0 (By default Python2 is disabled) 2020-12-22 19:34:54 +00:00
AUTHORS Update author list 2021-03-21 17:26:25 +00:00
CMakeLists.txt Correct spelling of JasPer library 2023-08-04 22:19:53 +01:00
COPYING Ported grib_api 1.10.4 from p4 to git 2013-03-25 12:04:10 +00:00
ChangeLog Update URLs 2019-01-28 12:47:22 +00:00
INSTALL Direct users to the support portal 2023-06-14 10:05:57 +00:00
LICENSE Copyright notices: use new format 2020-01-28 18:07:47 +00:00
NEWS Update URLs 2019-01-28 12:47:22 +00:00
NOTICE Fix WMO URL 2021-12-26 20:30:56 +00:00
README.md Badge for code coverage 2023-07-14 16:13:00 +01:00
VERSION Bump up version 2023-12-11 10:53:40 +00:00
eccodes-import.cmake.in ECC-1143: CMake: Migration to ecbuild v3.4 2020-08-27 16:01:14 +01:00
eccodes.code-workspace Memfs generation 2020-10-19 09:16:24 +01:00
eccodes.sublime-project Update sublime text project 2017-03-17 18:46:27 +00:00
eccodes_config.h.in ECC-1521: Drop support for 32-bit architectures 2023-02-02 16:59:06 +00:00
memfs.py Performance: Exclude METAR definition files from MEMFS 2022-07-19 12:45:42 +01:00
project_summary.cmake Python3: Project summary 2018-11-26 15:20:41 +00:00

README.md

ecCodes

Linux & macOS: master Linux & macOS: develop

Windows: master Windows: develop

codecov

ecCodes is a package developed by ECMWF which provides an application programming interface and a set of tools for decoding and encoding messages in the following formats:

  • WMO FM-92 GRIB edition 1 and edition 2
  • WMO FM-94 BUFR edition 3 and edition 4
  • WMO GTS abbreviated header (only decoding)

A useful set of command line tools provide quick access to the messages. C, Fortran 90 and Python interfaces provide access to the main ecCodes functionality.

ecCodes is an evolution of GRIB API. It is designed to provide the user with a simple set of functions to access data from several formats with a key/value approach.

Documentation can be found here: https://confluence.ecmwf.int/display/ECC/ecCodes+Home

INSTALLATION

  1. Download ecCodes from https://confluence.ecmwf.int/display/ECC/Releases

  2. Unpack distribution:

    tar -xzf eccodes-x.y.z-Source.tar.gz
    
  3. Create a separate directory to build ecCodes:

    mkdir build
    cd build
    
  4. Run cmake pointing to the source and specify the installation location:

    cmake  ../eccodes-x.y.z-Source -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
    

    It is strongly recommended that you install into a clean directory

  5. Compile, test and install:

    make
    ctest
    make install
    

To add the Python3 bindings, use pip3 install from PyPI as follows:

pip3 install eccodes

or

pip3 install --install-option="--prefix=/path/to/where/you/install/eccodes" eccodes

For more details, please see: https://confluence.ecmwf.int/display/ECC/ecCodes+installation

If you encounter any problems please visit our Support Portal:

https://support.ecmwf.int

(C) Copyright 2005- ECMWF.

This software is licensed under the terms of the Apache Licence Version 2.0 which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.

In applying this licence, ECMWF does not waive the privileges and immunities granted to it by virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.