Skip to content

Commit 040aebc

Browse files
Virginia Brancatovbrancat
authored andcommitted
Add Qa options to GSLC and InSAR SAS (#798)
* Add QA options for GSLC schema * Add QA options for the InSAR schema Co-authored-by: vbrancat <[email protected]>
1 parent 220d985 commit 040aebc

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

share/nisar/schemas/gslc.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ runconfig:
120120
# first available CUDA device. Ignored if *gpu_enabled* is False.
121121
gpu_id: int(min=0, required=False)
122122

123+
# QA code options
124+
QA: include('qa_options', required=False)
125+
123126
# Place holder for user set path to log file.
124127
# If not set, log sent to screen or input yaml path derived file
125128
logging: include('log_nfo', required=False)
@@ -169,3 +172,9 @@ log_nfo:
169172
path: str()
170173
# Log file write mode. 'a' for append to existing. 'w' for new or overwrite existing.
171174
write_mode: enum('a', 'w', required=False)
175+
176+
qa_options:
177+
# Enabled file format validation
178+
validate: bool(required=False)
179+
# Produce a data summary
180+
quality: bool(required=False)

share/nisar/schemas/insar.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ runconfig:
137137
# first available CUDA device. Ignored if *gpu_enabled* is False.
138138
gpu_id: int(min=0, required=False)
139139

140+
QA: include('qa_options', required=False)
141+
140142
# Place holder for user set path to log file.
141143
# If not set, log sent to screen or input yaml path derived file
142144
logging: include('log_nfo', required=False)
@@ -364,3 +366,10 @@ gunw_datasets:
364366
connectedComponents: bool(required=False)
365367
coherenceMagnitude: bool(required=False)
366368
unwrappedPhase: bool(required=False)
369+
370+
371+
qa_options:
372+
# Enabled file format validation
373+
validate: bool(required=False)
374+
# Produce a data summary
375+
quality: bool(required=False)

0 commit comments

Comments
 (0)