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.

@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cubexpress
3
- Version: 0.1.3
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,<4.0
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
- Provides-Extra: full
20
- Requires-Dist: earthengine-api (>=0.1.392) ; extra == "full"
21
- Requires-Dist: numpy (>=1.25.2)
22
- Requires-Dist: pandas (>=2.0.3)
23
- Requires-Dist: pyarrow (>=14.0.0) ; extra == "full"
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) ; extra == "full"
27
- Requires-Dist: utm (>=0.7.0,<0.9.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
- "driver": "Gtiff",
48
- "tiled": "yes",
49
- "interleave": "band",
50
- "blockxsize": 256,
51
- "blockysize": 256,
52
- "compress": "ZSTD",
53
- "predictor": 2,
54
- "num_threads": 20,
55
- "nodata": 65535,
56
- "dtype": "uint16",
57
- "count": 13,
58
- "lztd_level": 13,
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"
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,<4.0"
27
- numpy = ">=1.25.2"
28
- pandas = ">=2.0.3"
29
- utm = ">=0.7.0,<0.9.0"
30
- pygeohash = "^1.2.0"
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 = ">=0.1.392"
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