cdsapi icon indicating copy to clipboard operation
cdsapi copied to clipboard

Python API to access the Copernicus Climate Data Store (CDS)

Results 61 cdsapi issues
Sort by recently updated
recently updated
newest added

The code I'm using ``` import cdsapi c = cdsapi.Client() c.retrieve('cems-glofas-historical',{'format': 'zip','variable': 'Upstream area',},'download.zip') ``` Traceback ``` 020-11-02 07:13:18,908 INFO Welcome to the CDS 2020-11-02 07:13:18,908 INFO Sending request to...

I maintain the cdsapi package in Debian [1]. Until now, I've been importing tarballs from the PyPI page [2]. I would prefer basing the package on this git repository instead,...

* ubuntu 18.04 * python 3.6.9 * cdsapi 0.3.0 Retrieving a file, hitting CTRL-C (exception `KeyboardInterrupt`) during the downloading phase results in a truncated file. This can be problematic as...

I am trying to use cdsapi to download model level data for ERA5 and am receiving the error: 'Exception: Resource reanalysis-era5-complete not found' I have modified the download script presented...

Attempt to extract file downloaded by the script below i get `An error occurred while loading the archive` ``` import cdsapi c = cdsapi.Client() c.retrieve( 'cems-glofas-historical', { 'format':'zip', 'variable':'River discharge',...

Hi and thanks for the very useful API, As others pointed out, some more fine-grained documentation about is missing about accepted parameters and available data. Or course, the online Data...

For which data sets is (or is not) the argument `'area'` implemented? For example this call appears to return a zipped netCDF of the full geographic extent, meaning the item...

Anytime ii run this code the code below import cdsapi c = cdsapi.Client(config) i get this error --------------------------------------------------------------------------- Exception Traceback (most recent call last) Cell In[5], line 3 1 import...

I got this error when I running the codes Connection error: [HTTPSConnectionPool(host='cds.climate.copernicus.eu', port=443): Max retries exceeded with url: /api/v2/tasks/39888b13-7056-4d1f-9999-90770e7fe8d9 (Caused by ProxyError('Unable to connect to proxy', OSError(0, 'Error')))]. Attempt 7...