cubexpress 0.1.3__tar.gz → 0.1.5__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 cubexpress might be problematic. Click here for more details.
- {cubexpress-0.1.3 → cubexpress-0.1.5}/PKG-INFO +9 -10
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/downloader.py +13 -16
- {cubexpress-0.1.3 → cubexpress-0.1.5}/pyproject.toml +7 -11
- {cubexpress-0.1.3 → cubexpress-0.1.5}/LICENSE +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/README.md +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/__init__.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/cache.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/cloud_utils.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/conversion.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/cube.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/geospatial.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/geotyping.py +0 -0
- {cubexpress-0.1.3 → cubexpress-0.1.5}/cubexpress/request.py +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cubexpress
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Efficient processing of cubic Earth-observation (EO) data.
|
|
5
5
|
Home-page: https://github.com/andesdatacube/cubexpress
|
|
6
6
|
License: MIT
|
|
7
7
|
Keywords: earth-engine,sentinel-2,geospatial,eo,cube
|
|
8
8
|
Author: Julio Contreras
|
|
9
9
|
Author-email: contrerasnetk@gmail.com
|
|
10
|
-
Requires-Python: >=3.9
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -16,15 +16,14 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
18
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
19
|
-
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist: pygeohash (>=1.2.0,<2.0.0)
|
|
19
|
+
Requires-Dist: earthengine-api (>=1.5.12)
|
|
20
|
+
Requires-Dist: numpy (>=2.0.2)
|
|
21
|
+
Requires-Dist: pandas (>=2.2.2)
|
|
22
|
+
Requires-Dist: pyarrow (>=14.0.0)
|
|
23
|
+
Requires-Dist: pygeohash (>=1.2.0)
|
|
25
24
|
Requires-Dist: pyproj (>=3.6.0)
|
|
26
|
-
Requires-Dist: rasterio (>=1.3.9)
|
|
27
|
-
Requires-Dist: utm (>=0.7.0
|
|
25
|
+
Requires-Dist: rasterio (>=1.3.9)
|
|
26
|
+
Requires-Dist: utm (>=0.7.0)
|
|
28
27
|
Project-URL: Documentation, https://andesdatacube.github.io/cubexpress
|
|
29
28
|
Project-URL: Repository, https://github.com/andesdatacube/cubexpress
|
|
30
29
|
Description-Content-Type: text/markdown
|
|
@@ -43,22 +43,19 @@ def download_manifest(ulist: Dict[str, Any], full_outname: pathlib.Path) -> None
|
|
|
43
43
|
with memfile.open() as src:
|
|
44
44
|
profile = src.profile
|
|
45
45
|
profile.update(
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"copy_src_overviews": True,
|
|
60
|
-
"overviews": "AUTO",
|
|
61
|
-
}
|
|
46
|
+
driver="GTiff",
|
|
47
|
+
tiled=True,
|
|
48
|
+
interleave="band",
|
|
49
|
+
blockxsize=256,
|
|
50
|
+
blockysize=256,
|
|
51
|
+
compress="ZSTD",
|
|
52
|
+
zstd_level=13,
|
|
53
|
+
predictor=2,
|
|
54
|
+
num_threads=20,
|
|
55
|
+
nodata=65535,
|
|
56
|
+
dtype="uint16",
|
|
57
|
+
count=13,
|
|
58
|
+
photometric="MINISBLACK"
|
|
62
59
|
)
|
|
63
60
|
all_bands = src.read()
|
|
64
61
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "cubexpress"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.5"
|
|
4
4
|
description = "Efficient processing of cubic Earth-observation (EO) data."
|
|
5
5
|
authors = [
|
|
6
6
|
"Julio Contreras <contrerasnetk@gmail.com>",
|
|
@@ -23,21 +23,17 @@ classifiers = [
|
|
|
23
23
|
packages = [{ include = "cubexpress" }]
|
|
24
24
|
|
|
25
25
|
[tool.poetry.dependencies]
|
|
26
|
-
python = ">=3.9
|
|
27
|
-
numpy = ">=
|
|
28
|
-
pandas = ">=2.
|
|
29
|
-
utm = ">=0.7.0
|
|
30
|
-
pygeohash = "
|
|
26
|
+
python = ">=3.9"
|
|
27
|
+
numpy = ">=2.0.2"
|
|
28
|
+
pandas = ">=2.2.2"
|
|
29
|
+
utm = ">=0.7.0"
|
|
30
|
+
pygeohash = ">=1.2.0"
|
|
31
31
|
rasterio = ">=1.3.9"
|
|
32
|
-
earthengine-api = ">=
|
|
32
|
+
earthengine-api = ">=1.5.12"
|
|
33
33
|
pyarrow = ">=14.0.0"
|
|
34
34
|
pyproj = ">=3.6.0"
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
# optional extras bundle everything heavy into ‘full’
|
|
38
|
-
[tool.poetry.extras]
|
|
39
|
-
full = ["rasterio", "earthengine-api", "pyarrow", "fastparquet"]
|
|
40
|
-
|
|
41
37
|
[tool.poetry.group.dev.dependencies]
|
|
42
38
|
pytest = "^7.2.0"
|
|
43
39
|
pytest-cov = "^4.0.0"
|
|
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
|