This code is part of a tutorial series on Earth Engine programming techniques var class1 = cons.where(forest.lt(5), 1); var class2 = class1.where(forest.gte(5).and(forest.lt(10)),2) var class3 = ...