comparison test-data/req-timeseries.txt @ 0:b768e517a7d0 draft default tip

"planemo upload for repository https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cads commit 778688ee8d14e22b00b648858ad9bd1c2f46b1e0"
author climate
date Sat, 19 Jun 2021 18:35:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b768e517a7d0
1 import cdsapi
2
3 c = cdsapi.Client()
4
5 c.retrieve(
6 'cams-solar-radiation-timeseries',
7 {
8 'sky_type': 'clear',
9 'location': {
10 'latitude': 60,
11 'longitude': 11,
12 },
13 'altitude': '-999.',
14 'date': '2021-06-17/2021-06-17',
15 'time_step': '15minute',
16 'time_reference': 'universal_time',
17 'format': 'netcdf',
18 },
19 'download.nc')