-
Notifications
You must be signed in to change notification settings - Fork 8
/
WATER_MAP_EQ.yml
114 lines (114 loc) · 3.1 KB
/
WATER_MAP_EQ.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
WATER_MAP_EQ:
required_parameters:
- granules
parameters:
granules:
api_schema:
type: array
minItems: 1
maxItems: 1
items:
anyOf:
- description: The name of the IW VV+VH Sentinel-1 GRDH granule to process
type: string
pattern: "^S1[AB]_IW_GRDH_1S[SD]V"
minLength: 67
maxLength: 67
example: S1A_IW_GRDH_1SDV_20210413T235641_20210413T235706_037439_0469D0_3F2B
- description: The name of the IW VV+VH Sentinel-1 SLC granule to process
type: string
pattern: "^S1[AB]_IW_SLC__1S[SD]V"
minLength: 67
maxLength: 67
example: S1A_IW_SLC__1SDV_20211110T234815_20211110T234842_040516_04CE0A_E717
resolution:
api_schema:
default: 30.0
description: Desired output pixel spacing in meters
type: number
enum:
- 30.0
- 20.0
- 10.0
speckle_filter:
api_schema:
description: Apply an Enhanced Lee speckle filter
default: false
type: boolean
max_vv_threshold:
api_schema:
description: Maximum threshold value to use for VV polarized raster in decibels (dB)
default: -15.5
type: number
hand_threshold:
api_schema:
description: The maximum height above nearest drainage in meters to consider a pixel valid
default: 15.0
type: number
hand_fraction:
api_schema:
description: The minimum fraction of valid HAND pixels required in a tile for thresholding
default: 0.8
type: number
cost_profiles:
DEFAULT:
cost: 1.0
validators:
- check_dem_coverage
steps:
- name: RTC
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
- --speckle-filter
- Ref::speckle_filter
- --scale
- 'power'
- --radiometry
- 'gamma0'
- --dem-matching
- 'false'
- --include-dem
- 'true'
- --include-inc-map
- 'false'
- --include-scattering-area
- 'false'
- --include-rgb
- 'true'
- --dem-name
- 'copernicus'
- Ref::granules
timeout: 36000
compute_environment: Default
vcpu: 1
memory: 31500
secrets:
- EARTHDATA_USERNAME
- EARTHDATA_PASSWORD
- name: ''
image: 845172464411.dkr.ecr.us-west-2.amazonaws.com/water-map-equal-percent-solution
command:
- --bucket
- '!Ref Bucket'
- --bucket-prefix
- Ref::bucket_prefix
- --max-vv-threshold
- Ref::max_vv_threshold
- --hand-threshold
- Ref::hand_threshold
- --hand-fraction
- Ref::hand_fraction
timeout: 36000
compute_environment: Default
vcpu: 1
memory: 126000