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









New contributor




Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    Try Raster Calculator

    – BERA
    17 hours ago
















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









New contributor




Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    Try Raster Calculator

    – BERA
    17 hours ago














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









New contributor




Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












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









New contributor




Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 16 hours ago









Taras

2,2742727




2,2742727






New contributor




Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 18 hours ago









SlunickoSlunicko

111




111




New contributor




Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Slunicko is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 1





    Try Raster Calculator

    – BERA
    17 hours ago














  • 1





    Try Raster Calculator

    – BERA
    17 hours ago








1




1





Try Raster Calculator

– BERA
17 hours ago





Try Raster Calculator

– BERA
17 hours ago










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
    16 hours ago











  • @Slunicko Glad it worked. Please accept the answer if it solved your problem.

    – ahmadhanb
    14 hours ago













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.










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
    16 hours ago











  • @Slunicko Glad it worked. Please accept the answer if it solved your problem.

    – ahmadhanb
    14 hours ago


















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
    16 hours ago











  • @Slunicko Glad it worked. Please accept the answer if it solved your problem.

    – ahmadhanb
    14 hours ago
















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 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





















  • 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












Slunicko is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















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.




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

How did Captain America manage to do this?

迪纳利

南乌拉尔铁路局