-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathRTC_GAMMA.yml
142 lines (142 loc) · 4.06 KB
/
RTC_GAMMA.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
RTC_GAMMA:
required_parameters:
- granules
parameters:
granules:
api_schema:
type: array
minItems: 1
maxItems: 1
example:
- S1A_IW_SLC__1SSV_20150621T120220_20150621T120232_006471_008934_72D8
items:
anyOf:
- description: The name of the Sentinel-1 GRDH granule to process
type: string
pattern: "^S1[AB]_IW_GRDH_1S[SD][VH]"
minLength: 67
maxLength: 67
example: S1B_IW_GRDH_1SDV_20211013T183321_20211013T183346_029121_037995_5B38
- 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
resolution:
api_schema:
default: 30.0
description: Desired output pixel spacing in meters
type: number
enum:
- 30.0
- 20.0
- 10.0
dem_name:
api_schema:
default: copernicus
description: Name of the DEM to use for processing. `copernicus` will use the Copernicus GLO-30 Public DEM.
type: string
enum:
- copernicus
radiometry:
api_schema:
default: gamma0
description: Backscatter coefficient normalization, either by ground area (sigma0) or illuminated area projected into the look direction (gamma0)
type: string
enum:
- gamma0
- sigma0
scale:
api_schema:
default: power
description: Scale of output image; power, decibel or amplitude
type: string
enum:
- power
- decibel
- amplitude
speckle_filter:
api_schema:
description: Apply an Enhanced Lee speckle filter
default: false
type: boolean
dem_matching:
api_schema:
description: Coregisters SAR data to the DEM, rather than using dead reckoning based on orbit files
default: false
type: boolean
include_dem:
api_schema:
description: Include the DEM file in the product package
default: false
type: boolean
include_inc_map:
api_schema:
description: Include the incidence angle map(s) in the product package
default: false
type: boolean
include_scattering_area:
api_schema:
description: Include the scattering area in the product package
default: false
type: boolean
include_rgb:
api_schema:
description: Include a false-color RGB decomposition in the product package for dual-pol granules (ignored for single-pol granules)
default: false
type: boolean
cost_profiles:
EDC:
cost_parameter: resolution
cost_table:
- parameter_value: 30.0
cost: 5.0
- parameter_value: 20.0
cost: 15.0
- parameter_value: 10.0
cost: 60.0
DEFAULT:
cost: 1.0
validators:
- check_dem_coverage
steps:
- name: ''
image: 845172464411.dkr.ecr.us-west-2.amazonaws.com/hyp3-gamma
command:
- ++process
- rtc
- ++omp-num-threads
- '4'
- --bucket
- '!Ref Bucket'
- --bucket-prefix
- Ref::bucket_prefix
- --resolution
- Ref::resolution
- --dem-name
- Ref::dem_name
- --radiometry
- Ref::radiometry
- --scale
- Ref::scale
- --speckle-filter
- Ref::speckle_filter
- --dem-matching
- Ref::dem_matching
- --include-dem
- Ref::include_dem
- --include-inc-map
- Ref::include_inc_map
- --include-scattering-area
- Ref::include_scattering_area
- --include-rgb
- Ref::include_rgb
- Ref::granules
timeout: 36000
compute_environment: Default
vcpu: 1
memory: 31500
secrets:
- EARTHDATA_USERNAME
- EARTHDATA_PASSWORD