#ForestLoop
February 2, 2025 at 12:06 AM
Rain in the woods
Gonna smile
Rain in the woods
I'm good for a while

Filmed in the actual rain. No metaphor required.
Sometimes you get damp and chant in the trees.

#SkyWizard #RainInTheWoods #ForestLoop #AltPop
July 23, 2025 at 3:01 AM
Stacking two images from different satellite providers
I am trying to stack two images from different satellite providers in one GeoTIFF file. Basically, what I have is a shapefile of South East Asia which I use to clip the two images. I have tried to download them separately and combine them in one single raster file using R but with no success since the files are too big. Now I am trying to do the whole process on GEE but I am getting the an error related with incompatibility between the bands var MyFolder='forestLoop' /// The folder is created automatically var desc1 = 'forestStack'; /// what I am downloading= name of the file var globcover = ee.Image("COPERNICUS/Landcover/100m/Proba-V-C3/Global/2019") .select('tree-coverfraction'); // Extract the landcover band var landcover = globcover.select('tree-coverfraction'); // Clip the image to the polygon geometry var landcover_roi = landcover.clip(table.geometry()); // Add a map layer of the landcover clipped to the polygon. Map.addLayer(landcover_roi); var elevation = ee.Image('CGIAR/SRTM90_V4'). select('elevation'); // Clip the image to the polygon geometry var elevation_roi = elevation.clip(table.geometry()); // Add a map layer of the landcover clipped to the polygon. Map.addLayer(elevation_roi); var combinedImg= ee.ImageCollection([elevation_roi,landcover_roi]).mosaic() Export.image.toDrive({ image: combinedImg, description: desc1, folder:MyFolder, scale: 100, region: table, fileFormat: 'GeoTIFF', maxPixels: 2467695321, formatOptions: { cloudOptimized: true } }); And the error is as follow: Error: Expected a homogeneous image collection, but an image with incompatible bands was encountered: First image type: 1 bands ([elevation]). Current image type: 1 bands ([tree-coverfraction]). Image ID: 1 Some bands might require explicit casts. (Error code: 3) Here is the link for the code and assets I am using. https://code.earthengine.google.com/d92b4cbf2a360bc79e531623985370e8
gis.stackexchange.com
June 16, 2026 at 5:08 AM
Stacking two images from different satellite providers
I am trying to stack two images from different satellite providers in one GeoTIFF file. Basically, what I have is a shapefile of South East Asia which I use to clip the two images. I have tried to download them separately and combine them in one single raster file using R but with no success since the files are too big. Now I am trying to do the whole process on GEE but I am getting the an error related with incompatibility between the bands var MyFolder='forestLoop' /// The folder is created automatically var desc1 = 'forestStack'; /// what I am downloading= name of the file var globcover = ee.Image("COPERNICUS/Landcover/100m/Proba-V-C3/Global/2019") .select('tree-coverfraction'); // Extract the landcover band var landcover = globcover.select('tree-coverfraction'); // Clip the image to the polygon geometry var landcover_roi = landcover.clip(table.geometry()); // Add a map layer of the landcover clipped to the polygon. Map.addLayer(landcover_roi); var elevation = ee.Image('CGIAR/SRTM90_V4'). select('elevation'); // Clip the image to the polygon geometry var elevation_roi = elevation.clip(table.geometry()); // Add a map layer of the landcover clipped to the polygon. Map.addLayer(elevation_roi); var combinedImg= ee.ImageCollection([elevation_roi,landcover_roi]).mosaic() Export.image.toDrive({ image: combinedImg, description: desc1, folder:MyFolder, scale: 100, region: table, fileFormat: 'GeoTIFF', maxPixels: 2467695321, formatOptions: { cloudOptimized: true } }); And the error is as follow: Error: Expected a homogeneous image collection, but an image with incompatible bands was encountered: First image type: 1 bands ([elevation]). Current image type: 1 bands ([tree-coverfraction]). Image ID: 1 Some bands might require explicit casts. (Error code: 3) Here is the link for the code and assets I am using. https://code.earthengine.google.com/d92b4cbf2a360bc79e531623985370e8
gis.stackexchange.com
February 13, 2026 at 10:06 PM
Stacking two images from different satellite providers
I am trying to stack two images from different satellite providers in one GeoTIFF file. Basically, what I have is a shapefile of South East Asia which I use to clip the two images. I have tried to download them separately and combine them in one single raster file using R but with no success since the files are too big. Now I am trying to do the whole process on GEE but I am getting the an error related with incompatibility between the bands var MyFolder='forestLoop' /// The folder is created automatically var desc1 = 'forestStack'; /// what I am downloading= name of the file var globcover = ee.Image("COPERNICUS/Landcover/100m/Proba-V-C3/Global/2019") .select('tree-coverfraction'); // Extract the landcover band var landcover = globcover.select('tree-coverfraction'); // Clip the image to the polygon geometry var landcover_roi = landcover.clip(table.geometry()); // Add a map layer of the landcover clipped to the polygon. Map.addLayer(landcover_roi); var elevation = ee.Image('CGIAR/SRTM90_V4'). select('elevation'); // Clip the image to the polygon geometry var elevation_roi = elevation.clip(table.geometry()); // Add a map layer of the landcover clipped to the polygon. Map.addLayer(elevation_roi); var combinedImg= ee.ImageCollection([elevation_roi,landcover_roi]).mosaic() Export.image.toDrive({ image: combinedImg, description: desc1, folder:MyFolder, scale: 100, region: table, fileFormat: 'GeoTIFF', maxPixels: 2467695321, formatOptions: { cloudOptimized: true } }); And the error is as follow: Error: Expected a homogeneous image collection, but an image with incompatible bands was encountered: First image type: 1 bands ([elevation]). Current image type: 1 bands ([tree-coverfraction]). Image ID: 1 Some bands might require explicit casts. (Error code: 3) Here is the link for the code and assets I am using. https://code.earthengine.google.com/d92b4cbf2a360bc79e531623985370e8
gis.stackexchange.com
October 16, 2025 at 8:05 PM
Stacking two images from different satellite providers
I am trying to stack two images from different satellite providers in one GeoTIFF file. Basically, what I have is a shapefile of South East Asia which I use to clip the two images. I have tried to download them separately and combine them in one single raster file using R but with no success since the files are too big. Now I am trying to do the whole process on GEE but I am getting the an error related with incompatibility between the bands var MyFolder='forestLoop' /// The folder is created automatically var desc1 = 'forestStack'; /// what I am downloading= name of the file var globcover = ee.Image("COPERNICUS/Landcover/100m/Proba-V-C3/Global/2019") .select('tree-coverfraction'); // Extract the landcover band var landcover = globcover.select('tree-coverfraction'); // Clip the image to the polygon geometry var landcover_roi = landcover.clip(table.geometry()); // Add a map layer of the landcover clipped to the polygon. Map.addLayer(landcover_roi); var elevation = ee.Image('CGIAR/SRTM90_V4'). select('elevation'); // Clip the image to the polygon geometry var elevation_roi = elevation.clip(table.geometry()); // Add a map layer of the landcover clipped to the polygon. Map.addLayer(elevation_roi); var combinedImg= ee.ImageCollection([elevation_roi,landcover_roi]).mosaic() Export.image.toDrive({ image: combinedImg, description: desc1, folder:MyFolder, scale: 100, region: table, fileFormat: 'GeoTIFF', maxPixels: 2467695321, formatOptions: { cloudOptimized: true } }); And the error is as follow: Error: Expected a homogeneous image collection, but an image with incompatible bands was encountered: First image type: 1 bands ([elevation]). Current image type: 1 bands ([tree-coverfraction]). Image ID: 1 Some bands might require explicit casts. (Error code: 3) Here is the link for the code and assets I am using. https://code.earthengine.google.com/d92b4cbf2a360bc79e531623985370e8
gis.stackexchange.com
June 10, 2025 at 8:15 AM