This lesson is still being designed and assembled (Pre-Alpha version)

Climate Data Store Toolbox

Overview

Teaching: 0 min
Exercises: 0 min
Questions
  • What is the Copernicus Climate Data Store Toolbox?

  • How to retrieve dataset with the Toolbox?

  • How to quickly visualize a dataset with the Toolbox?

  • What is the best workflow to analyze and visualize climate data?

Objectives
  • Get an overview of various aspects of the CDS Toolbox

  • Learn how to manipulate netCDF data within the CDS Toolbox

Let’s make the same selection as before. Go to “your requests” tab and select the last product you downloaded.

Click on “Open request form” and you will be re-directed to the selection page with all your previous choices already pre-selected.

This time, instead of clicking on “Submit Form”, we click on “Show Toolbox request”:

Copy the content in your clipboard so we can paste it later in the CDS Toolbox.

The CDS Toolbox package is still under active development and the current documentation can be found here.

import cdstoolbox as ct	
 data = ct.catalogue.retrieve(	
     'reanalysis-era5-single-levels-monthly-means',	
     {	
         'product_type':'monthly_averaged_reanalysis',	
         'variable':'total_precipitation',	
         'year':'2003',	
         'month':'06',	
         'time':'00:00',	
         'format':'netcdf'	
     })	

Is it python syntax?

If you are a python programmer, you probably have recognized the syntax. Otherwise, it may be a bit difficult to understand! The goal here is not to learn how to use the Python CDS toolbox package as it is currently not open source. For now, we make our selection via the web interface and then copy paste the request.

Key Points

  • CDS Toolbox

  • Data retrieval from the Toolbox

  • Data visualization from the Toolbox