sct 0.0.0.dev0__py3-none-any.whl

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.
sct/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ # SPDX-FileCopyrightText: Aresys S.r.l. <info@aresys.it>
2
+ # SPDX-License-Identifier: MIT
3
+
4
+ """
5
+ SCT: the Python SAR Calibration Tool for quality data analysis - PLACEHOLDER
6
+ ----------------------------------------------------------------------------
7
+ """
8
+
9
+ __version__ = "0.0.0.dev0"
sct/core/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ # SPDX-FileCopyrightText: Aresys S.r.l. <info@aresys.it>
2
+ # SPDX-License-Identifier: MIT
3
+
4
+ """
5
+ SCT: CORE module
6
+ ----------------
7
+ """
sct/core/base.py ADDED
@@ -0,0 +1,28 @@
1
+ # SPDX-FileCopyrightText: Aresys S.r.l. <info@aresys.it>
2
+ # SPDX-License-Identifier: MIT
3
+
4
+ """Analyses Handler for registration"""
5
+
6
+ from __future__ import annotations
7
+
8
+ from dataclasses import dataclass
9
+ from pathlib import Path
10
+ from typing import Any, Callable
11
+
12
+
13
+ @dataclass
14
+ class AnalysisTestingHandler:
15
+ """Analysis handler for testing definition"""
16
+
17
+ api_runner: Callable[[Any, Path, Any | None, bool], Any]
18
+ cli_runner: Callable[[Any, Path, Path | None, bool], Any]
19
+ validator: Callable[[Any, Any], None]
20
+
21
+
22
+ @dataclass
23
+ class AnalysisHandler:
24
+ """Analysis handler definition"""
25
+
26
+ config: Any
27
+ cli_command: Any | None
28
+ testing: AnalysisTestingHandler | None
sct/core/registry.py ADDED
@@ -0,0 +1,15 @@
1
+ # SPDX-FileCopyrightText: Aresys S.r.l. <info@aresys.it>
2
+ # SPDX-License-Identifier: MIT
3
+
4
+ """Analyses Registry"""
5
+
6
+ from __future__ import annotations
7
+
8
+ from sct.core.base import AnalysisHandler
9
+
10
+ ANALYSIS_REGISTRY: dict[str, AnalysisHandler] = {}
11
+
12
+
13
+ def register_analysis(analysis_type: str, handler: AnalysisHandler):
14
+ """Registration of an AnalysisHandler."""
15
+ ANALYSIS_REGISTRY[analysis_type] = handler
@@ -0,0 +1,81 @@
1
+ Metadata-Version: 2.4
2
+ Name: sct
3
+ Version: 0.0.0.dev0
4
+ Summary: SCT (SAR Calibration Toolbox) is the Aresys Python module for SAR products quality analysis.
5
+ Author-email: "Aresys S.R.L." <info@aresys.it>
6
+ License: MIT License
7
+
8
+ Copyright (C) Aresys S.r.l. <info@aresys.it>
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+ License-File: LICENSE.txt
28
+ Classifier: Development Status :: 1 - Planning
29
+ Classifier: Intended Audience :: Developers
30
+ Classifier: Intended Audience :: Education
31
+ Classifier: Intended Audience :: Science/Research
32
+ Classifier: License :: OSI Approved :: MIT License
33
+ Classifier: Natural Language :: English
34
+ Classifier: Operating System :: OS Independent
35
+ Classifier: Programming Language :: Python
36
+ Classifier: Programming Language :: Python :: 3.11
37
+ Classifier: Programming Language :: Python :: 3.12
38
+ Classifier: Programming Language :: Python :: 3.13
39
+ Classifier: Topic :: Scientific/Engineering
40
+ Classifier: Topic :: Software Development :: Libraries
41
+ Classifier: Topic :: Utilities
42
+ Classifier: Typing :: Typed
43
+ Requires-Python: >=3.11
44
+ Provides-Extra: dev
45
+ Requires-Dist: nox; extra == 'dev'
46
+ Requires-Dist: pylint; extra == 'dev'
47
+ Requires-Dist: ruff; extra == 'dev'
48
+ Provides-Extra: doc
49
+ Requires-Dist: ipython; extra == 'doc'
50
+ Requires-Dist: nbsphinx; extra == 'doc'
51
+ Requires-Dist: pydata-sphinx-theme; extra == 'doc'
52
+ Requires-Dist: sphinx; extra == 'doc'
53
+ Requires-Dist: sphinx-copybutton; extra == 'doc'
54
+ Requires-Dist: sphinx-design; extra == 'doc'
55
+ Provides-Extra: localtesting
56
+ Requires-Dist: sct-aresys-reader; extra == 'localtesting'
57
+ Requires-Dist: sct-sentinel1-reader; extra == 'localtesting'
58
+ Provides-Extra: test
59
+ Requires-Dist: coverage; extra == 'test'
60
+ Requires-Dist: unittest-xml-reporting; extra == 'test'
61
+ Description-Content-Type: text/markdown
62
+
63
+ # SAR Calibration Toolbox (SCT)
64
+
65
+ Sar Calibration Toolbox (SCT) is the official Aresys Python toolbox for SAR quality data processing.
66
+ This software provides several features to perform a quality analysis of SAR L1-B products (both SLC and GRD).
67
+
68
+ ## Project Status
69
+
70
+ ⚠️ **Coming Soon** ⚠️
71
+
72
+ This package is currently a placeholder release.
73
+
74
+ It has been published to PyPI to reserve the project name as part of our release and distribution planning process.
75
+ The full implementation, documentation, and production-ready features will be made available in an upcoming official release.
76
+
77
+ At this stage, the package does not provide functional capabilities and **should not be used in production environments**.
78
+
79
+ Further updates, including technical documentation and usage guidelines, will follow shortly.
80
+
81
+ Stay tuned for updates. 🚀
@@ -0,0 +1,8 @@
1
+ sct/__init__.py,sha256=vAT-HCR6g1Wsuv2uQcqL8ypU_0Tf0W-4zvNdKu5_Te0,288
2
+ sct/core/__init__.py,sha256=X3ILBaO9pl6sKqNSKKg2SINrhFJDTKvkwed2zAr2GFE,138
3
+ sct/core/base.py,sha256=wBmygj9knCD9zyaPC3BixKKi2qJwiJcc4dMh5OJSkHo,707
4
+ sct/core/registry.py,sha256=Xqwz1IRtVjgWOcyuIzbXkBUtkrmofvAdN0qK5H8jt0A,423
5
+ sct-0.0.0.dev0.dist-info/METADATA,sha256=TzMKymllQU0VvNdOcnxH0w55t6n5OWR0msSMIauGsC0,3732
6
+ sct-0.0.0.dev0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
7
+ sct-0.0.0.dev0.dist-info/licenses/LICENSE.txt,sha256=ghpoTMO3cD8pZJfaY7VtSv57JvZOsLuSCiysG-ERAuY,1103
8
+ sct-0.0.0.dev0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -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.