We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46ae540 commit 7f8fa96Copy full SHA for 7f8fa96
idepix-landsat8/src/main/java/org/esa/snap/idepix/landsat8/Landsat8Algorithm.java
@@ -74,7 +74,7 @@ public boolean isCloudSure() {
74
boolean nnCloud = nnResult[0] == NN_CATEGORY_CLOUD;
75
76
// current logic: cloudSure if Shimez, Clost, Otsu or NN over water
77
- return !isInvalid() && !isCloudSure() && (isCloudShimez || isCloudClost || isCloudOtsu || (nnCloud && !isLand()));
+ return !isInvalid() && (isCloudShimez || isCloudClost || isCloudOtsu || (nnCloud && !isLand()));
78
}
79
80
@Override
0 commit comments