Skip to content

Commit f4c69c8

Browse files
gshiromaGitHub Enterprise
authored andcommitted
fix min and max values of geo2rdr fields threshold and maxiter of GCOV and GSLC schemas (#988)
1 parent 2336120 commit f4c69c8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

share/nisar/schemas/gcov.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,10 @@ radar_grid_cubes_options:
123123

124124
geo2rdr_options:
125125
# Convergence threshold for geo2rdr algorithm
126-
threshold: num(min=1.0e-9, max=1.0e-3, required=False)
126+
threshold: num(min=0, required=False)
127127

128128
# Maximum number of iterations
129-
maxiter: int(min=10, max=50, required=False)
129+
maxiter: int(min=1, required=False)
130130

131131
qa_options:
132132
# Enable/disable file format validation

share/nisar/schemas/gslc.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ radar_grid_cubes_options:
115115

116116
geo2rdr_options:
117117
# Convergence threshold for geo2rdr algorithm
118-
threshold: num(min=1.0e-9, max=1.0e-3, required=False)
118+
threshold: num(min=0, required=False)
119119

120-
# Maximum number of iteration for geo2rdr algorithm
121-
maxiter: int(min=10, max=50, required=False)
120+
# Maximum number of iterations
121+
maxiter: int(min=1, required=False)
122122

123123
logging_options:
124124
# Path to where to store log file

0 commit comments

Comments
 (0)