Skip to content

Commit 8f9201c

Browse files
useLakeAndSeaIceClimatology default value changed from true to false, to make use of new NN instead
1 parent 8291ca5 commit 8f9201c

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

idepix-olci/src/main/java/org/esa/snap/idepix/olci/IdepixOlciOp.java

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,16 @@ public class IdepixOlciOp extends BasisOp {
8181
private boolean outputSchillerNNValue;
8282

8383
@Parameter(description = "Alternative NN file. " +
84-
"If set, it MUST follow format and input/output as used in default '11x10x4x3x2_207.9.net. ",
84+
"If set, it MUST follow format and input/output used in default " +
85+
"'class-sequential-i21x42x8x4x2o1-5489.net'. " +
86+
"('11x10x4x3x2_207.9.net' has been default until June 2023.)",
8587
label = " Alternative NN file")
8688
private File alternativeNNFile;
8789

8890
@Parameter(description = "Alternative NN thresholds file. " +
89-
"If set, it MUST follow format as used in default '11x10x4x3x2_207.9-thresholds.json. ",
91+
"If set, it MUST follow format used in default " +
92+
"'class-sequential-i21x42x8x4x2o1-5489-thresholds.json'. " +
93+
"('11x10x4x3x2_207.9-thresholds.json' has been default until June 2023.)",
9094
label = " Alternative NN thresholds file")
9195
private File alternativeNNThresholdsFile;
9296

@@ -120,8 +124,8 @@ public class IdepixOlciOp extends BasisOp {
120124
label = "Width of cloud buffer (# of pixels)")
121125
private int cloudBufferWidth;
122126

123-
@Parameter(defaultValue = "true",
124-
description = "Restrict NN test for sea/lake ice to ice climatology area.",
127+
@Parameter(defaultValue = "false",
128+
description = "Restrict NN test for sea/lake ice to ice climatology area. This parameter has changed its default value!",
125129
label = "Use sea/lake ice climatology as filter"
126130
)
127131
private boolean useLakeAndSeaIceClimatology;
@@ -249,7 +253,7 @@ private void preProcess() {
249253
if (computeCloudShadow) {
250254
ctpProduct = IdepixOlciUtils.computeCloudTopPressureProduct(sourceProduct,
251255
o2CorrProduct,
252-
alternativeCtpNNDir,
256+
alternativeCtpNNDir,
253257
outputCtp);
254258
}
255259

0 commit comments

Comments
 (0)