Didn't clear.. how much we have to zoom in? And what if we increase the Karnel Size, from 1 to let's suppose 5?
@artspcx4 жыл бұрын
permisi bang mau nanya, saya udah coba script yang tertera di video tersebut. terus saya praktekkan ke script landsat 7 SR dengan script supervised classidication (svm) itu kok gak bekerja ya untuk mengisi gapfillnya?
@stephensodoke8980 Жыл бұрын
the line strip of lines are still on the image, any advise on what to do
@kholismunawar29182 жыл бұрын
Thanks, its useful. but how to do the cloud masking function and followed up by this filling gap? I did try but the cloud still exist
@nilamila14 жыл бұрын
The gap filling is not working in my case! What could be the problem? it's saying "L7coll.focal_mean is not a function"
@INSGIS4 жыл бұрын
hmmm you should share your script, so i could look further
@nilamila14 жыл бұрын
@@INSGIS var L7coll = ee.ImageCollection('LANDSAT/LE07/C01/T1_SR') .filter(ee.Filter.lt('CLOUD_COVER',10)) .filterBounds(chalanbeel) var img_fill = L7coll.focal_mean(1, 'square', 'pixels', 8) var final_image = img_fill.blend(L7coll) Map.addLayer(img_fill.clip(chalanbeel), {bands: ['B5', 'B4', 'B3'], min: 0, max: 3000}, 'Image Fill') Map.addLayer(l7.clip(chalanbeel), {bands: ['B5', 'B4', 'B3'], min: 0, max: 3000}, 'L7 Original') Map.addLayer(final_image.clip(chalanbeel), {bands: ['B5', 'B4', 'B3'], min: 0, max: 3000} 'Final Image') **chalanbeel is my study area**
@INSGIS4 жыл бұрын
@@nilamila1 focal_mean need an image as a input, not image collection. So, you have to convert it before. If you see in my vid, I used first() function as a last filter to pick first image in collection and convert it to image type.
@joaquinurruti26282 жыл бұрын
@@INSGIS @Md Tawhid Hossain You can apply a function like this: function corrScan (img){ var img_fill = img.focal_mean(1, 'square', 'pixels', 8); var img_corr = img_fill.blend(img); return img_corr; } and then apply the function like this: imgCol.map(corrScan ); Hope this is usefull for you!
@joaquinurruti26282 жыл бұрын
@@nilamila1 You can apply a function like this: function corrScan (img){ var img_fill = img.focal_mean(1, 'square', 'pixels', 8); var img_corr = img_fill.blend(img); return img_corr; } and then apply the function like this: imgCol.map(corrScan ); Hope this is usefull for you!
@poulaminath65232 жыл бұрын
how to add "L7_style" please give the steps its very vital for me
@raniaamandafauzi79999 ай бұрын
Cara memunculkan l7?
@tatianetavares23183 жыл бұрын
Thanks a lot! It was really useful!
@abilitymatutu88311 ай бұрын
How to add l7 style
@TanasakPhosrikun-m9n Жыл бұрын
Thank you
@RaghebKamalMohammad3 ай бұрын
perfect 👍
@tilayeworku56083 жыл бұрын
Thank you so much
@arthurleao75423 жыл бұрын
how did you add "l7_style"?
@ernestg74662 жыл бұрын
Very useful
@abilitymatutu88311 ай бұрын
How to add l7 style
@ernestg746611 ай бұрын
@@abilitymatutu883 The style is defined beforehand in order to display the images and you can customize it according to your needs. If you notice it appears in the import bar and is added to that section automatically. Here you have an example, you declare it as a variable. var Visual_Landsat2009 = {"opacity":1,"bands":["B4","B5","B3"],"min":0.021442476933903,"max":0.27750826620608177,"gamma":0.853};
@ernestg746611 ай бұрын
but you can call it L7_style if you wish.
@abilitymatutu88311 ай бұрын
I am trying to say how to add bands min and max value
@ernestg746611 ай бұрын
@@abilitymatutu883 Precisely, look at the example of the Visual_Landsat2009 variable in "min" and "max" values allow you to add those desired values. If you notice the variable has several parameters that allow you to manipulate its characteristics, opacity, bands and their values and gamma.