Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Oil Slicks and Red Tide Monitoring

//Oil slicks and Red tide monitoring  
//By TIZNEGAR Startup Co, www.tiznegar.com
//Dataset:Sentinel-1 AWS-IW-VVVH

var ORM = Math.log(0.01/(0.01+VV*2)); 

if (ORM < [ 0] &&  VV< [ 0.018]&&  VH< [ 0.00126]) { 
    
   return colorBlend   
    (ORM,	            
         [-1.6, -1.4, -1.2, -1, -.8, -.6, -.4, -.2, 0], 
        [     
   
     [0,0,.1 ],
     [0,0,.4 ],
     [0,0,.8],
     [1,0,.5],
     [1,0,0],
     [1,.5,.2],
     [1,.8,.2],
     [1,1,.4],
     [.5,.8,.3],
           

      ]);
}
else {
 return [2.5*VV,2.5*VV,2.5*VV]
}

Evaluate and Visualize

Author of the script

By TIZNEGAR Startup Co, www.tiznegar.com

General description

This script is capable of detecting oil slicks and red tides (harmful algal blooms) at sea. In this script we use the ORM (Oil slicks and Red tide monitoring) index, calculated as:

ORM = Math.log(0.01/(0.01+VV*2))

The pixels where both ORM index values are lower than zero, and VV and VH values are low, are visualized with a continuous color visualization. Other areas are returned as grayscale VV visualization. Differences in color of ORM values below 0 correspond to changes in water roughness, making it posible to detect oil pollution (which is characterized by a very shiny surface), and red tides (characterized by rough surface changes). Aside from oil spills and red ocean tides, the script can also be used to monitor water quality of wetlands and rivers connected to the sea, by detecting pollution caused by industrial pollutants, municipal sewage, algae density and mud. Increased water pollution is indicated by bright yellow, orange and red colors in the script.

Dense clouds and severe storms negatively affect the accuracy of this indicator.

Description of representative images

Example 1

Oil slick caused by the collision of a Sabiti tanker 108 km from the Saudi port of Jeddah in the Red Sea.

A1 Show in EO Browser.

Example 2

Changes in quality of incoming waters due to algae density change in the Persian Gulf.

A2 Show in EO Browser.

Example 3

River waters enter into the Caspian Sea, bringing a higher concentration of algae, industrial pollutants and mud.

A3 Show in EO Browser.