นี่คือตัวอย่างที่สามารถช่วยคุณเริ่มต้นใช้งาน Google-Earth-Engine โดยใช้ C-Band ของ Sentinel:
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);
คุณจะต้องจำแนกภาพโดยใช้อัลกอริทึมการจัดหมวดหมู่ภายใต้การดูแลที่กล่าวถึงที่นี่:
https://developers.google.com/earth-engine/classification
เพิ่มเติมเกี่ยวกับการใช้ Sentinel-1
https://developers.google.com/earth-engine/sentinel1
บน Google Earth Engine และกลาเซียร์:
http://www.geo.uzh.ch/~mzemp/share/scratch/msc/MSc.Thesis_NoahZeltner_UsingGoogleEarthEngineForGloacGangeAssessment.pdf
ในเขต SAR และธารน้ำแข็ง:
http://www.sciencedirect.com/science/article/pii/S0034425713001703