Рет қаралды 681
In this video I'm Covering Image Collection in Google Earth Engine (GEE).
Link of GEE:
earthengine.go...
Code:
//Image Collection
var imagecollection = ee.ImageCollection("LANDSAT/LC09/C02/T1_TOA")
.filterDate('2022-12-01' , '2023-01-31')
.filter(ee.Filter.eq('TARGET_WRS_PATH', 138))
.filter(ee.Filter.eq('TARGET_WRS_ROW', 45))
.sort('CLOUD_COVER').first();
// Visualization Parameter
var vispara = {
bands: ['B5','B4','B3'],
min: 0,
max: 0.5
};
var vispara1 = {
bands: ['B4','B3','B2'],
min: 0,
max: 0.5
};
//Map center object
Map.centerObject (imagecollection, 8);
//Display Map
Map.addLayer(imagecollection,vispara,"FCC");
Map.addLayer(imagecollection,vispara1,"True Colour");
---------------------------------------------------
For other videos on my channel:
+++++++++++++++++++++++++
GEE Playlist:
• Google Earth Engine (GEE)
QGIS Video Playlist:
• QGIS Video Tutorials
ArcGIS Video Playlist:
• ArcGIS Video Tutorials
------------------------------------------------------
------------------------------------------------------
Google Earth Engine (GEE) Video Content:
------------------------------------------------------
GEE: 01 :- Introduction and Explore Earth Engine
• Introduction and Explo...
GEE: 02 :- Earth Engine Code Editor
• Earth Engine Code Edit...
GEE: 03 :- Basic Java Script Syntax
• Basic Java Script Synt...
GEE: 04 :- Single Band Image Visualization in Google Earth Engine
• Single Band Image Visu...
GEE: 05 :- Multi-band Image Visualization in Google Earth Engine
• Multi-band Image Visua...
GEE: 06 :-Image Collection in Google Earth Engine
• Image Collection in Go...
------------------------------------------------------
------------------------------------------------------
#EarthEngine #GEE #InageCollection #ITGIS #GoogleEarthEngine #Landsat9 #RemoteSensing #Coding #JavaScript #JavaScriptInEarthEngine
------------------------------------------------------
------------------------------------------------------
If you have any queries please comment below. If you like my videos please subscribe to my channel for the latest update. Don't forget to Like, Share or Comment. Thanks for watching it.