Đây là một ví dụ có thể giúp bạn bắt đầu trên Google-Earth-Engine bằng C-Band của Sentinel-1:
var pt = ee.Geometry.Point(96.7868, 29.31409);
// Filter collection around point. Also read up on Sentinel-1's
// polarization
var collection = ee.ImageCollection('COPERNICUS/S1_GRD').filterBounds(pt)
.filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VV'))
.select('VV');
// select an appropriate date
var beforesnow = collection.filterDate('2016-11-01', '2016-12-01').mosaic();
var aftersnow = collection.filterDate('2017-02-01', '2017-03-01').mosaic();
// bands for Sentinel-2
var bands = ['B2', 'B3', 'B4'];
// Some Sentinel-2 images for reference
var S2 = ee.ImageCollection('COPERNICUS/S2').filterBounds(pt)
.select(bands);
var S2before = S2.filterDate('2016-10-01', '2016-11-30').mosaic();
var S2after = S2.filterDate('2017-01-01', '2017-02-01').mosaic();
Map.addLayer(S2before, {bands: ['B4', 'B3', 'B2'], min: 300,max: 5000}, 'S2 Before');
Map.addLayer(S2after, {bands: ['B4', 'B3', 'B2'], min:873,max: 12522}, 'S2 After');
Map.centerObject(pt, 13);
// you may change the min, max later when tinkering with the layers tab in // the map
Map.addLayer(beforesnow, {min:-30,max:0}, 'Before snow');
Map.addLayer(aftersnow, {min:-30,max:0}, 'After snow');
//Some information on the Sentinel-1 collection
print('Collection: ', collection);
Bạn sẽ phải phân loại Hình ảnh bằng các thuật toán phân loại có giám sát được đề cập tại đây: https://developers.google.com/earth-engine/ classification
Thông tin thêm về việc sử dụng Sentinel-1
https://developers.google.com/earth-engine/sentinel1
Trên Google Earth Engine và Glaciers:
http://www.geo.uzh.ch/~mzemp/share/scratch/msc/MSc.Tribution_NoahZeltner_UsingGoogleEarthEngineForGlobalGlacierChangeAssessment.pdf
Trên vùng SAR và sông băng:
http://www.scTHERirect.com/science/article/pii/S0034425713001703