آتش فشان کوه فوجی // Load the MODIS Land Surface Temperature (LST) dataset. var dataset = ee.ImageCollection('MODIS/006/MOD11A2') .filter(ee.Filter.date('2020-01-01', '2020-12-31')) .filterBounds(geometry); // Select the LST Daytime band. var lstDay = dataset.select('LST_Day_1km'); // Scale the LST data to Celsius. var scaleLST = function(image) { return image.multiply(0.02).subtract(273.15) .copyProperties(image, ['system:time_start']); }; // Map the scaling function over the collection. var lstDayCelsius = lstDay.map(scaleLST); // Create a mean LST image. var meanLST = lstDayCelsius.mean(); // Define visualization parameters. var visParams = { min: 20, max: 40, palette: ['blue', 'green', 'red'] }; // Center the map and display the result. Map.centerObject(geometry, 6); Map.addLayer(meanLST, visParams, 'Mean LST 2020'); // Display the area of interest (e.g., a volcano). var geometry = ee.Geometry.Point([139.692, 35.3606]); // Coordinates of Mount Fuji, Japan Map.addLayer(geometry, {color: 'FF0000'}, 'Mount Fuji');
Great video
Thanks for the feedback. please share the videos and channel with your community.
Thank you!
welcome. please share with your community.
thankyuu sir, love it
welcome. please share the videos with your community.
Good work, make a playlist, it is easy to find than individual video
Thanks for suggestion. will make it.
Great work... request more tutorial on SAR w.r.t deforestation. Regards
thanks for the feedback. sure will share more in near future.
@@amirhosseinahrarigee So nice of you. Great to have You
سلام ، احراری عزیز
تا رفتیم داخل سنتینل ۱ فرونشست هم ی ویدیو درست کن.. با تشکر
با سلام
داده های مخصوص فرونشست در ارث انجین موجود نیست. اما اگر رفرنس مناسبی دیدم حتما.
موفق باشید
Hi, why do you use ''VV" polarisation for this case? Why do you not use VH Polarisazion?
Good question, because provides more energy and higher quality image rather than VH.
Good video... Can you show how to do pixelwise trend analysis?
thanks for idea. There are some tutorials but I don't remember which one is now. will try to share another one in near future.
@@amirhosseinahrarigee try to make LST or NDVI trend analysis 🙂🙏🙏
سلام میتونیم اتش فشان ها رو هم ، مدل کنیم ؟
با سلام و احترام
بله برخص از فعالیت های آتش فشانی قابل مدل سازی هست.
موفق باشید
آتش فشان کوه فوجی
// Load the MODIS Land Surface Temperature (LST) dataset.
var dataset = ee.ImageCollection('MODIS/006/MOD11A2')
.filter(ee.Filter.date('2020-01-01', '2020-12-31'))
.filterBounds(geometry);
// Select the LST Daytime band.
var lstDay = dataset.select('LST_Day_1km');
// Scale the LST data to Celsius.
var scaleLST = function(image) {
return image.multiply(0.02).subtract(273.15)
.copyProperties(image, ['system:time_start']);
};
// Map the scaling function over the collection.
var lstDayCelsius = lstDay.map(scaleLST);
// Create a mean LST image.
var meanLST = lstDayCelsius.mean();
// Define visualization parameters.
var visParams = {
min: 20,
max: 40,
palette: ['blue', 'green', 'red']
};
// Center the map and display the result.
Map.centerObject(geometry, 6);
Map.addLayer(meanLST, visParams, 'Mean LST 2020');
// Display the area of interest (e.g., a volcano).
var geometry = ee.Geometry.Point([139.692, 35.3606]); // Coordinates of Mount Fuji, Japan
Map.addLayer(geometry, {color: 'FF0000'}, 'Mount Fuji');
Hi, please share the code link using get link button in code editor