Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 0e03af1

Browse files
committed
Fixes merge issue (#6)
1 parent 3c9e577 commit 0e03af1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyEOM/datasets/MODIS.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ def prepare(self):
189189
return dict(tiles=self.task['tiles'], dates=self.dates)
190190

191191
def process(self, files, format, epsg=None, resample=None, compress=False):
192+
# clean files value within bands for new timestamp
193+
for key, band in self.bands.items():
194+
self.bands[key]['files'] = []
192195
#extract dataset
193196
LOGGER.info('extract bands')
194197
raster = processing.MODISHDFProcessor(None, self.bands, self.dataset.rastertype, self.publishPath)

0 commit comments

Comments
 (0)