Skip to content

Commit 30afa28

Browse files
committed
🔧 Remove needless comments
1 parent 3f85b4c commit 30afa28

File tree

1 file changed

+3
-6
lines changed
  • plugins/csp-visual-query/src/extract-nodes/Sentinel

1 file changed

+3
-6
lines changed

plugins/csp-visual-query/src/extract-nodes/Sentinel/Sentinel.cpp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,14 +178,11 @@ csl::ogc::WebCoverageTextureLoader::Request Sentinel::getRequest() {
178178
request.mMaxSize = readInput<int>("resolutionIn", 1024);
179179

180180
if (mCurrentOperation == "Moisture Index") {
181-
//request.mBandList = {8, 11};
182-
request.mBandList = {7, 10}; // TODO test
181+
request.mBandList = {7, 10};
183182
} else if (mCurrentOperation == "False Color Urban") {
184-
//request.mBandList = {12, 11, 4};
185-
request.mBandList = {11, 10, 3}; // TODO test
183+
request.mBandList = {11, 10, 3};
186184
} else {
187-
//request.mBandList = {4, 3, 2};
188-
request.mBandList = {3, 2, 1}; // TODO test
185+
request.mBandList = {3, 2, 1};
189186
}
190187

191188
request.mFormat = "image/tiff";

0 commit comments

Comments
 (0)