-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2344 from ASFHyP3/aria-autorift
Add autoRIFT jobs to ARIA deployments for Solid Earth applications
- Loading branch information
Showing
4 changed files
with
75 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
AUTORIFT: | ||
required_parameters: | ||
- granules | ||
parameters: | ||
granules: | ||
default: '""' | ||
api_schema: | ||
type: array | ||
minItems: 2 | ||
maxItems: 2 | ||
example: | ||
- S2B_MSIL1C_20200105T152259_N0208_R039_T13CES_20200105T181230 | ||
- S2B_MSIL1C_20200315T152259_N0209_R039_T13CES_20200315T181115 | ||
items: | ||
anyOf: | ||
- description: The name of the Sentinel-1 SLC granule to process | ||
type: string | ||
pattern: "^S1[AB]_IW_SLC__1S[SD][VH]" | ||
minLength: 67 | ||
maxLength: 67 | ||
example: S1A_IW_SLC__1SSV_20150621T120220_20150621T120232_006471_008934_72D8 | ||
- description: The name of the Sentinel-2 granule to process (ESA naming convention) | ||
type: string | ||
pattern: "^S2[AB]_MSIL1C_" | ||
minLength: 60 | ||
maxLength: 60 | ||
example: S2A_MSIL1C_20200627T150921_N0209_R025_T22WEB_20200627T170912 | ||
- description: The name of the Landsat 4, 5, 7, 8 or 9 Collection 2 granule to process | ||
type: string | ||
pattern: "^L([CO]0[89]|E07|T0[45])_L1" | ||
minLength: 40 | ||
maxLength: 40 | ||
example: LC08_L1GT_118112_20210107_20210107_02_T2 | ||
bucket_prefix: | ||
default: '""' | ||
parameter_file: | ||
api_schema: | ||
description: Shapefile for determining the correct search parameters by geographic location. Path to shapefile must be understood by GDAL. | ||
type: string | ||
default: '/vsicurl/http://its-live-data.s3.amazonaws.com/autorift_parameters/v001/autorift_solidearth_0120m.shp' | ||
cost_profiles: | ||
DEFAULT: | ||
cost: 1.0 | ||
validators: [] | ||
tasks: | ||
- name: '' | ||
image: ghcr.io/asfhyp3/hyp3-autorift | ||
command: | ||
- --bucket | ||
- '!Ref Bucket' | ||
- --bucket-prefix | ||
- Ref::bucket_prefix | ||
- --parameter-file | ||
- Ref::parameter_file | ||
- --naming-scheme | ||
- ITS_LIVE_OD | ||
- Ref::granules | ||
timeout: 10800 | ||
vcpu: 1 | ||
memory: 31500 | ||
secrets: | ||
- EARTHDATA_USERNAME | ||
- EARTHDATA_PASSWORD | ||
- ESA_USERNAME | ||
- ESA_PASSWORD |