A-O98's picture
first commit
2cdce84
raw
history blame
303 Bytes
//VERSION=3
function setup(){
return{
input: ["CLP"],
output: [
{
sampleType: "FLOAT32",
bands: 1
}
]
}
}
function evaluatePixel(sample){
return [sample.CLP/255];
}