Earth Sciences
Earth Sciences
  • 72
  • 19 117

Відео

ESM01.2 A case study of sea surface height Loop Current and red tide in Florida
Переглядів 2454 роки тому
ESM01.2 A case study of sea surface height Loop Current and red tide in Florida
Sea surface height above geoid: AVISO altimetry data versus ESM simulations of Loop Current
Переглядів 2384 роки тому
Sea surface height above geoid: AVISO altimetry data versus ESM simulations of Loop Current
AVISO satellite data of sea surface height at the Gulf of Mexico from 1993 to 2015
Переглядів 2214 роки тому
AVISO satellite data of sea surface height at the Gulf of Mexico from 1993 to 2015
ESM02.5 CMIP6 data download using python for a multi-model ensemble
Переглядів 2 тис.4 роки тому
ESM02.5 CMIP6 data download using python for a multi-model ensemble
ESM.2.6 Panoply for qucik netCDF data access and visualization
Переглядів 4,6 тис.4 роки тому
ESM.2.6 Panoply for qucik netCDF data access and visualization
ESM02.4 CMIP6 data download using python for a single-model ensemble
Переглядів 1,6 тис.4 роки тому
ESM02.4 CMIP6 data download using python for a single-model ensemble
ESM2.3 CMIP6 data download using python for a single model
Переглядів 4,4 тис.4 роки тому
ESM2.3 CMIP6 data download using python for a single model
ESM2.1 CMIP6 data search on ESGF, CEDA, and PRIMAVERA
Переглядів 8514 роки тому
ESM2.1 CMIP6 data search on ESGF, CEDA, and PRIMAVERA
ESM2.2 Installing Anaconda, Python, Jupyter Notebook, Jupyter Lab and Spyder on Windows 10
Переглядів 3474 роки тому
ESM2.2 Installing Anaconda, Python, Jupyter Notebook, Jupyter Lab and Spyder on Windows 10
ESM1.1. Using an Earth system model (ESM): A Short Introduction
Переглядів 9844 роки тому
ESM1.1. Using an Earth system model (ESM): A Short Introduction

КОМЕНТАРІ

  • @polinashvets9742
    @polinashvets9742 2 місяці тому

    Hello! Sorry for a stupid question, but nowhere I can find an answer. How to open this “Array(s) tab” in panoply? I have opened nc file, but I have only different graphics, without low tabs. Hello me ahahah, thanks

  • @Mewcha-kt9wx
    @Mewcha-kt9wx 3 місяці тому

    This is a highly relevant and essential topic. The FAIR principles support data-driven research, promote collaboration, enhance research transparency and reusability, and align with the increasing demand for open, accessible, and sustainable science.

  • @mo_lan1323
    @mo_lan1323 3 місяці тому

    for a beginner it is quite useful, thanks man

  • @mariamidowu9708
    @mariamidowu9708 Рік тому

    Good day! Thank you very much for your video. It was very insightful and helpful. I would like to ask how you were able to process the datasets focusing on a particular area.

    • @Earth_Sciences
      @Earth_Sciences Рік тому

      To crop the data to a specific area I used nco software (nco.sourceforge.net/)

    • @mariamidowu9708
      @mariamidowu9708 Рік тому

      Thank you very much@@Earth_Sciences

    • @Earth_Sciences
      @Earth_Sciences 9 місяців тому

      You are welcome. You can also use Python Xarray something like `.sel`

  • @shahidulsalam702
    @shahidulsalam702 Рік тому

    how i open shape file i it

  • @christossylalika6032
    @christossylalika6032 Рік тому

    Awesome clarification, thanks for sharing.

  • @mesfinmelaku6883
    @mesfinmelaku6883 2 роки тому

    super

  • @saoussendhib3907
    @saoussendhib3907 2 роки тому

    Thanks for the tutorial very helpful. The problem when I try to convert json to csv I don't get a well organized table like yours. I can not use it. Which options in json2csv software should we select please ?

    • @praveenvk6923
      @praveenvk6923 Рік тому

      You should choose this option while converting to excel from json "Pivot data down instead of flattening " under output options.

    • @braedynmcbroom3845
      @braedynmcbroom3845 Рік тому

      It's not working again. Its giving me "responseHeader" as the first item in the columns instead of id and none of the actual stuff I need is coming out. Literally 98 rows of responseHeader with "QTime params/facet.field/0 params/df params/q.alt params/indent params/echoParams params/fl params/start params/fq/0 params/rows" as some of the first several column names@@praveenvk6923Any ideas?

    • @braedynmcbroom3845
      @braedynmcbroom3845 Рік тому

      esgf-node.llnl.gov/esg-search/search/?offset=0&limit=100&type=Dataset&replica=false&latest=true&nominal_resolution=10+km%2C25+km&experiment_id=hist-1950&variable_id=zos&project=CMIP6&facets=mip_era%2Cactivity_id%2Cproduct%2Csource_id%2Cinstitution_id%2Csource_type%2Cnominal_resolution%2Cexperiment_id%2Csub_experiment_id%2Cvariant_label%2Cgrid_label%2Ctable_id%2Cfrequency%2Crealm%2Cvariable_id%2Ccf_standard_name%2Cdata_node&format=application%2Fsolr%2Bjson here's my json link if it helps

  • @radhikabalachandran7525
    @radhikabalachandran7525 2 роки тому

    SIR PLS HELP ME TO SOLVE THIS PROBLEM

  • @radhikabalachandran7525
    @radhikabalachandran7525 2 роки тому

    # #Download from node='esgf-data1.llnl.gov/thredds/fileServer/css03_data/' mdir='CMIP6/HighResMIP/EC-Earth-Consortium/EC-Earth3P/hist-1950/r2i1p2f1/Omon/zos/gn/v20190812/' #Download to path=r'C:/Users/admin/Desktop/anaconda' Path(path).mkdir(parents=True, exist_ok=True) #Loop for all files for year in range(1990,1991): file='zos_Omon_EC-Earth3P_hist-1950_r2i1p2f1_gn_{}01-{}12.nc'.format(str(year),str(year)) #path to download from and to dwf=node+mdir+file dwt=path+file print(dwf); print(dwt) #start timer start = time.time() #Download file wget.download(dwf,dwt) #stop timer print(' '+'Download time: {:.1f} sec'.format(time.time() - start)) FileNotFoundError: [Errno 2] No such file or directory: '\\\\wsl$/Ubuntu/home/aelshall/NCO/Gmap/zos/EC-Earth3P/hist-1950/zos_Omon_EC-Earth3P_hist-1950_r2i1p2f1_gn_199001-199012.nc1ersta5k.tmp' SIR PLS HELP ME TO SOLVE THIS PROBLEM

  • @nembilwiwamashudu7692
    @nembilwiwamashudu7692 2 роки тому

    wget. is not working in my case

  • @addisaschenik792
    @addisaschenik792 2 роки тому

    👏👏👏👏

  • @addisaschenik792
    @addisaschenik792 2 роки тому

    Thank you so much!!

  • @addisaschenik792
    @addisaschenik792 2 роки тому

    Excellent work and great respect!!!

  • @addisaschenik792
    @addisaschenik792 2 роки тому

    Thank you so much, You did great!!!

  • @vinay15590
    @vinay15590 2 роки тому

    Thank you so much

  • @fridaytomvie9143
    @fridaytomvie9143 2 роки тому

    This is a great work I have search for. Thanks

  • @sudhanshukumar9578
    @sudhanshukumar9578 2 роки тому

    very nicely explained. Thanks for all your efforts

  • @gonzalojeldes5708
    @gonzalojeldes5708 3 роки тому

    Thank you so much for this video <3

  • @lekshmionair216
    @lekshmionair216 3 роки тому

    Sir, while i Open the. Nc data folder kept in documents, why panoply doesn't take that files, it seems to be emptied

  • @sangaydorji657
    @sangaydorji657 3 роки тому

    Thanks for your excellent tutorial. Could you help me how to download multi ensemble model for daily precipitation?

  • @ps5793
    @ps5793 3 роки тому

    Best video ever I saw for Panoply. Cheers!!!!

  • @hanumraksadinata7632
    @hanumraksadinata7632 3 роки тому

    Hallo! may I ask how to show up the scale bar?? Thankyouu

  • @rizwankazi4555
    @rizwankazi4555 3 роки тому

    Many thanks for your efforts. Invaluable!