ECOv003-L2T-STARS 1.7.1__py3-none-any.whl → 1.7.3__py3-none-any.whl
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.
- ECOv003_L2T_STARS/L2T_STARS.py +2 -4
- ECOv003_L2T_STARS/VIIRS/VNP43MA3.py +1 -4
- ECOv003_L2T_STARS/VNP43NRT/VNP43NRT.py +0 -3
- {ecov003_l2t_stars-1.7.1.dist-info → ecov003_l2t_stars-1.7.3.dist-info}/METADATA +1 -1
- {ecov003_l2t_stars-1.7.1.dist-info → ecov003_l2t_stars-1.7.3.dist-info}/RECORD +9 -9
- {ecov003_l2t_stars-1.7.1.dist-info → ecov003_l2t_stars-1.7.3.dist-info}/WHEEL +0 -0
- {ecov003_l2t_stars-1.7.1.dist-info → ecov003_l2t_stars-1.7.3.dist-info}/entry_points.txt +0 -0
- {ecov003_l2t_stars-1.7.1.dist-info → ecov003_l2t_stars-1.7.3.dist-info}/licenses/LICENSE +0 -0
- {ecov003_l2t_stars-1.7.1.dist-info → ecov003_l2t_stars-1.7.3.dist-info}/top_level.txt +0 -0
ECOv003_L2T_STARS/L2T_STARS.py
CHANGED
@@ -283,7 +283,6 @@ def L2T_STARS(
|
|
283
283
|
download_directory=VIIRS_download_directory,
|
284
284
|
mosaic_directory=VIIRS_mosaic_directory,
|
285
285
|
GEOS5FP_download=GEOS5FP_download_directory,
|
286
|
-
GEOS5FP_products=GEOS5FP_products_directory,
|
287
286
|
VNP09GA_directory=VNP09GA_products_directory,
|
288
287
|
VNP43NRT_directory=VNP43NRT_products_directory,
|
289
288
|
initialize_julia=initialize_julia,
|
@@ -294,7 +293,6 @@ def L2T_STARS(
|
|
294
293
|
download_directory=VIIRS_download_directory,
|
295
294
|
mosaic_directory=VIIRS_mosaic_directory,
|
296
295
|
GEOS5FP_download=GEOS5FP_download_directory,
|
297
|
-
GEOS5FP_products=GEOS5FP_products_directory,
|
298
296
|
VNP09GA_directory=VNP09GA_products_directory,
|
299
297
|
VNP43NRT_directory=VNP43NRT_products_directory,
|
300
298
|
initialize_julia=initialize_julia,
|
@@ -363,7 +361,7 @@ def L2T_STARS(
|
|
363
361
|
if len(missing_sentinel_dates) > 0:
|
364
362
|
raise AuxiliaryLatency(
|
365
363
|
f"HLS Sentinel is not yet available at tile {tile} for dates: "
|
366
|
-
f"{', '.join(missing_sentinel_dates
|
364
|
+
f"{', '.join(missing_sentinel_dates)}"
|
367
365
|
)
|
368
366
|
|
369
367
|
# Log available HLS Sentinel data
|
@@ -380,7 +378,7 @@ def L2T_STARS(
|
|
380
378
|
if len(missing_landsat_dates) > 0:
|
381
379
|
raise AuxiliaryLatency(
|
382
380
|
f"HLS Landsat is not yet available at tile {tile} for dates: "
|
383
|
-
f"{', '.join(missing_landsat_dates
|
381
|
+
f"{', '.join(missing_landsat_dates)}"
|
384
382
|
)
|
385
383
|
|
386
384
|
# Log available HLS Landsat data
|
@@ -35,8 +35,7 @@ class VNP43MA3Granule(VIIRSGranule):
|
|
35
35
|
working_directory: str = None,
|
36
36
|
products_directory: str = None,
|
37
37
|
GEOS5FP_connection: GEOS5FP = None,
|
38
|
-
GEOS5FP_download: str = None
|
39
|
-
GEOS5FP_products: str = None):
|
38
|
+
GEOS5FP_download: str = None):
|
40
39
|
super(VNP43MA3Granule, self).__init__(
|
41
40
|
filename=filename,
|
42
41
|
working_directory=working_directory,
|
@@ -45,9 +44,7 @@ class VNP43MA3Granule(VIIRSGranule):
|
|
45
44
|
|
46
45
|
if GEOS5FP_connection is None:
|
47
46
|
GEOS5FP_connection = GEOS5FP(
|
48
|
-
working_directory=working_directory,
|
49
47
|
download_directory=GEOS5FP_download,
|
50
|
-
products_directory=GEOS5FP_products
|
51
48
|
)
|
52
49
|
|
53
50
|
self.GEOS5FP = GEOS5FP_connection
|
@@ -287,7 +287,6 @@ class VNP43NRT(VIIRSDownloaderAlbedo, VIIRSDownloaderNDVI):
|
|
287
287
|
VNP43NRT_staging_directory: str = None,
|
288
288
|
GEOS5FP_connection: GEOS5FP = None,
|
289
289
|
GEOS5FP_download: str = None,
|
290
|
-
GEOS5FP_products: str = None,
|
291
290
|
initialize_julia: bool = False):
|
292
291
|
if working_directory is None:
|
293
292
|
working_directory = VNP09GA.DEFAULT_WORKING_DIRECTORY
|
@@ -316,9 +315,7 @@ class VNP43NRT(VIIRSDownloaderAlbedo, VIIRSDownloaderNDVI):
|
|
316
315
|
|
317
316
|
if GEOS5FP_connection is None:
|
318
317
|
GEOS5FP_connection = GEOS5FP(
|
319
|
-
working_directory=working_directory,
|
320
318
|
download_directory=GEOS5FP_download,
|
321
|
-
# products_directory=GEOS5FP_products
|
322
319
|
)
|
323
320
|
|
324
321
|
self.VNP09GA_directory = VNP09GA_directory
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ECOv003-L2T-STARS
|
3
|
-
Version: 1.7.
|
3
|
+
Version: 1.7.3
|
4
4
|
Summary: ECOSTRESS Collection 3 JPL STARS Data Fusion Product Generating Executable (PGE)
|
5
5
|
Author-email: "Gregory H. Halverson" <gregory.h.halverson@jpl.nasa.gov>
|
6
6
|
Project-URL: Homepage, https://github.com/ECOSTRESS-Collection-3/ECOv003-L2T-STARS
|
@@ -2,7 +2,7 @@ ECOv003_L2T_STARS/ECOv003_DL.py,sha256=QEjs6PpQr14-_AtdbK45yE7jv147SwxUmPWLdTp_w
|
|
2
2
|
ECOv003_L2T_STARS/ECOv003_DL.xml,sha256=TQxOlTJHnjcRf9RiAGVJe2mIS-ks6WL32Ze33z0_kxA,2032
|
3
3
|
ECOv003_L2T_STARS/ECOv003_L2T_STARS.xml,sha256=Sg6GJx5PO1TVMIpGCDb4gatcShLRa6yBMwxwHKAWNKw,2084
|
4
4
|
ECOv003_L2T_STARS/L2TSTARSConfig.py,sha256=pH5WAzjfUdlam8Ngi2hxmT8Sect5bi2D6cP9HbpM_Tw,8849
|
5
|
-
ECOv003_L2T_STARS/L2T_STARS.py,sha256
|
5
|
+
ECOv003_L2T_STARS/L2T_STARS.py,sha256=TpnneLcOtfsWNqEQHjYJyJos7MKhk6tGK4M6lyFUZm8,24519
|
6
6
|
ECOv003_L2T_STARS/Manifest.toml,sha256=pj6osNOWzlL8-wtY4MDdp7rbWvDxCH-LgoXfBdZKRT0,84454
|
7
7
|
ECOv003_L2T_STARS/Project.toml,sha256=9-grsavASN_a3dNHcG4vc6-iulhK6Gdmmh1VkKRxnGM,471
|
8
8
|
ECOv003_L2T_STARS/__init__.py,sha256=fdYigR4HXHd-NYUCafBD4GTqXUQV5LK337bJVN556fA,91
|
@@ -45,10 +45,10 @@ ECOv003_L2T_STARS/VIIRS/VIIRSDataPool.py,sha256=mht104y3ayLysElKf9IgaqX78I0Q-4NJ
|
|
45
45
|
ECOv003_L2T_STARS/VIIRS/VIIRSDownloader.py,sha256=NCf3ZItLIBkZOZugYHuQMurziAsH7LbhLKbg-ZbWC7g,616
|
46
46
|
ECOv003_L2T_STARS/VIIRS/VNP09GA.py,sha256=cJnsOX40d2oXk788WVxkjf1XNvQcRB99SFZDceSNwDg,44140
|
47
47
|
ECOv003_L2T_STARS/VIIRS/VNP43IA4.py,sha256=3qZbDHoLVhoiSr4hoojMxXXuDSNKkN4B9Dan-WMApNs,9881
|
48
|
-
ECOv003_L2T_STARS/VIIRS/VNP43MA3.py,sha256=
|
48
|
+
ECOv003_L2T_STARS/VIIRS/VNP43MA3.py,sha256=ztBDVw3KQD76AmcRmuf_JOlZUcz0fTnQR-4zS45ILeM,10896
|
49
49
|
ECOv003_L2T_STARS/VIIRS/__init__.py,sha256=PVyb97Bg5gVMdcyC7JpErQCjJWSrOFdHJH4rNE__eL8,264
|
50
50
|
ECOv003_L2T_STARS/VIIRS/version.txt,sha256=Ke8b6aOkBgjuceFV64cco0Yw4jvu6a8pRBq6nQ6nbVQ,5
|
51
|
-
ECOv003_L2T_STARS/VNP43NRT/VNP43NRT.py,sha256=
|
51
|
+
ECOv003_L2T_STARS/VNP43NRT/VNP43NRT.py,sha256=On4kPY8dz1MEbz9i8maF3wEKWuCakaW4DuzzBHBXrfM,31904
|
52
52
|
ECOv003_L2T_STARS/VNP43NRT/__init__.py,sha256=8LkfUUFW0pyaO-1S134RnimfKYAKP6UfvzO7kPAx9mo,24
|
53
53
|
ECOv003_L2T_STARS/VNP43NRT/process_VNP43NRT.jl,sha256=pNa5Z0RcyXSul2pysPwEWwl1e6XuTX_XURqgJIsVfT8,7139
|
54
54
|
ECOv003_L2T_STARS/VNP43NRT/version.txt,sha256=atlhOkVXmNbZLl9fOQq0uqcFlryGntaxf1zdKyhjXwY,5
|
@@ -63,9 +63,9 @@ ECOv003_L2T_STARS/daterange/__init__.py,sha256=54kYb9tmsm5twxMqjJKeD__5kGkNDz3Pp
|
|
63
63
|
ECOv003_L2T_STARS/daterange/daterange.py,sha256=EHa2Xt9fiJ1gbX7aa_QV_br1rAXjg3pHrLSRasOsOhM,959
|
64
64
|
ECOv003_L2T_STARS/timer/__init__.py,sha256=I_MQKp_aamBLUzZv0psEbRgs6GZLOJd4mmJ7bli0Ikc,21
|
65
65
|
ECOv003_L2T_STARS/timer/timer.py,sha256=tn5e3NQmsh55Jp9Fstjf-8KJW4F8UIJs-d_ZLooFYE8,1610
|
66
|
-
ecov003_l2t_stars-1.7.
|
67
|
-
ecov003_l2t_stars-1.7.
|
68
|
-
ecov003_l2t_stars-1.7.
|
69
|
-
ecov003_l2t_stars-1.7.
|
70
|
-
ecov003_l2t_stars-1.7.
|
71
|
-
ecov003_l2t_stars-1.7.
|
66
|
+
ecov003_l2t_stars-1.7.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
67
|
+
ecov003_l2t_stars-1.7.3.dist-info/METADATA,sha256=SEOi-Twdd7JKDsBgnoVbjyk7hePRVPcCuz8AJdbSNS4,13283
|
68
|
+
ecov003_l2t_stars-1.7.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
69
|
+
ecov003_l2t_stars-1.7.3.dist-info/entry_points.txt,sha256=w1SInJQvMFavgcUIWW1NLOygycIJpA86MZBKg74ZmiM,113
|
70
|
+
ecov003_l2t_stars-1.7.3.dist-info/top_level.txt,sha256=lRivA5MjbrabH4sv-LUstMGaLZ865wRQPpz9Kh6-plg,18
|
71
|
+
ecov003_l2t_stars-1.7.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|