Тёмный
Geoinformation production
Geoinformation production
Geoinformation production
Подписаться
Please subscribe to my RU-vid channel
forest loss in GEE
9:22
21 день назад
LAndsat image download
32:05
Год назад
Heatmap and time mapping
31:39
Год назад
3D flood mapping in Arcscene(ArcGis)
24:10
2 года назад
contour and 3d model in surfer
24:36
2 года назад
LST in ARCmap
58:41
2 года назад
Kriging in Arcmap
8:56
2 года назад
NDWI, image classification and NDVI
57:52
2 года назад
Hotspot analysis in Arcgis
15:10
2 года назад
Geocoding and Map publishing in QGIS
36:41
3 года назад
Landcover map in IDRISI TERRSET
33:26
3 года назад
Introduction to GIS and QGIS
23:34
3 года назад
NDVI and NDWI in QGIS
27:30
3 года назад
hotspot analysis in ArcGis
15:10
3 года назад
Accessing satellite imagery in QGIS
8:37
3 года назад
Комментарии
@omidbagheri2009
@omidbagheri2009 22 дня назад
hello Is it possible please share the code
@geoinformation1991
@geoinformation1991 22 дня назад
// Load the Hansen Global Forest Change dataset var gfc = ee.Image('UMD/hansen/global_forest_change_2023_v1_11'); // Select the layers for tree cover in 2000 and forest loss var treeCover2013 = gfc.select('treecover2000'); var forestLoss = gfc.select('loss'); // Clip the images to the AOI var treeCover2000_aoi = treeCover2013.clip(edo); var forestLoss_aoi = forestLoss.clip(edo); // Set visualization parameters var treeCoverVis = { min: 0, max: 100, palette: ['red', 'yellow', 'green'] }; var forestLossVis = { min: 0, max: 1, palette: ['red'] }; // Add the layers to the map Map.centerObject(edo, 6); Map.addLayer(treeCover2000_aoi, treeCoverVis, 'Tree Cover 2000'); Map.addLayer(forestLoss_aoi, forestLossVis, 'Forest Loss'); // Calculate the total area of forest loss var lossPixels = forestLoss_aoi.reduceRegion({ reducer: ee.Reducer.sum(), geometry: edo, scale: 30, maxPixels: 1e9 }); // Convert the result to hectares (1 pixel = 30m x 30m = 900 m² = 0.09 hectares) var lossHectares = ee.Number(lossPixels.get('loss')).multiply(0.09); print('Total forest loss in hectares:', lossHectares); // Optional: Export the forest loss layer to Google Drive Export.image.toDrive({ image: forestLoss_aoi, description: 'Forest_Loss', scale: 30, region: edo, fileFormat: 'GeoTIFF' });
@julianakakembo55
@julianakakembo55 Месяц назад
Thank you so much for this helpful tutorial!
@geoinformation1991
@geoinformation1991 Месяц назад
@@julianakakembo55 you're welcome
@humbledt
@humbledt 7 месяцев назад
thank you so much for this tutorial!
@geoinformation1991
@geoinformation1991 Месяц назад
@@humbledt You're welcome
@neerajsuthar2187
@neerajsuthar2187 Год назад
What will be the unit of K factor if done by this method ?? 2. I am getting error in last step, I am not able to convert polygon into raster , can you tell me what should i do , i am getting an error like soil_clip.K_factor doesnt exist in table but i have exact same in table. Error 000622 and Error 000728. If you can tell then it willl be of great help
@geoinformation1991
@geoinformation1991 Год назад
The unit will be in mm
@geoinformation1991
@geoinformation1991 Год назад
Try following the formula step by step. U should know where u got it wrong
@neerajsuthar2187
@neerajsuthar2187 Год назад
I did this for 2 locations but i got f_silt as 0.3, I am guessing its some problem and in one location i got f_oc as 1 for 4 type of soil in that location which again sounds like an error. because of this i am getting K factor value as in range of 0.005 which is very low wrt given values by other authors. Can you tell me where I am going wrong with this??
@geoinformation1991
@geoinformation1991 Год назад
Try following d video step by step. U should know where u got it wrong
@neerajsuthar2187
@neerajsuthar2187 Год назад
Can you drop link for downloading soil map
@geoinformation1991
@geoinformation1991 Год назад
www.fao.org
@alamuyusuf5104
@alamuyusuf5104 Год назад
Abuja, Nigeria
@geoinformation1991
@geoinformation1991 Год назад
Yeah
@Iki1987ful
@Iki1987ful Год назад
Can you export the 3D Model to print?
@mxzoefelix
@mxzoefelix Год назад
This was really helpful. It would be nice if you could let me know the source material for your formula. Thanks:)
@mxzoefelix
@mxzoefelix Год назад
Ps: For some reasons, the formula ain't working in ArcGIS pro. I however, found a way to get by...Thanks again!
@geoinformation1991
@geoinformation1991 Год назад
Yes. I have it. U can drop ur email. I will forward it to u
@BeverleyRamabu
@BeverleyRamabu 2 года назад
This was so helpful. I'm currently investigating land use and land cover changes in a catchment and I had to use IDRISI TERRSET. I know understand the subset method,,training stage and classification stage a lot better.
@geo15304
@geo15304 2 года назад
Thanks. I have added an ascii land cover map from arcgis to terrset. But terrset opens/displays the ascii file using a color ramp not as per original land classes in arcgis. Kindly could you know how treat the ascii file?
@geoinformation1991
@geoinformation1991 2 года назад
it is always preferable for you to do all on idrisi so as to make ur work easier
@chaladaba3710
@chaladaba3710 2 года назад
What is different between terrset and plugin in QGIS for LuLC prediction and which one is best for prediction
@geoinformation1991
@geoinformation1991 2 года назад
Qgis has different plugins for different analysis but idrisi terrset is the best for prediction. you can either use land change modeller or cellula automata.