Metadata-Version: 2.2
Name: odb4py
Version: 1.1.0
Summary: Python extension to read the ECMWF ODB1 format
Keywords: ECMWF,ODB,meteorology,python,database,extension
Author-Email: Idir Dehmous <idehmous@meteo.be>
License: Apache-2.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: POSIX :: Linux
Project-URL: Homepage, https://github.com/idirdehmous/odb4py_1.1.0
Project-URL: Source, https://github.com/idirdehmous/odb4py_1.1.0
Project-URL: Documentation, https://github.com/idirdehmous/odb4py/blob/main/README.md
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# odb4py 1.1.0 release

## Description

**odb4py** is a C/Python interface to read and query ECMWF ODB1 databases.<br>
It provides high-performance access to ODB data through a native C backend, with seamless integration into the Python scientific ecosystem.<br>
The package embeds a customized version of the ECMWF ODB software [odb_api_bundle-0.18.1-Source](https://confluence.ecmwf.int) and is distributed as **manylinux wheels**, requiring no external ODB installation.

---

## Features

- Native C backend based on ECMWF ODB1
- Support for IFS and ARPEGE ODB databases
- SQL-like query interface
- Fast data access with NumPy and pandas integration
- manylinux wheels (portable across Linux distributions)
- No runtime dependency on system ODB or ECMWF bundles

---

## Installation

The **odb4py** package can be installed from PyPI using `pip`:

```bash
pip install odb4py
```

## Installation test 
`from odb4py import core  # The C extension` <br>
`from odb4py import utils # The pure python modules ` 



## Requirements
Python ≥ 3.9 <br>
NumPy  ≥ 2.0 <br>
Linux system (manylinux2014 compatible)

## Scientific context
ODB (Observation DataBase) is a column-oriented database format developed at ECMWF
and widely used in numerical weather prediction systems such as IFS,ARPEGE and their canonical configurations.<br>

**odb4py** is primarily designed for:<br>
- Meteorologists and atmospheric scientists (especially within the ACCORD consortium)<br>
- Operational and research environments
- Post-processing and diagnostic workflows
- The package focuses on read-only access and data extraction for scientific analysis.


## License
Apache License, Version 2.0. [See LICENSE for details ](https://www.apache.org/licenses/LICENSE-2.0).


## Acknowledgements
This project incorporates and is derived from the ECMWF ODB software. <br/>

ODB was developed at the European Centre for Medium-Range Weather Forecasts (ECMWF)
by [S. Saarinen et al](https://www.ecmwf.int/sites/default/files/elibrary/2004/76278-ifs-documentation-cy36r1-part-i-observation-processing_1.pdf). All rights to the original ODB software remain with ECMWF
and their respective owners.
