Skip to content

Commit

Permalink
release(v0.0.17)
Browse files Browse the repository at this point in the history
v0.0.17
  • Loading branch information
nkarasiak authored Apr 15, 2024
2 parents a9f46ce + 7e77d4f commit 79e3df9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.17] - 2024-04-15

### Fixed

- Issue when having different time size between sensor and cloudmask.

## [0.0.16] - 2024-04-15

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion earthdaily/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# to hide warnings from rioxarray or nano seconds conversion
warnings.filterwarnings("ignore")

__version__ = "0.0.16"
__version__ = "0.0.17"
7 changes: 4 additions & 3 deletions earthdaily/earthdatastore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -948,11 +948,12 @@ def ag_cloud_mask_from_items(items):
for items_start_idx in range(0, len(ids_), step):
items = self.search(
collections=collections,
intersects=self.intersects,
# intersects=self.intersects,
ids=ids_[items_start_idx : items_start_idx + step],
limit=step,
)
items_list.extend(items)
return ItemCollection(items)
items_list.extend(list(items))
return ItemCollection(items_list)


def item_property_to_df(
Expand Down

0 comments on commit 79e3df9

Please sign in to comment.