Skip to content
Draft
Show file tree
Hide file tree
Changes from 8 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
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).

## [10.13.3]

### Added
- `ARTRAFF_RTC` job spec for RTCing commercial SAR data on a dev basis.

## [10.13.2]

### Changed
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:
- platform
Comment thread
benbart marked this conversation as resolved.
Outdated
- granule
parameters:
platform:
api_schema:
description: Platform of the granule.
type: string
default: CAPELLA
enum:
- CAPELLA
# - ICEYE
# - S1
# - UMBRA # someday
granule:
api_schema:
description: Data granule to create an RTC for.
type: string
pattern: "^CAPELLA_.*.ntf"
minLength: 56
maxLength: 56
example: CAPELLA_C17_SM_SICD_HH_20251128093004_20251128093008.ntf

resolution:
api_schema:
description: Resolution of the output RTC in meters.
type: integer
default: 30
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

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
- --hyp3
- "yes"
- --resolution
- Ref::resolution
- --work-dir
- Ref::work-dir
- --bucket
- '!Ref Bucket'
- --bucket-prefix
- Ref::job_id
timeout: 7200
compute_environment: Default
vcpu: 1
memory: 31500
secrets:
- EARTHDATA_USERNAME
- EARTHDATA_PASSWORD
Loading