How to Calculate Min and Max in GEE || Visualization || Range Calculation in GEE ||

  Рет қаралды 158

Understanding RS-GIS & Geography

Understanding RS-GIS & Geography

Күн бұрын

Please Subscribe this KZbin Channel. You will be helpful with this channel. Please like and share the videos. And comment me if any query or any suggestion. Thank you.
------------------------------------------------------------------------------------------
GEE CODE
------------------------------------------------------------------------------------------
/* Step 1 - Region of Interest ********************************************************/
Map.addLayer(roi,{},'roi',false);
Map.centerObject(roi,12)
/* Step 2 - Calling the Data **********************************************************/
var S23 = ee.ImageCollection('COPERNICUS/S2')
.filterDate('2023-01-01', '2023-12-31')
.filter(ee.Filter.lt('CLOUDY_PIXEL_PERCENTAGE', 10))
.select('B2', 'B3', 'B4','B5', 'B6', 'B7', 'B8' , 'B11', 'B12')
.median()
.clip(roi)
;
/* Step 3 - NDVI calculation ************************************************************/
/// ndvi nir red
var ndvi_2023 = S23.normalizedDifference(['B8', 'B4']);
/* Step 4 - min and max or range Calculation *****************************************/
var range_ndvi_2023 = ndvi_2023.reduceRegion({
reducer: ee.Reducer.minMax(),
geometry: roi,
scale: 10,
maxPixels: 1e9
});
/* Step 5 - Print the min and max or range ***************************************************************/
print(range_ndvi_2023,'range_ndvi_2023')
var colorizedVis = {
min: -0.09,
max: 0.45,
palette: [
'ffffff', 'ce7e45', 'df923d', 'f1b555', 'fcd163', '99b718', '74a901',
'66a000', '529400', '3e8601', '207401', '056201', '004c00', '023b01',
'012e01', '011d01', '011301'
],
};
Map.addLayer(ndvi_2023,colorizedVis,'ndvi_2023',false)
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
ArcMap Fundamentals
• ArcMap Fundamentals
Google Earth
• Google Earth
Google Earth Engine
• Google Earth Engine
Research Methodology
• Research Methodology
R STUDIO
• R STUDIO
Hydraulics
• Hydraulics
Excel Fundamentals
• MS Excel
Topographical Map
• Topographical Map
Shapefile Editing
• Shapefile Editing
MS Word
• MS Word
Data Downloading
• Data Downloading
#ursgisg
#min_max
#gee
#ursgisg

Пікірлер: 2
@uma9183
@uma9183 6 ай бұрын
sir, code please
@understandingrs-gisgeograp9685
@understandingrs-gisgeograp9685 6 ай бұрын
/* Step 1 - Region of Interest ********************************************************/ Map.addLayer(roi,{},'roi',false); Map.centerObject(roi,12) /* Step 2 - Calling the Data **********************************************************/ var S23 = ee.ImageCollection('COPERNICUS/S2') .filterDate('2023-01-01', '2023-12-31') .filter(ee.Filter.lt('CLOUDY_PIXEL_PERCENTAGE', 10)) .select('B2', 'B3', 'B4','B5', 'B6', 'B7', 'B8' , 'B11', 'B12') .median() .clip(roi) ; /* Step 3 - NDVI calculation ************************************************************/ /// ndvi nir red var ndvi_2023 = S23.normalizedDifference(['B8', 'B4']); /* Step 4 - min and max or range Calculation *****************************************/ var range_ndvi_2023 = ndvi_2023.reduceRegion({ reducer: ee.Reducer.minMax(), geometry: roi, scale: 10, maxPixels: 1e9 }); /* Step 5 - Print the min and max or range ***************************************************************/ print(range_ndvi_2023,'range_ndvi_2023') var colorizedVis = { min: -0.09, max: 0.45, palette: [ 'ffffff', 'ce7e45', 'df923d', 'f1b555', 'fcd163', '99b718', '74a901', '66a000', '529400', '3e8601', '207401', '056201', '004c00', '023b01', '012e01', '011d01', '011301' ], }; Map.addLayer(ndvi_2023,colorizedVis,'ndvi_2023',false)
Excel Multiple Column Lookups: Which Method is Best?
15:41
Excel Off The Grid
Рет қаралды 12 М.
Design of Experiments (DoE) simply explained
25:53
DATAtab
Рет қаралды 69 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
An Absolute Beginner's Guide to QGIS 3
1:10:08
GeoDelta Labs
Рет қаралды 1,3 МЛН
Different Types of Image Export in GEE || Google Earth Engine || #gee #ursgisg #imageexport
6:27
Concrete Slab Calculations 006
6:08
Jerry Howard
Рет қаралды 571 М.
Elevation Map Creation in ArcGIS From GEE Dem || SRTM dem analysis
15:01
Understanding RS-GIS & Geography
Рет қаралды 160
Introduction to GEE with R language || How to use R programing language to run Google Earth Engine
38:29
Study Hacks-Institute of GIS & Remote Sensing
Рет қаралды 446
Global Shapefile Data into Your GEE Asset || Google Earth Engine ||
6:12
Understanding RS-GIS & Geography
Рет қаралды 133
R programming for beginners - statistic with R (t-test and linear regression) and dplyr and ggplot
15:49