Skip to content

Commit e1836da

Browse files
author
Nicolas Karasiak
committed
release: v0.5.9
Fix
1 parent 6bf0eeb commit e1836da

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

Diff for: docs/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.5.9] - 2025-04-09
8+
9+
### Added
10+
11+
- `iw-vv` and `iw-vh` short asset name for `sentinel-1-grd`.
12+
- `ew-vv` and `ew-vh` short asset name for `sentinel-1-grd`.
13+
14+
### Fixed
15+
16+
- `cloud_mask` asset name in auto masking.
17+
718
## [0.5.8] - 2025-04-08
819

920
### Added

Diff for: earthdaily/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
__all__ = ["options"]
1313

14-
__version__ = "0.5.8"
14+
__version__ = "0.5.9"
1515

1616

1717
def EarthDataStore(

Diff for: earthdaily/earthdatastore/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1125,6 +1125,7 @@ def datacube(
11251125
)
11261126

11271127
mask_with = "cloud_mask"
1128+
sensor_mask = mask_with
11281129

11291130
else:
11301131
mask_with = mask._native_mask_def_mapping.get(collections[0], None)

Diff for: earthdaily/earthdatastore/cube_utils/asset_mapper/asset_mapper_config.json

+4
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,10 @@
638638
"annotation/iw-vh.xml": "annotation/iw-vh.xml",
639639
"annotation/iw-vv.xml": "annotation/iw-vv.xml",
640640
"preview/thumbnail.png": "preview/thumbnail.png",
641+
"iw-vh": "measurement/iw-vh.tiff",
642+
"iw-vv": "measurement/iw-vv.tiff",
643+
"ew-hh": "measurement/ew-hh.tiff",
644+
"ew-hv": "measurement/ew-hv.tiff",
641645
"measurement/iw-vh.tiff": "measurement/iw-vh.tiff",
642646
"measurement/iw-vv.tiff": "measurement/iw-vv.tiff",
643647
"preview/icons/logo.png": "preview/icons/logo.png",

0 commit comments

Comments
 (0)