- Détails
 - Catégorie : Energie
 - Publié le mercredi 22 mai 2019 09:12
 - Écrit par Meleze
 - Affichages : 2265
 
import cdstoolbox as ct
  
 
@ct.application(title='Hello World!')
@ct.output.figure()
def application():
    """
    HELLO WORLD!
    This is your first application using the CDS Toolbox.
    
    Here, 3 basic tasks:
    
    - retrieve the 2 meter temperature from the CDS Catalogue
    - print info about the data (see it in the 'Console' tab!)
    - show the data on a map.
    """
    data = ct.catalogue.retrieve(
        'reanalysis-era5-single-levels',
        {
            'variable': '2m_temperature',
            'product_type': 'reanalysis',
            'year': '2017',
            'month': '01',
            'day': '01',
            'time': '12:00',
            'grid': ['3', '3'],
        }
    )
    
    print(data)
    fig = ct.cdsplot.geomap(data)
    return fig
					
 
