Band math equation

Hii
Everyone
I want to extract the specific pixel value range from my sentinel 1 grd data using band math…please help me the band math equation.
Example is that i want pixel valus greater than -3 and less than 14.so what is tha equation in such case?

If you want to identify all pixels with values between -3 and 14 you can as well use the Mask Manager. Examples on its use are given here: Synergetic use of S1 (SAR) and S2 (optical) data and use of analysis tools

The equation (same in Band Maths) is
raster > -3 AND raster < 14

1 Like

Thank you for help

Hi! @ABraun

How to put pixel values <=1 equal to zero or NaN and all other pixel values same as given int he image?

Thank you in advance

IF band <= 1 THEN 0 ELSE band

1 Like