Javed Ali
Javed Ali
  • 9
  • 28 237
AGU2021 - Estimating Impact Relevant Thresholds of Multi-hazards in the U.S. Southeast Coast
This is the full presentation talk I gave at American Geophysical Union Fall Meeting 2021 in New Orleans, LA.
In this video, I talk about compound multi-hazards and the methodology we developed for assessing compound weather/climate extreme events using socio-economic impacts.
If you have any questions or comments feel free to contact me through email or DM on Twitter/LinkedIn.
Twitter: javedali99
LinkedIn: www.linkedin.com/in/javedali18/
Website: www.javedali.net/
#AGU21 #MultiHazards #CompoundExtremes #ClimateChangeAdaptation
มุมมอง: 97

วีดีโอ

How to easily download multiple years of climate data from the Copernicus data store using python?
มุมมอง 11K3 ปีที่แล้ว
Downloading climatic data in bulk from the EU Copernicus data store can be a bit challenging. In this tutorial, I will guide you through the process of easily downloading multiple years of climatic data from CDS Copernicus using Python and CDS API. If you find this tutorial helpful, please like, share, and leave a comment. And if you're new to this channel, don't forget to subscribe! Connect wi...
Cycling 🚵🏻‍♂️ TimeWarp | GoPro Hero 8 Black
มุมมอง 844 ปีที่แล้ว
Cycling 🚵🏻‍♂️ TimeWarp | GoPro Hero 8 Black
Nikhil D'Souza Performing "Main Aur Tu" at GBPUAT, Pantnagar
มุมมอง 4228 ปีที่แล้ว
Nikhil D'Souza Performing "Main Aur Tu" at GBPUAT, Pantnagar
AgTech Farewell Party GBPUA&T Pantnagar
มุมมอง 13K10 ปีที่แล้ว
AgTech Farewell Party GBPUA&T Pantnagar
Choo Lo Jo Mujhe (The Local Train) acoustic cover by Vaibhav Garg
มุมมอง 1.4K11 ปีที่แล้ว
An attempt to record the most beautiful song ever composed n written, n that just blew me off!!! Awsm composition by the band "THE LOCAL TRAIN" You rock guys!!! cheers!!!

ความคิดเห็น

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

    Thanks a lot..It was so helpful.

  • @Phoenix_Tech-Lifestyle_Corner
    @Phoenix_Tech-Lifestyle_Corner 4 หลายเดือนก่อน

    I m not able to select more than one year, what could be the reason?

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

    can't select all from year.

  • @howto-c8i
    @howto-c8i 7 หลายเดือนก่อน

    hello sir can you please tell me how to donwload that fronn python i am not able to download latent heat flux over indian ocean data

    • @javed-ali
      @javed-ali 7 หลายเดือนก่อน

      You can modify the variable as follows: "'variable': 'surface_latent_heat_flux'," and adjust your study area in this part of the code: 'area': [ 90, -180, -90, 180, ]

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

    After going through couple of videos and bullshit crap, I came across this video and found it easy and helpful. Great job!!!

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

    useful

  • @oyatolaopeyemi976
    @oyatolaopeyemi976 ปีที่แล้ว

    Thank you for this video. I am student and i would like you to do a video on how and where to download significant wave height, windspeed, mean wave period, and wave directions. I need them for my thesis. Thank you

  • @ThePapin24
    @ThePapin24 ปีที่แล้ว

    Thanks for this video. I have the similar script with the same time range, but with more variables and pressure levels. When I ran it, it is showing me the following error message: Exception: the request you have submitted is not valid. Request too large. Requesting 5185920 items, limit is 120000. I don't know what is wrong with my script?

    • @javed-ali
      @javed-ali ปีที่แล้ว

      Please note that there is a limit to the amount of data you can download from the Copernicus data store at one time. It is important to keep in mind that you cannot exceed this limit and will need to download one variable at a time. To ensure that I do not exceed the limit, I am using a for-loop to download one year of data at a time. If you want, you can create another loop to provide a list of variables.

  • @ThePapin24
    @ThePapin24 ปีที่แล้ว

    Hi! Thanks for sharing this video. But I would like to know how to submit this script to a HPC remote server as job to run?

  • @cristianjohandiazmoscote3715
    @cristianjohandiazmoscote3715 ปีที่แล้ว

    I have error Exception: Missing/incomplete configuration file: C:\Users\Windows/.cdsapirc

    • @javed-ali
      @javed-ali ปีที่แล้ว

      I think you did not configure the CDS API correctly. Check this page for installing the CDS API properly: cds.climate.copernicus.eu/api-how-to

  • @jesusantoniocorreahelbrum1259
    @jesusantoniocorreahelbrum1259 ปีที่แล้ว

    Hello, I have a problem when executing the command c = cdsapi.client() in spyder. this command is not executed c = cdsapi.Client. Might you help me

    • @javed-ali
      @javed-ali ปีที่แล้ว

      What is the error you are getting?

    • @backbenchersWorld24
      @backbenchersWorld24 ปีที่แล้ว

      @@javed-ali Exception has occurred: NameError name 'cdsapi' is not defined File "C:\Users\sabbi\OneDrive\Desktop ew.py", line 1, in <module> c = cdsapi.Client() ^^^^^^ NameError: name 'cdsapi' is not defined

  • @flwr_ltd
    @flwr_ltd ปีที่แล้ว

    Hi! thanks for the video! I ran the same code, for the temperature variable (1997-2019) and apparently the request is too big. Is there a way to fix this?

    • @javed-ali
      @javed-ali ปีที่แล้ว

      This issue should be fixed with the for-loop that was used in this video. Are you using the same code as mentioned in the video?

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

      @@javed-ali does it work on Linux system only?

    • @javed-ali
      @javed-ali 3 หลายเดือนก่อน

      @@edgarrodriguezarellano7724 It works on Windows, macOS, and Linux. I tested it on Windows and macOS, but not on Linux. However, it should run without any issues.

  • @Priscilafabri
    @Priscilafabri ปีที่แล้ว

    Parabéns mais um escrito

  • @muhammadfawad3896
    @muhammadfawad3896 ปีที่แล้ว

    Appreciated Sir 🤍

  • @amanisaleh8839
    @amanisaleh8839 2 ปีที่แล้ว

    Hello I need your help

    • @amanisaleh8839
      @amanisaleh8839 2 ปีที่แล้ว

      could you give me your contact

  • @marcoviniciomonterocabezas1925
    @marcoviniciomonterocabezas1925 2 ปีที่แล้ว

    This video is very useful, but how do I download the data of GLORYS12V1 from multiple years? Greetings

    • @javed-ali
      @javed-ali 2 ปีที่แล้ว

      Glad to know that you found the video helpful. Could you please share the link to the GLORYS12V1 data you want to download?

  • @CoDHuskygaming
    @CoDHuskygaming 3 ปีที่แล้ว

    1824 rank

  • @rogersavage3816
    @rogersavage3816 3 ปีที่แล้ว

    2021😅😂

  • @scdimashodha4989
    @scdimashodha4989 7 ปีที่แล้ว

    kafi badlav aagaya hai by an alumni tok

  • @chandrabanerjee9353
    @chandrabanerjee9353 8 ปีที่แล้ว

    Seriously, can you call this a dance?

  • @Neerajvet1
    @Neerajvet1 8 ปีที่แล้ว

    bakwas..boring performance..

  • @charutripathi4079
    @charutripathi4079 9 ปีที่แล้ว

    faadu seniors !!!! (y) (y)

  • @jeetwithjeet
    @jeetwithjeet 11 ปีที่แล้ว

    waaooww great.. keep it up :)

  • @yashasvisharma6590
    @yashasvisharma6590 11 ปีที่แล้ว

    Brilliant guys..Simply brilliant..I would be so grateful if you could provide me the intro tabs from :30 to :40..Thanks..Cheers :)