kuva-reader 1.0.1__tar.gz → 1.0.3__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.
Potentially problematic release.
This version of kuva-reader might be problematic. Click here for more details.
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/PKG-INFO +5 -4
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/README.md +4 -3
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/pyproject.toml +1 -1
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/__init__.py +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/py.typed +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/__init__.py +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/image.py +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/level0.py +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/level1.py +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/level2.py +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/product_base.py +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/py.typed +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/read.py +0 -0
- {kuva_reader-1.0.1 → kuva_reader-1.0.3}/kuva_reader/reader/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: kuva-reader
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Manipulate the Kuva Space image and metadata formats
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Guillem Ballesteros
|
|
@@ -53,15 +53,16 @@ pip install kuva-reader
|
|
|
53
53
|
|
|
54
54
|
## Minimal example
|
|
55
55
|
|
|
56
|
-
This is a minimal example that allows you to read and print the image shape of a
|
|
57
|
-
|
|
56
|
+
This is a minimal example that allows you to read and print the image shape of a L2 product.
|
|
57
|
+
|
|
58
|
+
The result product is in this case an L2A product (as seen from the folder name).
|
|
58
59
|
The loaded product is stored in a `rioxarray` object, which contains extensive GIS functionalities [(examples for usage)](https://corteva.github.io/rioxarray/stable/examples/examples.html).
|
|
59
60
|
|
|
60
61
|
```python
|
|
61
62
|
from kuva_reader import read_product
|
|
62
63
|
|
|
63
64
|
l2a_product = read_product("my_data_folder/hyperfield1a_L2A_20250105T092548")
|
|
64
|
-
print(
|
|
65
|
+
print(l2a_product) # Will show some main information such as image shape and CRS
|
|
65
66
|
```
|
|
66
67
|
|
|
67
68
|
This assumes a mostly untouched folder after distributing. Otherwise, you may need to
|
|
@@ -30,15 +30,16 @@ pip install kuva-reader
|
|
|
30
30
|
|
|
31
31
|
## Minimal example
|
|
32
32
|
|
|
33
|
-
This is a minimal example that allows you to read and print the image shape of a
|
|
34
|
-
|
|
33
|
+
This is a minimal example that allows you to read and print the image shape of a L2 product.
|
|
34
|
+
|
|
35
|
+
The result product is in this case an L2A product (as seen from the folder name).
|
|
35
36
|
The loaded product is stored in a `rioxarray` object, which contains extensive GIS functionalities [(examples for usage)](https://corteva.github.io/rioxarray/stable/examples/examples.html).
|
|
36
37
|
|
|
37
38
|
```python
|
|
38
39
|
from kuva_reader import read_product
|
|
39
40
|
|
|
40
41
|
l2a_product = read_product("my_data_folder/hyperfield1a_L2A_20250105T092548")
|
|
41
|
-
print(
|
|
42
|
+
print(l2a_product) # Will show some main information such as image shape and CRS
|
|
42
43
|
```
|
|
43
44
|
|
|
44
45
|
This assumes a mostly untouched folder after distributing. Otherwise, you may need to
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "kuva-reader"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.3"
|
|
8
8
|
description = "Manipulate the Kuva Space image and metadata formats"
|
|
9
9
|
authors = ["Guillem Ballesteros <guillem@kuvaspace.com>" , "Lennert Antson <lennert.antson@kuvaspace.com>", "Arthur Vandenhoeke <arthur.vandenhoeke@kuvaspace.com>", "Olli Eloranta <olli.eloranta@kuvaspace.com>"]
|
|
10
10
|
readme = "README.md"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|