cubexpress 0.1.4__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.4
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,14 +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
- Requires-Dist: earthengine-api (>=0.1.392)
20
- Requires-Dist: numpy (>=1.25.2)
21
- Requires-Dist: pandas (>=2.0.3)
19
+ Requires-Dist: earthengine-api (>=1.5.12)
20
+ Requires-Dist: numpy (>=2.0.2)
21
+ Requires-Dist: pandas (>=2.2.2)
22
22
  Requires-Dist: pyarrow (>=14.0.0)
23
- Requires-Dist: pygeohash (>=1.2.0,<2.0.0)
23
+ Requires-Dist: pygeohash (>=1.2.0)
24
24
  Requires-Dist: pyproj (>=3.6.0)
25
25
  Requires-Dist: rasterio (>=1.3.9)
26
- Requires-Dist: utm (>=0.7.0,<0.9.0)
26
+ Requires-Dist: utm (>=0.7.0)
27
27
  Project-URL: Documentation, https://andesdatacube.github.io/cubexpress
28
28
  Project-URL: Repository, https://github.com/andesdatacube/cubexpress
29
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.4"
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,13 +23,13 @@ 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
 
File without changes
File without changes