এখানে একটি উদাহরণ রয়েছে যা আপনাকে সেন্টিনেল -১ এর সি-ব্যান্ড ব্যবহার করে গুগল-আর্থ-ইঞ্জিনে শুরু করতে সহায়তা করতে পারে:
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/classization
সেন্টিনেল -১ https://developers.google.com/earth-engine/sentinel1 ব্যবহার করার বিষয়ে আরও
গুগল আর্থ ইঞ্জিন এবং হিমবাহগুলিতে:
http://www.geo.uzh.ch/~mzemp/share/scratch/msc/MSc.Thesis_NoahZeltner_UssGoogleEarthEngineForGlobalGlacierChangeAssessment.pdf
এসএআর এবং হিমবাহ অঞ্চলগুলিতে: http ://www.sज्ञानdirect.com/sज्ञान/article/pii/
S0034425713001703