Skip to content

Commit fd2af3d

Browse files
committed
- ENH: Adding a clean_tmp function allowing the user to clean the product's temporary output by hand (in changes)
1 parent a1aedf9 commit fd2af3d

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
## 0.4.7 (2021-07-22)
66
- ENH: Adding a `default_transform` function returning data from default band (without warping it) -> *mapping `calculate_default_transform` from `rasterio`*
7+
- ENH: Adding a `clean_tmp` function allowing the user to clean the product's temporary output by hand
78
- ENH: Simplifying DEM warping code
89
- FIX: `DIMAP` products return always projected (in UTM) default bands (`get_default_band_path` uses `_get_default_utm_band`)
910
- FIX: Theia Footprint returns a `GeoDataFrame` instead of a `GeoSeries`

eoreader/products/product.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,7 @@ def _resolution_from_size(self, size: Union[list, tuple] = None) -> tuple:
13751375

13761376
def clean_tmp(self):
13771377
"""
1378-
Clean the temporary directory
1378+
Clean the temporary directory of the current product
13791379
"""
13801380
if self._tmp_process.exists():
13811381
for tmp_file in self._tmp_process.glob("*"):

0 commit comments

Comments
 (0)