Skip to content

Commit d97d483

Browse files
Merge pull request #3087 from ASFHyP3/develop
Release v10.16.1
2 parents ec72131 + 2975280 commit d97d483

4 files changed

Lines changed: 21 additions & 3 deletions

File tree

.github/workflows/deploy-daac-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
template_bucket: cf-templates-118mtzosmrltk-us-west-2
2020
image_tag: latest
2121
product_lifetime_in_days: 14
22-
default_credits_per_user: 8000
22+
default_credits_per_user: 4000
2323
default_application_status: APPROVED
2424
cost_profile: EDC
2525
job_files: >-

.github/workflows/deploy-daac-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
template_bucket: cf-templates-118ylv0o6jp2n-us-west-2
2020
image_tag: test
2121
product_lifetime_in_days: 14
22-
default_credits_per_user: 8000
22+
default_credits_per_user: 4000
2323
default_application_status: APPROVED
2424
cost_profile: EDC
2525
job_files: >-

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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+
## [10.16.1]
8+
9+
### Changed
10+
- Reduced default credits per user to 4,000 from 8,000 for the `hyp3-edc-prod` and `hyp3-edc-uat` deployments.
11+
12+
### Fixed
13+
- Allow SRG_GSLC and SRG_TIME_SERIES jobs to process Sentinel-1 C and D granules.
14+
715
## [10.16.0]
816

917
### Added

apps/api/src/hyp3_api/validation.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,17 @@ def check_same_relative_orbits(_, granule_metadata: list[dict]) -> None:
209209
name_split = granule['name'].split('_')
210210
absolute_orbit = name_split[7]
211211
# "Relationship between relative and absolute orbit numbers": https://sentiwiki.copernicus.eu/web/s1-products
212-
offset = 73 if name_split[0] == 'S1A' else 27
212+
mission = name_split[0]
213+
if mission == 'S1A':
214+
offset = 73
215+
elif mission == 'S1B':
216+
offset = 27
217+
elif mission == 'S1C':
218+
offset = 172
219+
elif mission == 'S1D':
220+
offset = 42
221+
else:
222+
raise ValueError(f'Encountered unknown Sentinel-1 mission: {mission}')
213223
relative_orbit = ((int(absolute_orbit) - offset) % 175) + 1
214224
if not previous_relative_orbit:
215225
previous_relative_orbit = relative_orbit

0 commit comments

Comments
 (0)