Комментарии:
Thank you so much for the tutorial and script, just amazing. But i have one question, while downloading the data, i expected landcover to be 10m resolution but when i checked its around 8.9m. Any reasons for that?
Ответитьthank you for this material, how to convert to shapefile?
ОтветитьPlease help me i cant export th image
// Download ESA Land Cover
// 1. Import ESA Data
var esa = ee.ImageCollection("ESA/WorldCover/v100").first();
var visualization = {bands: ['Map']};
Map.addLayer(esa, visualization, 'ESA Land Cover');
Map.centerObject(esa);
// 2. Add country boundary layer
var countries = ee.FeatureCollection('USDOS/LSIB_SIMPLE/2017');
var roi = countries.filter(ee.Filter.eq('country_na', 'somalia'));
Map.addLayer(roi, {}, 'somalia', false);
// 3. Clip with roi(Region of Interest)
var esa_clip = esa.clip(roi);
Map.addLayer(esa_clip, visualization, 'somalia ESA Land Cover');
Map.centerObject(esa_clip);
// 4. Export to Drive
Export.image.toDrive({
image: esa_clip,
description: "ESA_LULC_ROI",
scale: 10,
region: roi,
maxPixels: 1e13
});
thanks
Ответитьi get this error
Line 7: Geometry.bounds, argument 'maxError': Invalid type.
Expected type: ErrorMargin.
Actual type: Integer.
Actual value: 10
When exporting image file is always pop up 'Request payload size exceeds the limit earth engine' how to solve this? i try to decreasing scale but always failed
ОтветитьHow can one know the specific date frame of the landcover image exported from this process? And how accurate is the classification of this landuse landcover?
ОтветитьVery informative. Many thanks for this wonderful episode
ОтветитьThanks for providing code in the description side and shareable link u provided is time saving
ОтветитьPlease can you send me the code
ОтветитьHi Sir... How to get village level precipitation data for different states of India?
ОтветитьInformative 👍
Ответить