satcube 0.1.9__tar.gz → 0.1.11__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 satcube might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: satcube
3
- Version: 0.1.9
3
+ Version: 0.1.11
4
4
  Summary: A Python package to create cloud-free monthly composites by fusing Landsat and Sentinel-2 data.
5
5
  Home-page: https://github.com/IPL-UV/satcube
6
6
  Author: Cesar Aybar
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "satcube"
3
- version = "0.1.9"
3
+ version = "0.1.11"
4
4
  description = "A Python package to create cloud-free monthly composites by fusing Landsat and Sentinel-2 data."
5
5
  authors = ["Cesar Aybar <fcesar.aybar@uv.es>"]
6
6
  repository = "https://github.com/IPL-UV/satcube"
@@ -15,8 +15,7 @@ def download_data(
15
15
  output: str = "raw",
16
16
  scale: int = 10,
17
17
  nworks: int = 4,
18
- mosaic: bool = True,
19
- auto_init_gee: bool = True,
18
+ mosaic: bool = True
20
19
  ) -> pd.DataFrame:
21
20
  """
22
21
  Download a Sentinel cube for (lon, lat) and return its metadata.
@@ -38,13 +37,6 @@ def download_data(
38
37
  pandas.DataFrame
39
38
  Scene catalogue used for the request.
40
39
  """
41
- # EE ready
42
- if auto_init_gee:
43
- try:
44
- ee.Initialize()
45
- except ee.EEException:
46
- ee.Authenticate(); ee.Initialize()
47
-
48
40
  # Filter scenes
49
41
  df = cubexpress.cloud_table(
50
42
  lon=lon,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes