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 INSAR_ISCE_TEST job to provide an option for Solid Earth Tides correction #1461

Merged
merged 5 commits into from
Feb 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-daac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
job_spec/AUTORIFT.yml
job_spec/INSAR_GAMMA.yml
job_spec/RTC_GAMMA.yml
job_spec/INSAR_ISCE.yml
job_spec/INSAR_ISCE_TEST.yml
job_spec/WATER_MAP.yml
instance_types: r6id.xlarge,r6id.2xlarge,r6id.4xlarge,r6id.8xlarge,r5dn.xlarge,r5dn.2xlarge,r5d.xlarge,r5d.2xlarge
default_max_vcpus: 1500
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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).

## [3.1.2]
### Added
- `INSAR_ISCE_TEST` jobs now accept an `compute_solid_earth_tide` option to compute the solid earth tide ionosphere correction layer.

## [3.1.1]
### Fixed
- `INSAR_ISCE` and `INSAR_ISCE_TEST` jobs no longer accept the unsupported `NCMR` weather model; [see RAiDER#485](https://github.com/dbekaert/RAiDER/issues/485).
Expand Down
7 changes: 7 additions & 0 deletions job_spec/INSAR_ISCE_TEST.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ INSAR_ISCE_TEST:
description: Subset GUNW products to this frame. The default is `-1` with no subsetting of the products.
default: -1
type: integer
compute_solid_earth_tide:
api_schema:
default: false
type: boolean
description: "Whether to compute a solid earth tide correction layer for ARIA-S1-GUNW products"
weather_model:
api_schema:
description: Weather model used to generate tropospheric delay estimations
Expand Down Expand Up @@ -78,6 +83,8 @@ INSAR_ISCE_TEST:
- Ref::estimate_ionosphere_delay
- --frame-id
- Ref::frame_id
- --compute-solid-earth-tide
- Ref::compute_solid_earth_tide
timeout: 21600
vcpu: 1
memory: 7500
Expand Down