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 3f85b4c commit 30afa28Copy full SHA for 30afa28
plugins/csp-visual-query/src/extract-nodes/Sentinel/Sentinel.cpp
@@ -178,14 +178,11 @@ csl::ogc::WebCoverageTextureLoader::Request Sentinel::getRequest() {
178
request.mMaxSize = readInput<int>("resolutionIn", 1024);
179
180
if (mCurrentOperation == "Moisture Index") {
181
- //request.mBandList = {8, 11};
182
- request.mBandList = {7, 10}; // TODO test
+ request.mBandList = {7, 10};
183
} else if (mCurrentOperation == "False Color Urban") {
184
- //request.mBandList = {12, 11, 4};
185
- request.mBandList = {11, 10, 3}; // TODO test
+ request.mBandList = {11, 10, 3};
186
} else {
187
- //request.mBandList = {4, 3, 2};
188
- request.mBandList = {3, 2, 1}; // TODO test
+ request.mBandList = {3, 2, 1};
189
}
190
191
request.mFormat = "image/tiff";
0 commit comments