Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- Added the `PISM_TERRA_RUN_FORWARD` and `PISM_TERRA_RUN_INERVERSE` jobs for preparing both forward and inverse model runs.
- `ARTRAFF_RTC` job spec for RTCing commercial SAR data on a dev basis.

### Removed
- Removed the `PISM_TERRA_PREP_ENSEMBLE` job in favor of `PISM_TERRA_RUN_FORWARD` and `PISM_TERRA_RUN_INERVERSE`.
Expand Down
71 changes: 71 additions & 0 deletions job_spec/ARTRAFF_RTC.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
ARTRAFF_RTC:
required_parameters:
- dem
- granule
parameters:
platform:
api_schema:
description: Platform of the granule.
type: string
default: CAPELLA
enum:
- CAPELLA
# - ICEYE
# - S1
- UMBRA
granule:
api_schema:
description: Data granule to create an RTC for.
type: string
pattern: "^s3://.*"
example: s3://artraff-staging/hyp3/CAPELLA_C17_SM_SICD_HH_20251128093004_20251128093008.ntf
resolution:
api_schema:
description: Resolution of the output RTC in meters.
type: integer
default: 3
minimum: 0
example: 30
dem:
api_schema:
description: DEM file. If you use `lidar_local_dem_file`, you must choose demtype=`Lidar 0.5m`
type: string
pattern: "^s3://.*"
example: s3://artraff-staging/hyp3/dem.tif
work_dir:
api_schema:
description: Working directory for processing
type: string
default: '/tmp/workdir'

cost_profiles:
DEFAULT:
cost: 1.0
validators: []
steps:
- name: ''
image: ghcr.io/ua-asf/hyp3-artraff-rtc
image_tag: test
command:
- rtc
- Ref::platform
- Ref::granule
- --dem
- Ref::dem
- --hyp3
- "yes"
- --resolution
- Ref::resolution
- --work-dir
- Ref::work_dir
- --bucket
- Ref::bucket
- --bucket-prefix
- Ref::bucket_prefix
timeout: 7200
compute_environment: Default
vcpu: 1
memory: 31500
secrets:
- EARTHDATA_USERNAME
- EARTHDATA_PASSWORD