Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update job spec for new tropospheric model parameter #1425

Merged
merged 12 commits into from
Jan 18, 2023
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.24.1]
### Added
- `INSAR_ISCE` and `INSAR_ISCE_TEST` jobs now accept a `weather_model` parameter to specify which weather model to use
when estimating trophospheric delay data.

## [2.24.0]
### Added
- Made `resolution=10.0` parameter option for RTC_GAMMA and WATER_MAP jobs available in all deployments
Expand Down
24 changes: 24 additions & 0 deletions job_spec/INSAR_ISCE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ INSAR_ISCE:
minLength: 67
maxLength: 67
example: S1B_IW_SLC__1SDV_20210711T014947_20210711T015013_027740_034F80_D404
weather_model:
api_schema:
description: Weather model used to generate tropospheric delay estimations
default: None
type: string
enum:
- None
- HRRR
- HRES
- GMAO
bucket_prefix:
default: '""'
validators: []
Expand All @@ -45,3 +55,17 @@ INSAR_ISCE:
timeout: 10800
vcpu: 1
memory: 7500
- name: TROPOSPHERE
image: ghcr.io/dbekaert/raider
command:
- ++process
- calcDelaysGunw
- --bucket
- '!Ref Bucket'
- --bucket-prefix
- Ref::bucket_prefix
- --weather-model
- Ref::weather_model
timeout: 10800
vcpu: 1
memory: 7500
25 changes: 25 additions & 0 deletions job_spec/INSAR_ISCE_TEST.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ INSAR_ISCE_TEST:
minLength: 67
maxLength: 67
example: S1B_IW_SLC__1SDV_20210711T014947_20210711T015013_027740_034F80_D404
weather_model:
api_schema:
description: Weather model used to generate tropospheric delay estimations
default: None
type: string
enum:
- None
- HRRR
- HRES
- GMAO
bucket_prefix:
default: '""'
validators: []
Expand All @@ -46,3 +56,18 @@ INSAR_ISCE_TEST:
timeout: 10800
vcpu: 1
memory: 7500
- name: TROPOSPHERE
image: ghcr.io/dbekaert/raider
image_tag: test
command:
- ++process
- calcDelaysGunw
- --bucket
- '!Ref Bucket'
- --bucket-prefix
- Ref::bucket_prefix
- --weather-model
- Ref::weather_model
timeout: 10800
vcpu: 1
memory: 7500