NDVI values show in polygon(in MAP) like 10px
I am using “ogc/wms/” api and NDVI layer i am using //VERSION=3function setup() { return { input: ["B04", "B08", "SCL","dataMask"], output: [ { id: "default", bands: 4 }, { id: "index", bands: 1, sampleType: "FLOAT32" }, { id: "eobrowserStats", bands: 2, sampleType: 'FLOAT32' }, { id: "dataMask", bands: 1 } ] };}function evaluatePixel(samples) { let val = index(samples.B08, samples.B04); let imgVals = null; // The library for tiffs works well only if there is only one channel returned. // So we encode the "no data" as NaN here and ignore NaNs on frontend. const indexVal = samples.dataMask === 1 ? val : NaN; if (val<-0.5) imgVals = [0.05,0.05,0.05,samples.dataMask]; else if (val<-0.2) imgVals = [0.75,0.75,0.75,samples.dataMask]; else if (val&