Hi! I added a new layer which Source is Sentinel S1 GRD and we need to use VH in decibels from -23 to -14 db but now it returns values from -20 to 0 I think (//displays VH in decibels from -20 to 0). This is the code we are using:
var val = [Math.max(0, Math.log(VH) * 0.21714724095 + 1)];
var valaux = 13.146*(val) + 317.45;
return colorBlend(valaux,[0,40],[[1,1,0],[0,0,1]]);
Is there a way to get VH in decibels from -23 a -14?
Thanks!
