File size: 303 Bytes
2cdce84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
     //VERSION=3
     function setup(){
        return{
          input: ["CLP"],
          output: [
            {
              sampleType: "FLOAT32",
              bands: 1
            }
        ]
        }
      }
      
      function evaluatePixel(sample){
        return [sample.CLP/255];
      }