File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.0.17] - 2024-04-15
8
+
9
+ ### Fixed
10
+
11
+ - Issue when having different time size between sensor and cloudmask.
12
+
7
13
## [ 0.0.16] - 2024-04-15
8
14
9
15
### Fixed
Original file line number Diff line number Diff line change 5
5
# to hide warnings from rioxarray or nano seconds conversion
6
6
warnings .filterwarnings ("ignore" )
7
7
8
- __version__ = "0.0.16 "
8
+ __version__ = "0.0.17 "
Original file line number Diff line number Diff line change @@ -948,11 +948,12 @@ def ag_cloud_mask_from_items(items):
948
948
for items_start_idx in range (0 , len (ids_ ), step ):
949
949
items = self .search (
950
950
collections = collections ,
951
- intersects = self .intersects ,
951
+ # intersects=self.intersects,
952
952
ids = ids_ [items_start_idx : items_start_idx + step ],
953
+ limit = step ,
953
954
)
954
- items_list .extend (items )
955
- return ItemCollection (items )
955
+ items_list .extend (list ( items ) )
956
+ return ItemCollection (items_list )
956
957
957
958
958
959
def item_property_to_df (
You can’t perform that action at this time.
0 commit comments