Land Use Change Analysis Using Google Earth Engine || GIS Tutorial

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 2

  • @fakharulislam2519
    @fakharulislam2519 Месяц назад

    How to export it ?

    • @techhive.2023
      @techhive.2023  Месяц назад

      // Load a Landsat 8 image
      var image = ee.Image('LANDSAT/LC08/C01/T1_SR/LC08_044034_20140318');
      // Define a region of interest (ROI)
      var roi = ee.Geometry.Rectangle([-122.5, 37.0, -121.5, 38.0]);
      // Clip the image to the region of interest
      var clippedImage = image.clip(roi);
      // Export the image to Google Drive
      Export.image.toDrive({
      image: clippedImage,
      description: 'Landsat_Export',
      folder: 'EarthEngineExports', // Specify your Drive folder
      scale: 30, // Set the pixel resolution
      region: roi, // Set the export region
      maxPixels: 1e9 // Set the maximum allowed number of pixels
      });