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
New contributor
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
New contributor
1
Try Raster Calculator
– BERA
17 hours ago
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
New contributor
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
New contributor
New contributor
edited 16 hours ago
Taras
2,2742727
2,2742727
New contributor
asked 18 hours ago
SlunickoSlunicko
111
111
New contributor
New contributor
1
Try Raster Calculator
– BERA
17 hours ago
add a comment |
1
Try Raster Calculator
– BERA
17 hours ago
1
1
Try Raster Calculator
– BERA
17 hours ago
Try Raster Calculator
– BERA
17 hours ago
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
16 hours ago
@Slunicko Glad it worked. Please accept the answer if it solved your problem.
– ahmadhanb
14 hours ago
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
});
}
});
Slunicko is a new contributor. Be nice, and check out our Code of Conduct.
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
16 hours ago
@Slunicko Glad it worked. Please accept the answer if it solved your problem.
– ahmadhanb
14 hours ago
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
16 hours ago
@Slunicko Glad it worked. Please accept the answer if it solved your problem.
– ahmadhanb
14 hours ago
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 16 hours ago
ahmadhanbahmadhanb
23.4k32153
23.4k32153
Thank you so much! It works perfectly!
– Slunicko
16 hours ago
@Slunicko Glad it worked. Please accept the answer if it solved your problem.
– ahmadhanb
14 hours ago
add a comment |
Thank you so much! It works perfectly!
– Slunicko
16 hours ago
@Slunicko Glad it worked. Please accept the answer if it solved your problem.
– ahmadhanb
14 hours ago
Thank you so much! It works perfectly!
– Slunicko
16 hours ago
Thank you so much! It works perfectly!
– Slunicko
16 hours ago
@Slunicko Glad it worked. Please accept the answer if it solved your problem.
– ahmadhanb
14 hours ago
@Slunicko Glad it worked. Please accept the answer if it solved your problem.
– ahmadhanb
14 hours ago
add a comment |
Slunicko is a new contributor. Be nice, and check out our Code of Conduct.
Slunicko is a new contributor. Be nice, and check out our Code of Conduct.
Slunicko is a new contributor. Be nice, and check out our Code of Conduct.
Slunicko is a new contributor. Be nice, and check out our Code of Conduct.
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
17 hours ago