Skip to content

Commit cfd722f

Browse files
Merge pull request #24 from gregory-halverson-jpl/main
removing intermediate file caching for derived variables
2 parents 73257a8 + 35cd293 commit cfd722f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

harmonized_landsat_sentinel/HLS2_CMR_connection.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@ def NDVI(
230230
# Upsample using cubic resampling
231231
NDVI = NDVI.to_geometry(geometry, resampling="cubic")
232232

233+
return NDVI
234+
233235
def albedo(
234236
self,
235237
tile: str,
@@ -329,6 +331,8 @@ def albedo(
329331
# Upsample using cubic resampling
330332
albedo = albedo.to_geometry(geometry, resampling="cubic")
331333

334+
return albedo
335+
332336
def search(
333337
self,
334338
tile: str = None,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0
1+
1.5.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "harmonized-landsat-sentinel"
7-
version = "1.5.0"
7+
version = "1.5.1"
88
description = "Harmonized Landsat Sentinel (HLS) search and download utility"
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)