Skip to content

Commit

Permalink
fixed typo in Idepix Landsat (leading to endless recursive loop)
Browse files Browse the repository at this point in the history
  • Loading branch information
dolaf committed Apr 16, 2024
1 parent 46ae540 commit 7f8fa96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public boolean isCloudSure() {
boolean nnCloud = nnResult[0] == NN_CATEGORY_CLOUD;

// current logic: cloudSure if Shimez, Clost, Otsu or NN over water
return !isInvalid() && !isCloudSure() && (isCloudShimez || isCloudClost || isCloudOtsu || (nnCloud && !isLand()));
return !isInvalid() && (isCloudShimez || isCloudClost || isCloudOtsu || (nnCloud && !isLand()));
}

@Override
Expand Down

0 comments on commit 7f8fa96

Please sign in to comment.