sarkit-convert 0.1.0__py3-none-any.whl → 0.3.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.
- sarkit_convert/_utils.py +47 -18
- sarkit_convert/_version.py +1 -1
- sarkit_convert/{csk.py → cosmo.py} +369 -218
- sarkit_convert/create_arp_poly.py +166 -0
- sarkit_convert/iceye.py +217 -301
- sarkit_convert/sentinel.py +457 -453
- sarkit_convert/sidd_metadata.py +201 -0
- sarkit_convert/{tsx.py → terrasar.py} +318 -215
- {sarkit_convert-0.1.0.dist-info → sarkit_convert-0.3.0.dist-info}/METADATA +26 -26
- sarkit_convert-0.3.0.dist-info/RECORD +14 -0
- {sarkit_convert-0.1.0.dist-info → sarkit_convert-0.3.0.dist-info}/WHEEL +1 -1
- sarkit_convert-0.1.0.dist-info/RECORD +0 -12
- {sarkit_convert-0.1.0.dist-info → sarkit_convert-0.3.0.dist-info}/entry_points.txt +0 -0
- {sarkit_convert-0.1.0.dist-info → sarkit_convert-0.3.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: sarkit-convert
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Python library for converting SAR data to standard formats.
|
|
5
5
|
Author-Email: Valkyrie Systems Corporation <info@govsco.com>
|
|
6
|
-
License: MIT
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
License-File: LICENSE
|
|
7
8
|
Classifier: Development Status :: 2 - Pre-Alpha
|
|
8
9
|
Classifier: Intended Audience :: Science/Research
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Topic :: Scientific/Engineering
|
|
11
11
|
Classifier: Programming Language :: Python
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
-
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Project-URL: Repository, https://github.com/ValkyrieSystems/sarkit-convert.git
|
|
17
|
+
Project-URL: Bug Tracker, https://github.com/ValkyrieSystems/sarkit-convert/issues
|
|
18
|
+
Project-URL: Changelog, https://github.com/ValkyrieSystems/sarkit-convert/blob/main/CHANGELOG.md
|
|
19
|
+
Requires-Python: >=3.12
|
|
17
20
|
Requires-Dist: lxml>=5.1.0
|
|
18
|
-
Requires-Dist: numpy>=
|
|
19
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: numpy>=2.0.0
|
|
22
|
+
Requires-Dist: pyproj>=3.7.2
|
|
23
|
+
Requires-Dist: sarkit>=1.3.0
|
|
24
|
+
Requires-Dist: scipy>=1.13.0
|
|
20
25
|
Provides-Extra: iceye
|
|
21
26
|
Requires-Dist: h5py>=3.12.1; extra == "iceye"
|
|
22
27
|
Requires-Dist: python-dateutil>=2.9.0; extra == "iceye"
|
|
23
28
|
Provides-Extra: cosmo
|
|
29
|
+
Requires-Dist: astropy>=6.0.0; extra == "cosmo"
|
|
24
30
|
Requires-Dist: h5py>=3.12.1; extra == "cosmo"
|
|
25
31
|
Requires-Dist: python-dateutil>=2.9.0; extra == "cosmo"
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
|
|
28
|
-
|
|
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"
|
|
32
|
+
Requires-Dist: shapely>=2.0.6; extra == "cosmo"
|
|
33
|
+
Provides-Extra: terrasar
|
|
34
|
+
Requires-Dist: python-dateutil>=2.9.0; extra == "terrasar"
|
|
33
35
|
Provides-Extra: sentinel
|
|
34
36
|
Requires-Dist: python-dateutil>=2.9.0; extra == "sentinel"
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist: tifffile>=2025.5.10; extra == "sentinel"
|
|
37
|
+
Requires-Dist: tifffile>=2024.7.2; extra == "sentinel"
|
|
37
38
|
Provides-Extra: all
|
|
38
39
|
Requires-Dist: sarkit-convert[iceye]; extra == "all"
|
|
39
40
|
Requires-Dist: sarkit-convert[cosmo]; extra == "all"
|
|
40
|
-
Requires-Dist: sarkit-convert[
|
|
41
|
+
Requires-Dist: sarkit-convert[terrasar]; extra == "all"
|
|
41
42
|
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
43
|
Description-Content-Type: text/markdown
|
|
51
44
|
|
|
52
45
|
<div align="center">
|
|
53
46
|
|
|
54
47
|
<img src="https://raw.githubusercontent.com/ValkyrieSystems/sarkit/main/docs/source/_static/sarkit_logo.png" width=200>
|
|
55
48
|
|
|
49
|
+
[](https://pypi.org/project/sarkit-convert/)
|
|
50
|
+

|
|
51
|
+
[](./LICENSE)
|
|
52
|
+
[](https://scientific-python.org/specs/spec-0000/)
|
|
53
|
+
<br>
|
|
54
|
+
[](https://github.com/ValkyrieSystems/sarkit-convert/actions/workflows/test.yml)
|
|
55
|
+
|
|
56
56
|
</div>
|
|
57
57
|
|
|
58
58
|
**sarkit-convert** is a Python library for converting SAR data to standard formats.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
sarkit_convert-0.3.0.dist-info/METADATA,sha256=0DL6Jpvg0w-3AaJVSk3iRk4Oj_LkM2gUJRjXej0_emc,3047
|
|
2
|
+
sarkit_convert-0.3.0.dist-info/WHEEL,sha256=Wb0ASbVj8JvWHpOiIpPi7ucfIgJeCi__PzivviEAQFc,90
|
|
3
|
+
sarkit_convert-0.3.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
4
|
+
sarkit_convert-0.3.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=mZlMqxXDR0we4hAabGpRHeGvVZLnoB6uvjYO-QiuIi0,9233
|
|
7
|
+
sarkit_convert/_version.py,sha256=gTggO06fb2c9XKEwlQYUSPlUfy82yVlM9pzLMOUqVcY,21
|
|
8
|
+
sarkit_convert/cosmo.py,sha256=JUirYDfrYm4hUDa0ubyL4bOuvW18-MQKOCAADNpWgWU,34531
|
|
9
|
+
sarkit_convert/create_arp_poly.py,sha256=ApntYmMts8jZ7gSfDMDZ64DehvFUdXxIQf-XuBO41fQ,5987
|
|
10
|
+
sarkit_convert/iceye.py,sha256=F5bIh-knTRHHxGksJLOcdqn14PO9OQUlpCMJ7FqyJqQ,27115
|
|
11
|
+
sarkit_convert/sentinel.py,sha256=Ru1jVG5g4VLfNsy5o8uhoPdBvyi6jk8tH6XcE4recXU,60693
|
|
12
|
+
sarkit_convert/sidd_metadata.py,sha256=lVffYbkvGWZ6hQl_PcQfR8FEMcneCGsp5n6xR5ZvHIk,6927
|
|
13
|
+
sarkit_convert/terrasar.py,sha256=iFvZtspMLiPI59rWCqgoAyzBqTsmR0d-RbcxQkh5Lho,34794
|
|
14
|
+
sarkit_convert-0.3.0.dist-info/RECORD,,
|
|
@@ -1,12 +0,0 @@
|
|
|
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,,
|
|
File without changes
|
|
File without changes
|