Skip to content
Advertisement

Reclassify NDVI raster in intervals on Google Earht Engine

Location:

JavaScript

Collection:

JavaScript

Calculte NDVI

JavaScript

Now i want to reclass the NDVI raster in interal [-1-0.2], [0.2-0.4], [0.4-0.6], [0.6-0.8],[0.8-1],i try this code

JavaScript

But the result image have only 2 clasess -1 and 1

Advertisement

Answer

There are multiple ways to do this, the way I prefer is to use a decision tree classifier. From your question, it seems like the ranges you want is less than 0.2, 02-0.4,0.4-0.6,0.6-0.8(missed in question maybe) and greater than 0.8. We need to construct a decision tree for this, use it to create a classifier and then apply it to the image.

JavaScript

You can see the working example here

OR You can also use logic operators to test the values in required range and then multiply by class numbers to get pixels for each class. for eg for class 2

JavaScript

if you do similar for c1, c3, c4, c5 you should have rasters that only have pixels with values 0 and the class number. If you add all these layers you should get what you want

Advertisement