// SAR False Color Visualization // The script visualizes Earth surface in False Color from Sentinel-1 data. // Author: Annamaria Luongo (Twitter: @annamaria_84, https://www.linkedin.com/in/annamaria-luongo-RS )// License: CC BY 4.0 International varc1=10e-4;varc2=0.01;varc3=0.02;varc4=0.03;varc5=0.045;varc6=0.05;varc7=0.9;varc8=0.25;//Enhanced or non-enhanced option (set to "true" if you want enhanced)varenhanced=false;if(enhanced!=true){//Non-enhanced optionvarband1=c4+Math.log(c1-Math.log(c6/(c3+2*VV)));varband2=c6+Math.exp(c8*(Math.log(c2+2*VV)+Math.log(c3+5*VH)));varband3=1-Math.log(c6/(c5-c7*VV));}else{//Enhanced optionvarband1=c4+Math.log(c1-Math.log(c6/(c3+2.5*VV))+Math.log(c6/(c3+1.5*VH)));varband2=c6+Math.exp(c8*(Math.log(c2+2*VV)+Math.log(c3+7*VH)));varband3=0.8-Math.log(c6/(c5-c7*VV));}return[band1,band2,band3];
The script visualizes Earth surface in False Color from Sentinel-1 data. It helps in maritime monitoring (ice monitoring, ship monitoring,…) land monitoring (agricolture, deforestation,…) and emergency management (flood monitoring, volcano monitoring, …).