Landslide Susceptibility Mapping in Google Earth Engine GEE

Поділитися
Вставка
  • Опубліковано 20 вер 2024
  • Making a Simple Map using Google Earth Engine
    Create Digital Map using Google Earth Engine
    Create a Simple Deforestation Map using Google Earth Engine
    Filter and Show Country Boundary in Google Earth Engine | Google Earth Engine Tutorial for Beginners
    Full Course - Google Earth Engine for Absolute Beginners in 3 Hours
    GOOGLE EARTH ENGINE TUTORIAL
    Google Earth Engine 101: An Introduction for Complete Beginners
    35:58 Google Earth Engine Javascript Code Editor
    How to Use Google Earth Engine to Download Building Footprint Data | Open Buildings Dataset Tutorial
    Create Verra's JNR Deforestation Risk Map in Google Earth Engine
    Making a Simple Map using Google Earth
    Intro | Importing items | Adding place marks | Digitizing jogging tracks | Map layout
    Calculate Forest area Lost & Gained in Earth Engine
    Creating a TimeLapse of Koshi River in Bihar India Using Google Earth Engine.
    Real Choo Choo Charles 😱👇 on google map and google earth 🌎 #uniqueearth1m #short #youtubeshorts
    😱 Scary Cat part 6 on Google and Google Earth Maps 🌎📍😲#like #yutube #funny #shhort #vairalvideo #map
    🤯 big giant hat 😱 it's rial found on Google earth and Google map 🌏 #shorts #video #map #earthcastle
    Mapping Coastline Changes using Google Earth Engine
    Satellite Image classification Random Forest (RF) Machine Leaning (ML) in Google Earth Engine (GEE)
    Introduction | Select Study Area | Add Sentinel | Image Visualization | Class Selection | Image Collection | Band Selection | Image Stack | Training Data Points | Training Samples | Code
    Introduction to Google Earth Engine in Javascript
    (1/14) Intro to Earth Engine in JavaScript |Geo for Good 2023
    (2/14) Intro to JavaScript Concepts in Earth Engine |Geo for Good 2023
    big giant hat 😱 it's rial found on Google earth and Google map 🌏 #shorts #video #map #earthcastle
    Strange place part 1🤯😱 maps and google earth on google #earthmap721 #video
    Modern-Day Countries in Pangea #interestingmaps #Maps #pangea #maps #interesting
    How to Draw a Globe Step by Step Easy I Globe Drawing | World Map Drawing | How to Draw World Map
    Google Earth Engine Tutorials
    Download and Extract SMAP Soil Moisture Timeseries Data using Earth Engine
    Download Climate Data (Rainfall) from 1981 - 2022 using Earth Engine API
    Create a Simple Sea Level Rise Simulation Application in Google Earth Engine
    Introduction | Code | Deploy
    Create Random Sample points using Google Earth Engine / Any Study Area
    Supervised Classification of Landsat 8 imagery in Google Earth Engine | Part 1
    Flood Susceptibility Mapping using Google Earth Engine
    Study Hacks-Institute of GIS & Remote Sensing
    Google Earth Engine Tutorials
    Google Earth Engine 1: Difference Between Server and Client
    Google Earth Engine and geemap Python Tutorials
    Google Earth Engine and geemap workshop at GeoPython Conference 2021
    Google Earth Engine Full Course Recorded Video Class Beginners to advanced
    Beginner's Course on Google earth Engine part: 1
    Supervised classification in Google Earth Engine || Land Use and Land Cover Classification
    Beginners Guide to Google Earth Engine (GEE)
    A Quick Intro to Google Earth Engine - Lighten Version Video
    Introduction to Google Earth Engine (GEE)
    How to create a project on Google Earth
    Strange place part 1🤯😱 maps and google earth on google #earthmap721 #video
    Creating a TimeLapse of Koshi River in Bihar India Using Google Earth Engine.
    Giant crab on google maps and google earth 🌎 #shorts #googleearth #earth #map
    Create and animate arrows quickly in Adobe After Effects with the GEOlayers 3 Arrow tool
    Importing GIS shapefiles into Google Earth Engine
    How to make Rainfall Map using Google Earth Engine || Rainfall Map || Temporal Data||GEE||1981-2023
    How to create a CINEMATIC VIDEO using GOOGLE EARTH STUDIO
    Create and animate arrows quickly in Adobe After Effects with the GEOlayers 3 Arrow tool
    3-in-1 LED World Globe / Constellation Map / Night Light | Earth Day 2021 | USA Toyz #shorts
    How to Draw a Globe Step by Step Easy I Globe Drawing | World Map Drawing | How to Draw World Map
    3D map in Google earth
    Modern-Day Countries in Pangea #interestingmaps #Maps #pangea #maps #interesting
    How I Make My Maps
    Intro | Intel Evo | Story Time | Original Workflow | Geo Layers | Map Comp | After Effects | Zooming | Data Hub | Animating | Labeling | Finalizing | Rendering
    vidIQbasicJohnny HarrisJohnny Harris VoxVox BordersJohnny Harris Vox BordersVoxgeolayersgeolayers 3geolayers tutorialhow to make mapsmap animationmap animation tutorialsanimation tutorials
    How Much Water Is on Earth?🌊🤯
    Infinite Stairs To Moon 😱🤯 On Google Earth #shorts
    Google Earth Engine and geemap Python Tutorials
    Earth Engine and Geemap Workshop at the AmericaView Annual Conference 2023
    Google Earth Engine and geemap workshop at GeoPython Conference 2021
    Link :drive.google.c...

КОМЕНТАРІ • 3

  • @vineesh.geography
    @vineesh.geography 2 дні тому

    Please share the script for Landslide Susceptibility Mapping in Google Earth Engine.

    • @techhive.2023
      @techhive.2023  2 дні тому +1

      // Define a region of interest (ROI)
      var roi = ee.Geometry.Rectangle([84.5, 27.5, 85.5, 28.5]); // Change the coordinates to your area of interest
      // Load Sentinel-2 image collection
      var sentinel2 = ee.ImageCollection('COPERNICUS/S2')
      .filterBounds(roi)
      .filterDate('2023-01-01', '2023-12-31') // Set date range
      .sort('CLOUDY_PIXEL_PERCENTAGE') // Sort by cloud coverage
      .filter(ee.Filter.lt('CLOUDY_PIXEL_PERCENTAGE', 20)) // Less than 20% cloud cover
      .first();
      // Calculate NDVI
      var ndvi = sentinel2.normalizedDifference(['B8', 'B4']).rename('NDVI');
      // Threshold to detect areas of vegetation loss (indicative of landslide)
      var landslideRisk = ndvi.lt(0.3).selfMask(); // Threshold for NDVI
      // Add layers to the map
      Map.centerObject(roi, 10);
      Map.addLayer(sentinel2, {bands: ['B4', 'B3', 'B2'], max: 3000}, 'Sentinel-2 RGB');
      Map.addLayer(ndvi, {min: 0, max: 1, palette: ['white', 'green']}, 'NDVI');
      Map.addLayer(landslideRisk, {palette: 'red'}, 'Landslide Risk Areas');
      // Function to create a legend
      function addLegend() {
      var legend = ui.Panel({
      style: {
      position: 'bottom-left',
      padding: '8px 15px'
      }
      });
      var legendTitle = ui.Label({
      value: 'Landslide Risk Legend',
      style: {
      fontWeight: 'bold',
      fontSize: '18px',
      margin: '0 0 4px 0',
      padding: '0'
      }
      });
      legend.add(legendTitle);
      var makeRow = function(color, name) {
      var colorBox = ui.Label({
      style: {
      backgroundColor: color,
      padding: '8px',
      margin: '0 0 4px 0'
      }
      });
      var description = ui.Label({
      value: name,
      style: {margin: '0 0 4px 6px'}
      });
      return ui.Panel({
      widgets: [colorBox, description],
      layout: ui.Panel.Layout.Flow('horizontal')
      });
      };
      // Add legend elements
      legend.add(makeRow('red', 'Landslide Risk Area'));
      legend.add(makeRow('green', 'Vegetation (Healthy)'));
      legend.add(makeRow('white', 'No Vegetation'));
      // Add the legend to the map
      Map.add(legend);
      }
      // Call the function to add the legend
      addLegend();

    • @vineesh.geography
      @vineesh.geography 2 дні тому

      @@techhive.2023 thank you bro