Partial raster reclassify in QGIS












2















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?










share|improve this question




















  • 1





    Try Raster Calculator

    – BERA
    Mar 18 at 7:36
















2















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?










share|improve this question




















  • 1





    Try Raster Calculator

    – BERA
    Mar 18 at 7:36














2












2








2








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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














  • 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










1 Answer
1






active

oldest

votes


















4














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.






share|improve this answer
























  • Thank you so much! It works perfectly!

    – Slunicko
    Mar 18 at 9:13











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
});


}
});














draft saved

draft discarded


















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









4














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.






share|improve this answer
























  • Thank you so much! It works perfectly!

    – Slunicko
    Mar 18 at 9:13
















4














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.






share|improve this answer
























  • Thank you so much! It works perfectly!

    – Slunicko
    Mar 18 at 9:13














4












4








4







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.






share|improve this answer













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.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 18 at 8:37









ahmadhanbahmadhanb

23.6k32154




23.6k32154













  • 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





Thank you so much! It works perfectly!

– Slunicko
Mar 18 at 9:13


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?