-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathSRG_GSLC.yml
65 lines (65 loc) · 1.63 KB
/
SRG_GSLC.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
SRG_GSLC:
required_parameters:
- granules
- bounds
parameters:
granules:
api_schema:
type: array
minItems: 1
maxItems: 6
example:
- S1A_IW_RAW__0SDV_20231229T134339_20231229T134411_051870_064437_4F42
- S1A_IW_RAW__0SDV_20231229T134404_20231229T134436_051870_064437_5F38
items:
description: Name of the Level-0 Sentinel-1 scenes to process
type: string
pattern: "^S1[AB]_IW_RAW"
minLength: 67
maxLength: 67
example: S1A_IW_RAW__0SDV_20231229T134404_20231229T134436_051870_064437_5F38
bounds:
api_schema:
type: array
description: Bounds for extent of processing, formatted like [min lon, min lat, max lon, max lat] in EPSG:4326.
minItems: 4
maxItems: 4
example:
- -114.87
- 36.00
- -114.66
- 36.16
items:
type: number
example: -114.87
validators: [
check_bounds_formatting,
check_granules_intersecting_bounds,
check_same_relative_orbits,
check_bounding_box_size
]
cost_profiles:
DEFAULT:
cost: 1.0
steps:
- name: ''
image: ghcr.io/asfhyp3/hyp3-srg
command:
- ++process
- back_projection
- --bounds
- Ref::bounds
- --gpu
- --bucket
- '!Ref Bucket'
- --bucket-prefix
- Ref::bucket_prefix
- Ref::granules
timeout: 10800
compute_environment: SrgGslc
vcpu: 1
gpu: 1
memory: 30500
secrets:
- EARTHDATA_USERNAME
- EARTHDATA_PASSWORD