comparison test-data/input.txt @ 0:250554670f72 draft

"planemo upload for repository https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s commit 04069ef63198279caf3d97de5a58fb32df12c811"
author climate
date Tue, 13 Apr 2021 18:32:45 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:250554670f72
1 import cdsapi
2
3 c = cdsapi.Client()
4
5 c.retrieve(
6 'reanalysis-era5-single-levels-monthly-means',
7 {
8 'format': 'netcdf',
9 'product_type': 'monthly_averaged_reanalysis',
10 'variable': '2m_temperature',
11 'year': '2020',
12 'month': '12',
13 'time': '00:00',
14 'area': [
15 60, 10, 59.5,
16 10.5,
17 ],
18 },
19 'download.nc')