Skip to content

Commit 79e3df9

Browse files
authored
release(v0.0.17)
v0.0.17
2 parents a9f46ce + 7e77d4f commit 79e3df9

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.0.17] - 2024-04-15
8+
9+
### Fixed
10+
11+
- Issue when having different time size between sensor and cloudmask.
12+
713
## [0.0.16] - 2024-04-15
814

915
### Fixed

earthdaily/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# to hide warnings from rioxarray or nano seconds conversion
66
warnings.filterwarnings("ignore")
77

8-
__version__ = "0.0.16"
8+
__version__ = "0.0.17"

earthdaily/earthdatastore/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -948,11 +948,12 @@ def ag_cloud_mask_from_items(items):
948948
for items_start_idx in range(0, len(ids_), step):
949949
items = self.search(
950950
collections=collections,
951-
intersects=self.intersects,
951+
# intersects=self.intersects,
952952
ids=ids_[items_start_idx : items_start_idx + step],
953+
limit=step,
953954
)
954-
items_list.extend(items)
955-
return ItemCollection(items)
955+
items_list.extend(list(items))
956+
return ItemCollection(items_list)
956957

957958

958959
def item_property_to_df(

0 commit comments

Comments
 (0)