Skip to content

Commit

Permalink
Merge pull request #1425 from ASFHyP3/tropo-model-api
Browse files Browse the repository at this point in the history
Update job spec for new tropospheric model parameter
  • Loading branch information
jacquelynsmale authored Jan 18, 2023
2 parents 1092456 + 04c3be4 commit 6cfa364
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
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

0 comments on commit 6cfa364

Please sign in to comment.