eo-products 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- eo_products-1.0.0/.gitignore +196 -0
- eo_products-1.0.0/LICENSE.txt +21 -0
- eo_products-1.0.0/PKG-INFO +131 -0
- eo_products-1.0.0/README.md +63 -0
- eo_products-1.0.0/docs/about/build.template.md +13 -0
- eo_products-1.0.0/docs/assets/favicon.png +0 -0
- eo_products-1.0.0/docs/index.md +44 -0
- eo_products-1.0.0/docs/install.md +26 -0
- eo_products-1.0.0/docs/readers/API/cosmo.md +16 -0
- eo_products-1.0.0/docs/readers/API/eos-04.md +16 -0
- eo_products-1.0.0/docs/readers/API/iceye.md +16 -0
- eo_products-1.0.0/docs/readers/API/novasar-1.md +16 -0
- eo_products-1.0.0/docs/readers/API/radarsat-2.md +16 -0
- eo_products-1.0.0/docs/readers/API/saocom.md +16 -0
- eo_products-1.0.0/docs/readers/API/sentinel-1.md +16 -0
- eo_products-1.0.0/docs/readers/API/strix.md +16 -0
- eo_products-1.0.0/docs/readers/API/terrasar-x.md +16 -0
- eo_products-1.0.0/docs/readers/changelog.md +13 -0
- eo_products-1.0.0/pyproject.toml +96 -0
- eo_products-1.0.0/src/eo_products/__init__.py +6 -0
- eo_products-1.0.0/src/eo_products/common/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/common/utilities.py +291 -0
- eo_products-1.0.0/src/eo_products/cosmo/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/cosmo/reader.py +171 -0
- eo_products-1.0.0/src/eo_products/cosmo/utilities.py +841 -0
- eo_products-1.0.0/src/eo_products/eos04/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/eos04/reader.py +214 -0
- eo_products-1.0.0/src/eo_products/eos04/utilities.py +939 -0
- eo_products-1.0.0/src/eo_products/iceye/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/iceye/reader.py +188 -0
- eo_products-1.0.0/src/eo_products/iceye/utilities.py +1088 -0
- eo_products-1.0.0/src/eo_products/novasar1/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/novasar1/reader.py +220 -0
- eo_products-1.0.0/src/eo_products/novasar1/utilities.py +940 -0
- eo_products-1.0.0/src/eo_products/radarsat2/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/radarsat2/reader.py +190 -0
- eo_products-1.0.0/src/eo_products/radarsat2/utilities.py +938 -0
- eo_products-1.0.0/src/eo_products/saocom/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/saocom/reader.py +158 -0
- eo_products-1.0.0/src/eo_products/saocom/utilities.py +878 -0
- eo_products-1.0.0/src/eo_products/sentinel1/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/sentinel1/reader.py +404 -0
- eo_products-1.0.0/src/eo_products/sentinel1/utilities.py +1652 -0
- eo_products-1.0.0/src/eo_products/strix/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/strix/reader.py +283 -0
- eo_products-1.0.0/src/eo_products/strix/utilities.py +869 -0
- eo_products-1.0.0/src/eo_products/terrasarx/__init__.py +4 -0
- eo_products-1.0.0/src/eo_products/terrasarx/raster_reader.py +313 -0
- eo_products-1.0.0/src/eo_products/terrasarx/reader.py +288 -0
- eo_products-1.0.0/src/eo_products/terrasarx/utilities.py +971 -0
- eo_products-1.0.0/tests/__init__.py +4 -0
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py,cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# poetry
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
102
|
+
#poetry.lock
|
|
103
|
+
|
|
104
|
+
# pdm
|
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
106
|
+
#pdm.lock
|
|
107
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
108
|
+
# in version control.
|
|
109
|
+
# https://pdm-project.org/#use-with-ide
|
|
110
|
+
.pdm.toml
|
|
111
|
+
.pdm-python
|
|
112
|
+
.pdm-build/
|
|
113
|
+
|
|
114
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
115
|
+
__pypackages__/
|
|
116
|
+
|
|
117
|
+
# Celery stuff
|
|
118
|
+
celerybeat-schedule
|
|
119
|
+
celerybeat.pid
|
|
120
|
+
|
|
121
|
+
# SageMath parsed files
|
|
122
|
+
*.sage.py
|
|
123
|
+
|
|
124
|
+
# Environments
|
|
125
|
+
.env
|
|
126
|
+
.venv
|
|
127
|
+
env/
|
|
128
|
+
venv/
|
|
129
|
+
ENV/
|
|
130
|
+
env.bak/
|
|
131
|
+
venv.bak/
|
|
132
|
+
|
|
133
|
+
# Spyder project settings
|
|
134
|
+
.spyderproject
|
|
135
|
+
.spyproject
|
|
136
|
+
|
|
137
|
+
# Rope project settings
|
|
138
|
+
.ropeproject
|
|
139
|
+
|
|
140
|
+
# mkdocs documentation
|
|
141
|
+
/site
|
|
142
|
+
|
|
143
|
+
# mypy
|
|
144
|
+
.mypy_cache/
|
|
145
|
+
.dmypy.json
|
|
146
|
+
dmypy.json
|
|
147
|
+
|
|
148
|
+
# Pyre type checker
|
|
149
|
+
.pyre/
|
|
150
|
+
|
|
151
|
+
# pytype static type analyzer
|
|
152
|
+
.pytype/
|
|
153
|
+
|
|
154
|
+
# Cython debug symbols
|
|
155
|
+
cython_debug/
|
|
156
|
+
|
|
157
|
+
# PyCharm
|
|
158
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
159
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
160
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
161
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
162
|
+
#.idea/
|
|
163
|
+
|
|
164
|
+
# Distribution / packaging
|
|
165
|
+
build/
|
|
166
|
+
_build/
|
|
167
|
+
dist/
|
|
168
|
+
*.egg-info/
|
|
169
|
+
.ipynb_checkpoints/
|
|
170
|
+
.nox
|
|
171
|
+
|
|
172
|
+
# Pyenv
|
|
173
|
+
.python-version
|
|
174
|
+
|
|
175
|
+
# VS Code project settings
|
|
176
|
+
.vscode
|
|
177
|
+
|
|
178
|
+
# PyCharm project settings
|
|
179
|
+
.idea
|
|
180
|
+
|
|
181
|
+
# Spyder project settings
|
|
182
|
+
.spyproject
|
|
183
|
+
|
|
184
|
+
# Environments
|
|
185
|
+
venv*
|
|
186
|
+
|
|
187
|
+
# Docker
|
|
188
|
+
docker-compose.yml
|
|
189
|
+
Dockerfile
|
|
190
|
+
.devcontainer
|
|
191
|
+
|
|
192
|
+
# Other
|
|
193
|
+
*.bak
|
|
194
|
+
.coverage
|
|
195
|
+
htmlcov
|
|
196
|
+
*.svg
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (C) Aresys S.r.l. <info@aresys.it>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: eo_products
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Collection of SAR Earth Observation L1 Product Formats readers.
|
|
5
|
+
Project-URL: Homepage, https://github.com/aresys-srl/eo_products
|
|
6
|
+
Project-URL: Repository, https://github.com/aresys-srl/eo_products
|
|
7
|
+
Project-URL: Documentation, https://aresys-srl.github.io/eo_products
|
|
8
|
+
Author-email: "Aresys S.R.L." <info@aresys.it>
|
|
9
|
+
License: MIT License
|
|
10
|
+
|
|
11
|
+
Copyright (C) Aresys S.r.l. <info@aresys.it>
|
|
12
|
+
|
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
15
|
+
in the Software without restriction, including without limitation the rights
|
|
16
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
17
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
18
|
+
furnished to do so, subject to the following conditions:
|
|
19
|
+
|
|
20
|
+
The above copyright notice and this permission notice shall be included in all
|
|
21
|
+
copies or substantial portions of the Software.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
27
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
29
|
+
SOFTWARE.
|
|
30
|
+
License-File: LICENSE.txt
|
|
31
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
32
|
+
Classifier: Intended Audience :: Developers
|
|
33
|
+
Classifier: Intended Audience :: Education
|
|
34
|
+
Classifier: Intended Audience :: Science/Research
|
|
35
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
36
|
+
Classifier: Natural Language :: English
|
|
37
|
+
Classifier: Operating System :: OS Independent
|
|
38
|
+
Classifier: Programming Language :: Python
|
|
39
|
+
Classifier: Programming Language :: Python :: 3
|
|
40
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
44
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
45
|
+
Classifier: Topic :: Scientific/Engineering
|
|
46
|
+
Classifier: Topic :: Utilities
|
|
47
|
+
Classifier: Typing :: Typed
|
|
48
|
+
Requires-Python: >=3.11
|
|
49
|
+
Requires-Dist: h5py
|
|
50
|
+
Requires-Dist: imagecodecs
|
|
51
|
+
Requires-Dist: lxml
|
|
52
|
+
Requires-Dist: numpy>2
|
|
53
|
+
Requires-Dist: perseo-core>=1.0.0
|
|
54
|
+
Requires-Dist: sarpy
|
|
55
|
+
Requires-Dist: tifffile
|
|
56
|
+
Requires-Dist: zarr
|
|
57
|
+
Provides-Extra: dev
|
|
58
|
+
Requires-Dist: nox; extra == 'dev'
|
|
59
|
+
Requires-Dist: pylint; extra == 'dev'
|
|
60
|
+
Requires-Dist: ruff; extra == 'dev'
|
|
61
|
+
Provides-Extra: docs
|
|
62
|
+
Requires-Dist: mkdocstrings-python; extra == 'docs'
|
|
63
|
+
Requires-Dist: zensical; extra == 'docs'
|
|
64
|
+
Provides-Extra: test
|
|
65
|
+
Requires-Dist: coverage; extra == 'test'
|
|
66
|
+
Requires-Dist: unittest-xml-reporting; extra == 'test'
|
|
67
|
+
Description-Content-Type: text/markdown
|
|
68
|
+
|
|
69
|
+
# EO Products
|
|
70
|
+
|
|
71
|
+

|
|
72
|
+
[](https://python.org)
|
|
73
|
+
[](https://pypi.org/project/eo-products/)
|
|
74
|
+
|
|
75
|
+
**EO Products** is a Python package designed to simplify access to **Level-1 Synthetic Aperture Radar** (SAR) Earth Observation products and SAR auxiliary data.
|
|
76
|
+
It provides a unified collection of readers tailored to a variety of SAR product formats, enabling users to efficiently
|
|
77
|
+
extract and work with both metadata and raster data.
|
|
78
|
+
|
|
79
|
+
The readers included in this package are built to handle the most commonly used metadata fields and ensure full access to
|
|
80
|
+
the associated raster data, making them suitable for a wide range of scientific and operational applications.
|
|
81
|
+
|
|
82
|
+
EO Products is intended for developers, researchers, and practitioners who need a practical and consistent interface for
|
|
83
|
+
ingesting SAR data into analysis workflows, without requiring deep familiarity with the complexities of individual
|
|
84
|
+
product formats.
|
|
85
|
+
|
|
86
|
+
> While the implementation aims to cover the majority of relevant product information, it does not guarantee complete
|
|
87
|
+
> representation of every metadata element available in the original product specifications.
|
|
88
|
+
|
|
89
|
+
## Supported Formats
|
|
90
|
+
|
|
91
|
+
EO Products currently supports the following SAR products:
|
|
92
|
+
|
|
93
|
+
| Format | Modes |
|
|
94
|
+
|--------|-------|
|
|
95
|
+
| **Sentinel-1 SAFE** | SLC and GRD [topsar, stripmap, wave, notch] |
|
|
96
|
+
| **NovaSAR-1** | SLC, GRD, SCD and SRD |
|
|
97
|
+
| **ICEYE** | SLC and GRD [topsar, stripmap, spotlight] |
|
|
98
|
+
| **SAOCOM** | SLC and GRD [topsar, stripmap] |
|
|
99
|
+
| **EOS-04** | SLC and GRD |
|
|
100
|
+
| **COSMO SkyMed** | SLC and GRD |
|
|
101
|
+
| **RADARSAT-2** | SLC and GRD [scansar, stripmap] |
|
|
102
|
+
| **TerraSAR-X** | SLC and GRD [scansar (GRD only), stripmap] |
|
|
103
|
+
| **STRIX (Synspective)** | SLC [stripmap, spotlight] |
|
|
104
|
+
|
|
105
|
+
## Installation
|
|
106
|
+
|
|
107
|
+
This project requires Python **3.11 or higher**.
|
|
108
|
+
|
|
109
|
+
This package can be installed using ``pip``:
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
pip install eo-products
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Documentation
|
|
116
|
+
|
|
117
|
+
Full documentation is available at [https://aresys-srl.github.io/eo_products](https://aresys-srl.github.io/eo_products).
|
|
118
|
+
|
|
119
|
+
## Contributing
|
|
120
|
+
|
|
121
|
+
Contributions are welcome! If you encounter a bug, have a feature request, or want to contribute code:
|
|
122
|
+
|
|
123
|
+
- **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.
|
|
124
|
+
- **Submit changes**: fork the repository, create a feature branch, and open a pull request. Ensure your code passes the existing linting and test suite.
|
|
125
|
+
- **Questions**: use GitHub Discussions for general questions and discussions.
|
|
126
|
+
|
|
127
|
+
## License
|
|
128
|
+
|
|
129
|
+
This project is licensed under the MIT License.
|
|
130
|
+
|
|
131
|
+
Copyright © 2026-present Aresys S.r.L. <info@aresys.it>
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# EO Products
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
[](https://python.org)
|
|
5
|
+
[](https://pypi.org/project/eo-products/)
|
|
6
|
+
|
|
7
|
+
**EO Products** is a Python package designed to simplify access to **Level-1 Synthetic Aperture Radar** (SAR) Earth Observation products and SAR auxiliary data.
|
|
8
|
+
It provides a unified collection of readers tailored to a variety of SAR product formats, enabling users to efficiently
|
|
9
|
+
extract and work with both metadata and raster data.
|
|
10
|
+
|
|
11
|
+
The readers included in this package are built to handle the most commonly used metadata fields and ensure full access to
|
|
12
|
+
the associated raster data, making them suitable for a wide range of scientific and operational applications.
|
|
13
|
+
|
|
14
|
+
EO Products is intended for developers, researchers, and practitioners who need a practical and consistent interface for
|
|
15
|
+
ingesting SAR data into analysis workflows, without requiring deep familiarity with the complexities of individual
|
|
16
|
+
product formats.
|
|
17
|
+
|
|
18
|
+
> While the implementation aims to cover the majority of relevant product information, it does not guarantee complete
|
|
19
|
+
> representation of every metadata element available in the original product specifications.
|
|
20
|
+
|
|
21
|
+
## Supported Formats
|
|
22
|
+
|
|
23
|
+
EO Products currently supports the following SAR products:
|
|
24
|
+
|
|
25
|
+
| Format | Modes |
|
|
26
|
+
|--------|-------|
|
|
27
|
+
| **Sentinel-1 SAFE** | SLC and GRD [topsar, stripmap, wave, notch] |
|
|
28
|
+
| **NovaSAR-1** | SLC, GRD, SCD and SRD |
|
|
29
|
+
| **ICEYE** | SLC and GRD [topsar, stripmap, spotlight] |
|
|
30
|
+
| **SAOCOM** | SLC and GRD [topsar, stripmap] |
|
|
31
|
+
| **EOS-04** | SLC and GRD |
|
|
32
|
+
| **COSMO SkyMed** | SLC and GRD |
|
|
33
|
+
| **RADARSAT-2** | SLC and GRD [scansar, stripmap] |
|
|
34
|
+
| **TerraSAR-X** | SLC and GRD [scansar (GRD only), stripmap] |
|
|
35
|
+
| **STRIX (Synspective)** | SLC [stripmap, spotlight] |
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
This project requires Python **3.11 or higher**.
|
|
40
|
+
|
|
41
|
+
This package can be installed using ``pip``:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
pip install eo-products
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Documentation
|
|
48
|
+
|
|
49
|
+
Full documentation is available at [https://aresys-srl.github.io/eo_products](https://aresys-srl.github.io/eo_products).
|
|
50
|
+
|
|
51
|
+
## Contributing
|
|
52
|
+
|
|
53
|
+
Contributions are welcome! If you encounter a bug, have a feature request, or want to contribute code:
|
|
54
|
+
|
|
55
|
+
- **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.
|
|
56
|
+
- **Submit changes**: fork the repository, create a feature branch, and open a pull request. Ensure your code passes the existing linting and test suite.
|
|
57
|
+
- **Questions**: use GitHub Discussions for general questions and discussions.
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
This project is licensed under the MIT License.
|
|
62
|
+
|
|
63
|
+
Copyright © 2026-present Aresys S.r.L. <info@aresys.it>
|
|
Binary file
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
icon: lucide/sparkles
|
|
3
|
+
title: Overview
|
|
4
|
+
tags:
|
|
5
|
+
- SAR
|
|
6
|
+
- SCT
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# SAR L1 Products Readers
|
|
10
|
+
|
|
11
|
+
``EO Products`` is a Python package designed to simplify access to **Level-1 Synthetic Aperture Radar** (SAR) Earth Observation products.
|
|
12
|
+
It provides a unified collection of readers tailored to a variety of SAR product formats, enabling users to efficiently
|
|
13
|
+
extract and work with both metadata and raster data.
|
|
14
|
+
|
|
15
|
+
The readers included in this package are built to handle the most commonly used metadata fields and ensure full access to
|
|
16
|
+
the associated raster data, making them suitable for a wide range of scientific and operational applications.
|
|
17
|
+
|
|
18
|
+
!!! warning "Reader Completeness"
|
|
19
|
+
|
|
20
|
+
While the implementation aims to cover the majority of relevant product information, it does not guarantee complete
|
|
21
|
+
representation of every metadata element available in the original product specifications.
|
|
22
|
+
|
|
23
|
+
EO Products is intended for developers, researchers, and practitioners who need a practical and consistent interface for
|
|
24
|
+
ingesting SAR data into analysis workflows, without requiring deep familiarity with the complexities of individual
|
|
25
|
+
product formats.
|
|
26
|
+
|
|
27
|
+
These readers are designed to be flexible and adaptable, allowing users to customize their workflows based on their specific
|
|
28
|
+
requirements and the characteristics of the data they are working with.
|
|
29
|
+
Most of [SCT Product Formats Plugins](http://intranet.aresys.it/sardashboard/develop/sct-plugins/docs/docs/latest/) are
|
|
30
|
+
based on the readers included in this package.
|
|
31
|
+
|
|
32
|
+
## Supported Formats
|
|
33
|
+
|
|
34
|
+
EO Products currently supports the following SAR products:
|
|
35
|
+
|
|
36
|
+
- **Sentinel-1 SAFE**: SLC and GRD products [topsar, stripmap, wave, notch]
|
|
37
|
+
- **NovaSAR-1**: SLC, GRD, SCD and SRD products
|
|
38
|
+
- **ICEYE**: SLC and GRD products [topsar, stripmap, spotlight]
|
|
39
|
+
- **SAOCOM**: SLC and GRD products [topsar, stripmap]
|
|
40
|
+
- **EOS-04**: SLC, GRD products
|
|
41
|
+
- **COSMO SkyMed**: SLC, GRD products
|
|
42
|
+
- **RADARSAT-2**: SLC, GRD products [scansar, stripmap]
|
|
43
|
+
- **TerraSAR-X**: SLC and GRD products [scansar (GRD only), stripmap]
|
|
44
|
+
- **STRIX (Synspective)**: SLC products [stripmap, spotlight]
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
icon: lucide/arrow-big-down-dash
|
|
3
|
+
title: "Install"
|
|
4
|
+
tags:
|
|
5
|
+
- python
|
|
6
|
+
- pip
|
|
7
|
+
- install
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Installation
|
|
11
|
+
|
|
12
|
+
!!! note "Requirements"
|
|
13
|
+
|
|
14
|
+
This project requires a Python version **equal or higher than 3.11**.
|
|
15
|
+
|
|
16
|
+
This package can easily be installed using ``pip``:
|
|
17
|
+
|
|
18
|
+
```bash title="install with pip"
|
|
19
|
+
pip install eo-products
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
!!! tip "Virtual Environments"
|
|
23
|
+
|
|
24
|
+
We recommend using a dedicated virtual environment to install these packages.
|
|
25
|
+
This will ensure that the software is installed in a separate environment and avoids conflicts with other packages
|
|
26
|
+
or dependencies.
|