Show script or download{:target="_blank"} it.
{% highlight javascript %}
{% include_relative script.js %}
{% endhighlight %}
- EO Browser{:target="_blank"}
This script aims to display the Earth in beautiful natural color images. It uses highlight optimization to avoid burnt out pixels and to even out the exposure. The script needs only 3 code lines and was inspired by the Tonemapped Natural Color Script{:target="_blank"}.
For Sentinel-2 L2A, the script applies the cubic root of the lowered values of the true color bands:
return [Math.cbrt(0.6 * B04),
Math.cbrt(0.6 * B03),
Math.cbrt(0.6 * B02)]
For Sentinel-2 L1C, the contrast is additionally increased for better visualization:
return [Math.cbrt(0.6 * B04 - 0.035),
Math.cbrt(0.6 * B03 - 0.035),
Math.cbrt(0.6 * B02 - 0.035)]
Marko Repše
Glacier Grey, Chile. Image acquired on 2019-05-08, processed by Sentinel Hub.
- Tonemapped Natural Color Script{:target="_blank"}