Partial raster reclassify in QGIS
I have a CHM model (raster) with values -10
up 100
.
I need to reclassify values as:
value < 0
=>0
0 < value < 50
=> the same value
value > 50
=>0
I tried so many tools, but I cannot find the correct way. Do you have any ideas?
qgis raster reclassify
add a comment |
I have a CHM model (raster) with values -10
up 100
.
I need to reclassify values as:
value < 0
=>0
0 < value < 50
=> the same value
value > 50
=>0
I tried so many tools, but I cannot find the correct way. Do you have any ideas?
qgis raster reclassify
1
Try Raster Calculator
– BERA
Mar 18 at 7:36
add a comment |
I have a CHM model (raster) with values -10
up 100
.
I need to reclassify values as:
value < 0
=>0
0 < value < 50
=> the same value
value > 50
=>0
I tried so many tools, but I cannot find the correct way. Do you have any ideas?
qgis raster reclassify
I have a CHM model (raster) with values -10
up 100
.
I need to reclassify values as:
value < 0
=>0
0 < value < 50
=> the same value
value > 50
=>0
I tried so many tools, but I cannot find the correct way. Do you have any ideas?
qgis raster reclassify
qgis raster reclassify
edited Mar 18 at 8:42
Taras
2,3083727
2,3083727
asked Mar 18 at 7:20
SlunickoSlunicko
214
214
1
Try Raster Calculator
– BERA
Mar 18 at 7:36
add a comment |
1
Try Raster Calculator
– BERA
Mar 18 at 7:36
1
1
Try Raster Calculator
– BERA
Mar 18 at 7:36
Try Raster Calculator
– BERA
Mar 18 at 7:36
add a comment |
1 Answer
1
active
oldest
votes
You can use Raster Calculator
with the following formula:
(("RasterFile@1" > 0) AND ("RasterFile@1" < 50)) * "RasterFile@1"
The above expression will produce a raster data with pixel values of more than Zero and less than 50 as they are (No change in pixel values). Other pixel values will be Zeros.
You need to replace RasterFile
in the expression above with the correct name of the raster data that you have in the Raster Calculator.
Thank you so much! It works perfectly!
– Slunicko
Mar 18 at 9:13
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f315799%2fpartial-raster-reclassify-in-qgis%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use Raster Calculator
with the following formula:
(("RasterFile@1" > 0) AND ("RasterFile@1" < 50)) * "RasterFile@1"
The above expression will produce a raster data with pixel values of more than Zero and less than 50 as they are (No change in pixel values). Other pixel values will be Zeros.
You need to replace RasterFile
in the expression above with the correct name of the raster data that you have in the Raster Calculator.
Thank you so much! It works perfectly!
– Slunicko
Mar 18 at 9:13
add a comment |
You can use Raster Calculator
with the following formula:
(("RasterFile@1" > 0) AND ("RasterFile@1" < 50)) * "RasterFile@1"
The above expression will produce a raster data with pixel values of more than Zero and less than 50 as they are (No change in pixel values). Other pixel values will be Zeros.
You need to replace RasterFile
in the expression above with the correct name of the raster data that you have in the Raster Calculator.
Thank you so much! It works perfectly!
– Slunicko
Mar 18 at 9:13
add a comment |
You can use Raster Calculator
with the following formula:
(("RasterFile@1" > 0) AND ("RasterFile@1" < 50)) * "RasterFile@1"
The above expression will produce a raster data with pixel values of more than Zero and less than 50 as they are (No change in pixel values). Other pixel values will be Zeros.
You need to replace RasterFile
in the expression above with the correct name of the raster data that you have in the Raster Calculator.
You can use Raster Calculator
with the following formula:
(("RasterFile@1" > 0) AND ("RasterFile@1" < 50)) * "RasterFile@1"
The above expression will produce a raster data with pixel values of more than Zero and less than 50 as they are (No change in pixel values). Other pixel values will be Zeros.
You need to replace RasterFile
in the expression above with the correct name of the raster data that you have in the Raster Calculator.
answered Mar 18 at 8:37
ahmadhanbahmadhanb
23.6k32154
23.6k32154
Thank you so much! It works perfectly!
– Slunicko
Mar 18 at 9:13
add a comment |
Thank you so much! It works perfectly!
– Slunicko
Mar 18 at 9:13
Thank you so much! It works perfectly!
– Slunicko
Mar 18 at 9:13
Thank you so much! It works perfectly!
– Slunicko
Mar 18 at 9:13
add a comment |
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f315799%2fpartial-raster-reclassify-in-qgis%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Try Raster Calculator
– BERA
Mar 18 at 7:36