Google Earth Engine Tutorial 1: Lake Area Estimation

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2024

ความคิดเห็น • 43

  • @gypsybells7019
    @gypsybells7019 2 หลายเดือนก่อน

    Wonderful tutorial. I am a novice to GEE and really had a fun time learning. Looking forward to completing rest of the tutorials

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  หลายเดือนก่อน

      Gald to hear. Keep following and share the tutorials with your community please.

  • @abdishakurdahirabdullahi594
    @abdishakurdahirabdullahi594 3 หลายเดือนก่อน

    Thanks for sharing with us this valuable information. I noticed your TH-cam channel today, and it is very beneficial. I will try to get more knowledge from it. Again and again, I can finish thanking you.

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  2 หลายเดือนก่อน

      thanks for nice comment and happy to find it useful. please share the videos with your community.

  • @ladiran
    @ladiran 4 หลายเดือนก่อน

    Quite appreciative of this tutorial.
    I am sorry I came late to the party😊

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  4 หลายเดือนก่อน

      keep following the channel. will try to share new tutorials weekly.

  • @googl824
    @googl824 6 หลายเดือนก่อน

    Thank you very much sir, may Allah increase your knowledge

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  6 หลายเดือนก่อน

      Thanks, please share the channel with your community.

  • @naghmehheidari5976
    @naghmehheidari5976 8 หลายเดือนก่อน

    It was very helpful. Thank you.

  • @spartakos536
    @spartakos536 8 หลายเดือนก่อน

    Thank you very much my friend. Greets from Turkey.

  • @ChinaReels
    @ChinaReels 4 หลายเดือนก่อน +2

    It's suggested to make a series of videos GEE from zero to hero. for the very beginners

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  4 หลายเดือนก่อน +1

      Thanks for the comment. will try to make it in future.

  • @anantharamaniyer9135
    @anantharamaniyer9135 3 หลายเดือนก่อน

    Thanks for these set of videos - do you also have any plans for showing the same analysis using GEE (if available)?

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  2 หลายเดือนก่อน

      Yes, I am sharing all technique I know with remote sensing community through this channel please keep following.

  • @fatemehshabanpour3661
    @fatemehshabanpour3661 3 หลายเดือนก่อน

    Thank you so much

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  2 หลายเดือนก่อน

      welcome. please share them with your community.

  • @ramshaharis2020
    @ramshaharis2020 12 วันที่ผ่านมา

    This is a great tutorial! I’d like to create a time series for the lake data and display it in a chart. What steps should I take next?

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  10 วันที่ผ่านมา

      Thanks for the comment. You can download chart values or plot for time series analysis in python.

  • @niltonperez883
    @niltonperez883 5 หลายเดือนก่อน

    Excelent video, thank you very much for share your knowledge. I have a question, why didn´t use the TOA collection?. Is this way more efective?

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  5 หลายเดือนก่อน

      welcome. TOA is not atmospherically corrected.

  • @iqbalhabibiehabibie5689
    @iqbalhabibiehabibie5689 6 หลายเดือนก่อน

    Thank you for your great tutorial. But it seems I have some error when running your script. Like there is a var coordinates and the other is geometry. The script uses geometry but the coordinates seem not used to clip. There is some error like this:
    Number (Error)
    Image.gt: If one image has no bands, the other must also have no bands. Got 0 and 1.
    ndwi_thr: Layer error: Image.gt: If one image has no bands, the other must also have no bands. Got 0 and 1.
    ndwi_masked: Layer error: Image.gt: If one image has no bands, the other must also have no bands. Got 0 and 1.
    ndwi_pixel_area: Layer error: Image.gt: If one image has no bands, the other must also have no bands. Got 0 and 1.
    I use the script:
    var imageCollection = ee.ImageCollection("LANDSAT/LC08/C02/T2_L2"),
    geometry =
    /* color: #0b4a8b */
    /* displayProperties: [
    {
    "type": "rectangle"
    }
    ] */
    ee.Geometry.Polygon(
    [[[44.5346944926502, 38.37189110732085],
    [44.5346944926502, 36.97192200651999],
    [46.2925069926502, 36.97192200651999],
    [46.2925069926502, 38.37189110732085]]], null, false);
    var coordinates = [
    [42.000552219688586, 38.18969302118053],
    [43.868228000938586, 38.18969302118053],
    [43.868228000938586, 39.209978258633186],
    [42.000552219688586, 39.209978258633186],
    [42.000552219688586, 38.18969302118053]
    ];
    var roi = ee.Geometry.Polygon(coordinates);
    Map.addLayer(roi)
    var time_start = '2013', time_end = '2021'
    var landsat = imageCollection
    .filterDate(time_start, time_end)
    .filter(ee.Filter.lt('CLOUD_COVER', 10))
    .filter(ee.Filter.calendarRange(6,9,'month'))
    .filterBounds(geometry).map(function(img){
    var bands = img.select('SR_.*').multiply(2.75e-05).add(-0.2);
    var ndwi = bands.normalizedDifference(['SR_B3','SR_B5']).rename('ndwi');
    return ndwi
    .copyProperties(img, img.propertyNames())
    }).median();
    Map.addLayer(landsat.clip(geometry), [], 'ndwi_summer', false);
    Map.addLayer(landsat.clip(geometry).gt(0), [], 'ndwi_thr', false);
    var thr = landsat.gt(0.1);
    var mask = thr.updateMask(thr);
    Map.addLayer(mask, [], 'ndwi_masked', false);
    var pixel_area = mask.multiply(ee.Image.pixelArea().divide(1e6));
    Map.addLayer(pixel_area.clip(geometry), [], 'ndwi_pixel_area', false);
    var lake_area = pixel_area.reduceRegion({
    reducer: ee.Reducer.sum(), geometry: geometry, scale: 100
    }).values().get(0);


    print(ee.Number(lake_area))
    Hopefully you could brief me on some of the mistakes. Thanks.

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  6 หลายเดือนก่อน

      Please share your code using getlink button in code editor.

    • @iqbalhabibiehabibie5689
      @iqbalhabibiehabibie5689 6 หลายเดือนก่อน

      Thanks. Hopefully I could paste the getlink to the reply: code.earthengine.google.com/2f8ca393ba376dd24bbf0f83860e9326

    • @iqbalhabibiehabibie5689
      @iqbalhabibiehabibie5689 6 หลายเดือนก่อน

      ​@@amirhosseinahrarigee I have solved the problem. Thanks.

  • @princeespoirewameneokoumel6694
    @princeespoirewameneokoumel6694 8 หลายเดือนก่อน

    Thank you very much

  • @juve5001
    @juve5001 9 หลายเดือนก่อน

    Thank you very much for the detailed video. However, I failed to understand the Area obtained will be for which Year.

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  8 หลายเดือนก่อน

      Hello, thanks for your comment. The final area is the average area of lake for 2020. By changing time_start and time_end you will be able to change the results for different years.

    • @juve5001
      @juve5001 8 หลายเดือนก่อน +1

      Thank you. Waiting for another tutorial on how to create Chart of Lake Area Estimation@@amirhosseinahrarigee

  • @anwarmaqsood9764
    @anwarmaqsood9764 หลายเดือนก่อน

    Is there a way to estimate monthly dams, lakes and other water bodies areas over an area which excludes or masks the flooded areas during rainy seasons?

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  28 วันที่ผ่านมา

      Please find the recent tutorial: th-cam.com/video/bkOFldAzdVs/w-d-xo.html

  • @kavyajeetbora2585
    @kavyajeetbora2585 6 หลายเดือนก่อน

    Thanks for this tutorial series. Just wondering if there is any way to map the ground water for any area of interest?

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  6 หลายเดือนก่อน +1

      Thanks for the feedback. Please share the channel with your community. Will try to share the requested tutorial soon.

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  6 หลายเดือนก่อน +1

      Sorry, I have no idea for now.

  • @t-mainekay7820
    @t-mainekay7820 7 หลายเดือนก่อน

    Hi, in my band description ,I cannot find 'Scale'. How do I fixed this

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  6 หลายเดือนก่อน

      Please open the data description page, then you will see.

  • @uma9183
    @uma9183 7 หลายเดือนก่อน

    Sir, Oil spill mapping in ocean ??

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  6 หลายเดือนก่อน

      Thanks for the suggestion. Will try in future.

  • @zailkirillrus
    @zailkirillrus 7 หลายเดือนก่อน

    thx for video!
    pleaze, can u help: I really miss the auto part and I thought GEE didn't have it, but at 12:34 you used the auto parting. How?
    in same situation i haven't this options

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  7 หลายเดือนก่อน

      Thanks for the comments. sorry I don't know what you mean by auto part? could you explain the question clearer?

    • @zailkirillrus
      @zailkirillrus 7 หลายเดือนก่อน

      @@amirhosseinahrarigee greetings, I mean, when you automatically insert the functions or variables suggested by the browser, it simplifies the work. how to do it?

  • @eddisonjose
    @eddisonjose 9 หลายเดือนก่อน

    Hola muchas gracias!! puedes compartir el código aquí? Saludos!!

    • @amirhosseinahrarigee
      @amirhosseinahrarigee  9 หลายเดือนก่อน

      Hello, thanks for your feedback. Yes, here you go: code.earthengine.google.com/fdd672d2919dace8d6636748bae4a9ff

    • @eddisonjose
      @eddisonjose 8 หลายเดือนก่อน

      @@amirhosseinahrarigee Muchas gracias!!