Metadata-Version: 2.4
Name: eo_products
Version: 1.0.0
Summary: Collection of SAR Earth Observation L1 Product Formats readers.
Project-URL: Homepage, https://github.com/aresys-srl/eo_products
Project-URL: Repository, https://github.com/aresys-srl/eo_products
Project-URL: Documentation, https://aresys-srl.github.io/eo_products
Author-email: "Aresys S.R.L." <info@aresys.it>
License: MIT License
        
        Copyright (C) Aresys S.r.l. <info@aresys.it>
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE.txt
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: h5py
Requires-Dist: imagecodecs
Requires-Dist: lxml
Requires-Dist: numpy>2
Requires-Dist: perseo-core>=1.0.0
Requires-Dist: sarpy
Requires-Dist: tifffile
Requires-Dist: zarr
Provides-Extra: dev
Requires-Dist: nox; extra == 'dev'
Requires-Dist: pylint; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocstrings-python; extra == 'docs'
Requires-Dist: zensical; extra == 'docs'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'
Requires-Dist: unittest-xml-reporting; extra == 'test'
Description-Content-Type: text/markdown

# EO Products

![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
[![Python 3.11+](https://img.shields.io/badge/python-3.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue)](https://python.org)
[![PyPI version](https://img.shields.io/pypi/v/eo-products)](https://pypi.org/project/eo-products/)

**EO Products** is a Python package designed to simplify access to **Level-1 Synthetic Aperture Radar** (SAR) Earth Observation products and SAR auxiliary data.
It provides a unified collection of readers tailored to a variety of SAR product formats, enabling users to efficiently
extract and work with both metadata and raster data.

The readers included in this package are built to handle the most commonly used metadata fields and ensure full access to
the associated raster data, making them suitable for a wide range of scientific and operational applications.

EO Products is intended for developers, researchers, and practitioners who need a practical and consistent interface for
ingesting SAR data into analysis workflows, without requiring deep familiarity with the complexities of individual
product formats.

> While the implementation aims to cover the majority of relevant product information, it does not guarantee complete
> representation of every metadata element available in the original product specifications.

## Supported Formats

EO Products currently supports the following SAR products:

| Format | Modes |
|--------|-------|
| **Sentinel-1 SAFE** | SLC and GRD [topsar, stripmap, wave, notch] |
| **NovaSAR-1** | SLC, GRD, SCD and SRD |
| **ICEYE** | SLC and GRD [topsar, stripmap, spotlight] |
| **SAOCOM** | SLC and GRD [topsar, stripmap] |
| **EOS-04** | SLC and GRD |
| **COSMO SkyMed** | SLC and GRD |
| **RADARSAT-2** | SLC and GRD [scansar, stripmap] |
| **TerraSAR-X** | SLC and GRD [scansar (GRD only), stripmap] |
| **STRIX (Synspective)** | SLC [stripmap, spotlight] |

## Installation

This project requires Python **3.11 or higher**.

This package can be installed using ``pip``:

```bash
pip install eo-products
```

## Documentation

Full documentation is available at [https://aresys-srl.github.io/eo_products](https://aresys-srl.github.io/eo_products).

## Contributing

Contributions are welcome! If you encounter a bug, have a feature request, or want to contribute code:

- **Report bugs & request features**: open an issue on [GitHub](https://github.com/aresys-srl/eo_products/issues). Include a clear description, steps to reproduce, and your environment details.
- **Submit changes**: fork the repository, create a feature branch, and open a pull request. Ensure your code passes the existing linting and test suite.
- **Questions**: use GitHub Discussions for general questions and discussions.

## License

This project is licensed under the MIT License.

Copyright &copy; 2026-present Aresys S.r.L. <info@aresys.it>
