sarkit-convert 0.1.0__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.
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.1
2
+ Name: sarkit-convert
3
+ Version: 0.1.0
4
+ Summary: Python library for converting SAR data to standard formats.
5
+ Author-Email: Valkyrie Systems Corporation <info@govsco.com>
6
+ License: MIT
7
+ Classifier: Development Status :: 2 - Pre-Alpha
8
+ Classifier: Intended Audience :: Science/Research
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Topic :: Scientific/Engineering
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Requires-Python: >=3.11
17
+ Requires-Dist: lxml>=5.1.0
18
+ Requires-Dist: numpy>=1.26.3
19
+ Requires-Dist: sarkit[verification]>=0.6.0
20
+ Provides-Extra: iceye
21
+ Requires-Dist: h5py>=3.12.1; extra == "iceye"
22
+ Requires-Dist: python-dateutil>=2.9.0; extra == "iceye"
23
+ Provides-Extra: cosmo
24
+ Requires-Dist: h5py>=3.12.1; extra == "cosmo"
25
+ Requires-Dist: python-dateutil>=2.9.0; extra == "cosmo"
26
+ Requires-Dist: scipy>=1.15.1; extra == "cosmo"
27
+ Requires-Dist: shapely>=2.0.2; extra == "cosmo"
28
+ Provides-Extra: tsx
29
+ Requires-Dist: lxml>=5.1.0; extra == "tsx"
30
+ Requires-Dist: python-dateutil>=2.9.0; extra == "tsx"
31
+ Requires-Dist: sarkit[verification]>=0.5.0; extra == "tsx"
32
+ Requires-Dist: scipy>=1.15.1; extra == "tsx"
33
+ Provides-Extra: sentinel
34
+ Requires-Dist: python-dateutil>=2.9.0; extra == "sentinel"
35
+ Requires-Dist: scipy>=1.15.1; extra == "sentinel"
36
+ Requires-Dist: tifffile>=2025.5.10; extra == "sentinel"
37
+ Provides-Extra: all
38
+ Requires-Dist: sarkit-convert[iceye]; extra == "all"
39
+ Requires-Dist: sarkit-convert[cosmo]; extra == "all"
40
+ Requires-Dist: sarkit-convert[tsx]; extra == "all"
41
+ Requires-Dist: sarkit-convert[sentinel]; extra == "all"
42
+ Provides-Extra: dev-lint
43
+ Requires-Dist: ruff>=0.3.0; extra == "dev-lint"
44
+ Requires-Dist: mypy>=1.8.0; extra == "dev-lint"
45
+ Requires-Dist: types-python-dateutil>=2.9.0; extra == "dev-lint"
46
+ Provides-Extra: dev-test
47
+ Requires-Dist: pytest>=7.4.4; extra == "dev-test"
48
+ Provides-Extra: dev
49
+ Requires-Dist: sarkit-convert[dev-lint,dev-test]; extra == "dev"
50
+ Description-Content-Type: text/markdown
51
+
52
+ <div align="center">
53
+
54
+ <img src="https://raw.githubusercontent.com/ValkyrieSystems/sarkit/main/docs/source/_static/sarkit_logo.png" width=200>
55
+
56
+ </div>
57
+
58
+ **sarkit-convert** is a Python library for converting SAR data to standard formats.
59
+
60
+ ## License
61
+ This repository is licensed under the [MIT license](./LICENSE).
62
+
63
+ A few tips for getting started using [PDM](https://pdm-project.org/en/latest/) are below:
64
+
65
+
66
+ ```shell
67
+ $ pdm install -G:all # install SARkit-convert with optional & dev dependencies
68
+ $ pdm run nox # run lint and tests
69
+ ```
@@ -0,0 +1,12 @@
1
+ sarkit_convert-0.1.0.dist-info/METADATA,sha256=2-lG0dGfU-M99LtveDx4ypQ9A_qvDwmsCRvMgv-Mre8,2668
2
+ sarkit_convert-0.1.0.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
3
+ sarkit_convert-0.1.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
+ sarkit_convert-0.1.0.dist-info/licenses/LICENSE,sha256=H0HxqjXuxJwqg17L2F5jjbrWm5IV-R_FNLbzu-eJEc0,1086
5
+ sarkit_convert/__init__.py,sha256=l_h1XRjbcNc4Hg66LvcjKzjk4lVlwaFLbNizvQtysgo,295
6
+ sarkit_convert/_utils.py,sha256=lNjo85sgJ9aMvnSWIABu57QCa_QXOyIGLWdviJLt6wQ,8566
7
+ sarkit_convert/_version.py,sha256=L6zbQIZKsAP-Knhm6fBcQFPoVdIDuejxze60qX23jiw,21
8
+ sarkit_convert/csk.py,sha256=Q6f49HZxul7KsGRgN4sStHkoNOft7RFnV-9leFNod5o,30364
9
+ sarkit_convert/iceye.py,sha256=7mrH9wAM6MqLodoCgOG2SegaqcA32dRcnyjkXWZ0egA,30796
10
+ sarkit_convert/sentinel.py,sha256=XKeLs8QbpPj42_uCOb6N3m3Iuj3I5VxFBRRmdDTXqY4,60935
11
+ sarkit_convert/tsx.py,sha256=kQCGfIBOjazvlXz_FY-ZuVMDrKkMaTdAkYRtKRsftys,32564
12
+ sarkit_convert-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: pdm-backend (2.4.5)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+
3
+ [gui_scripts]
4
+
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Valkyrie Systems Corporation
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.
22
+