File:Ukraine 2016-12-07 Sentinel-2A L1 EO Browser Sentinel hub Custom script.jpg

Original file(1,727 × 966 pixels, file size: 1.07 MB, MIME type: image/jpeg)

Captions

Captions

Observation of the earth's surface microrelief through Sentinel Hub EO Browser using Custom script

Summary edit

Description
Українська: Результат трансформації супутникового, мультиспектрального зображення земної поверхні, вкритої шаром снігу, після застосування авторського скрипту за допомогою інструменту custom script у хмарному переглядачі Sentinel-Hub EO Browser, Sinergise.

Застосовано формулу перетворення зображення з використанням алгоритму Індексу тіні (SI) та алгоритму виявлення поверхні вкритої снігом (NDSI).

Підсилення контрасту зображення мікрорельєфу земної поверхні виконано за допомогою змінних gain та gamma.

На думку автора, поточний рельєф цієї місцевості утворився у віддалені часи внаслідок надпотужного висотного вибуху під час детонації пухкої оболонки великого космічного тіла при зіткненні зі щільними шарами атмосфери, на межі Вінниччини та Черкащини.

Одночасно відбулося хаотичне від'ємне перемагнічування поверхневого фону на геофізичній мапі геомагнітних аномалій, яке корелює до площі з візуальними ознаками механічних перетворень земної поверхні.

Потужність висотного вибуху була на декілька порядків вище енерговиділення падіння уламків на земну поверхню.

Це призвело до утворення западини попереком у 4-4,5км у формі сегменту сфероїду.

Найбільші уламки впали край села Івангород, Христинівського району, утворивши два дотичних великих кратери попереком 320 та 480 метрів.

Сучасний вигляд цих кратерів - овальні западині із пласким дном, яке утворилося внаслідок тривалого, багато тисячолітнього процесу заповнення долу кратерів органічними та мінеральними речовинами, на тлі тривалого гідрологічного застою у кратерних западинах.

Цікавинка місцевості у тому, що досі помітні рештки кратерного валу, дотичного до кратерних западин.

Масштаби перетворень рельєфу земної поверхні, внаслідок падіння великого космічного тіла, можливо усвідомити лише при перегляді супутникових зображень.

Приклад використаного скрипту:

// Detection of surface microrelief details using

// winter images of a snow-covered terrain.

// The script visualizes Earth surface in False Color from Sentinel-2 data.

// Viewers: Sentinel-Hub Playground or EO-Browser

// Remark: Make sure to enable "Atmospheric Correction" or use S2L1A image type

// Authors: Anton Latukha, Valery Latukha

// Other borrowing. Custom script by Simon Gascoin: "Better snow visualisation using NDSI"

// Facebook community: New and unknown meteorite craters in Ukraine

// License: CC BY 4.0 International

var gain = 0.3;

var gamma = 18.0;

var red = 1 - B08;

var green = 1 - B02;

var blue = (1 - B03) * (1 - B04) * (1 - B11);

var cp1_r = 1.1 * B04;

var cp1_g = 1.3 * B03;

var cp1_b = 1.1 * B02;

var cp2_r = 2.5 * B04;

var cp2_g = 1.2 * B08;

var cp2_b = 1.5 * B02;

var ndsi = (B03 - B11) / (0.01 + B03 + B11);

var switchCp12 = ((ndsi > 0.2) && (B03 > 0.15));

var red = red * (switchCp12 ? cp1_r : cp2_r);

var green = green * (switchCp12 ? cp1_g : cp2_g);

var blue = blue * (switchCp12 ? cp1_b : cp2_b);

return [red*B12*6.5, green*B11*4.5, blue*B08*4.5].map(a => gain * a).map(a => gamma * a);


English: Two large impact structures and field of impact craters between the villages Sychivka, Ivanhorod, Chortoryia, Kalnyk on the border of Cherkasy region and Vinnytsia region, Ukraine.

The result of the transformation of a satellite, multispectral image of the earth's surface, covered with a layer of snow, after applying the author's script using the custom script tool in the cloud browser Sentinel-Hub EO Browser, Sinergise.

An image conversion formula was applied using the Shadow Index (SI) algorithm and the Snow-covered Surface Detection (NDSI) algorithm.

Contrast enhancement of the microrelief image of the Earth's surface is made using the gain and gamma variables.

According to the author, the current terrain of this locality was formed in distant times as a result of a high-altitude explosion during detonation of a loose shell of a large cosmic body at collision with dense layers of the atmosphere, on the border of Vinnytsia and Cherkasy region.

This message concerns a complex object that has not yet been observed, was not interpreted, it is not registered in the international database of meteorite craters, or areas over which the destruction of the cosmic body with catastrophic consequences occurred, but is clearly evident on the current satellite images as a set of consequences of the effects of various physical factors of cosmogenic origin on the geomorphological changes in the microrelief of the surface of the indicated territory and accompanied by a picture of chaotic negative reversal background magnetization on the geophysical map of geomagnetic anomalies.

The surface microrelief of central Ukraine, distorted by the fall of the cosmic body due to various factors of mechanical impact:

- the formation of flat depressions with an arcuate breastplate due to the fall of the surface of explosive waves;

- formation of waves on the surface due to the Mach Stem effect;

- the formation of craters from the fall of solid fragments;

- formation of distorted valleys in the zone of maximum energy release during the high-altitude explosion of the loose shell.

The magnitude of the transformation of the terrain of the earth's surface, due to the fall of a large cosmic body, can only be realized when viewing satellite images.

Example of script used:

// Detection of surface microrelief details using

// winter images of a snow-covered terrain.

// The script visualizes Earth surface in False Color from Sentinel-2 data.

// Viewers: Sentinel-Hub Playground or EO-Browser

// Remark: Make sure to enable "Atmospheric Correction" or use S2L1A image type

// Authors: Anton Latukha, Valery Latukha

// Other borrowing. Custom script by Simon Gascoin: "Better snow visualisation using NDSI"

// Facebook community: New and unknown meteorite craters in Ukraine

// License: CC BY 4.0 International

var gain = 0.3;

var gamma = 18.0;

var red = 1 - B08;

var green = 1 - B02;

var blue = (1 - B03) * (1 - B04) * (1 - B11);

var cp1_r = 1.1 * B04;

var cp1_g = 1.3 * B03;

var cp1_b = 1.1 * B02;

var cp2_r = 2.5 * B04;

var cp2_g = 1.2 * B08;

var cp2_b = 1.5 * B02;

var ndsi = (B03 - B11) / (0.01 + B03 + B11);

var switchCp12 = ((ndsi > 0.2) && (B03 > 0.15));

var red = red * (switchCp12 ? cp1_r : cp2_r);

var green = green * (switchCp12 ? cp1_g : cp2_g);

var blue = blue * (switchCp12 ? cp1_b : cp2_b);

return [red*B12*6.5, green*B11*4.5, blue*B08*4.5].map(a => gain * a).map(a => gamma * a);
Date
Source Own work
Author Латуха Валерій Іванович
Camera location48° 49′ 28.3″ N, 29° 49′ 10″ E Kartographer map based on OpenStreetMap.View this and other nearby images on: OpenStreetMapinfo

Licensing edit

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current00:42, 26 November 2019Thumbnail for version as of 00:42, 26 November 20191,727 × 966 (1.07 MB)Latuha1 (talk | contribs)User created page with UploadWizard

File usage on other wikis