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

I'm trying to retrieve a dataset from a Google Collab notebook, unsuccessfully so far, although I did apply [all instructions](https://cds.climate.copernicus.eu/api-how-to). ```python import cdsapi uploaded = files.upload() #to upload the .cdsapirc...

Greeting wizards; I'm using code below to download ERA5 data: =========================================== #!/usr/bin/env python import cdsapi c = cdsapi.Client() c.retrieve( 'reanalysis-era5-single-levels', { 'product_type':'reanalysis', 'format':'grib', 'variable':[ '10m_u_component_of_wind','10m_v_component_of_wind','2m_dewpoint_temperature', '2m_temperature','land_sea_mask','mean_sea_level_pressure', 'sea_ice_cover','sea_surface_temperature','skin_temperature', 'snow_depth','soil_temperature_level_1','soil_temperature_level_2', 'soil_temperature_level_3','soil_temperature_level_4','surface_pressure', 'volumetric_soil_water_layer_1','volumetric_soil_water_layer_2','volumetric_soil_water_layer_3',...

Basically, the size of data downloaded via CDS API is 2.1MB, but it takes 45 minutes. This is unusual because  I can download data of more than 2GB when using...

Hello What is the most recent data available ? In fact from a date how long do I have to wait to have the data reanalyzed ?

For the evaluation of CAMS2-40 model results, withing the CAMS2-83 project we download 22 different model results every day. When requesting "cams-europe-air-quality-forecasts" data that is missing, or has not yet...

I submitted a request for a regional box that roughly corresponds to the gulf of Mexico, for several variables of interest over the period of development of Katrina. The surface...

The `cdsapi.Client` constructor includes a call to `logging.basicConfig` which modifies the logging behavior for loggers unrelated to `cdsapi`. Here's an example: ```python import logging import cdsapi # external logger initially...

I started getting this error: `Recovering from connection error [HTTPSConnectionPool(host='cds.climate.copernicus.eu', port=443): Max retries exceeded with url: /api/v2/tasks/46f7822a-449a-499f-bbcf-c3cdc2b77420 (Caused by ConnectTimeoutError(, 'Connection to cds.climate.copernicus.eu timed out. (connect timeout=None)'))], attemps 0 of...

When I make a request for a dataset via the Copernicus Climate Data Store API I get a series of InsecureRequestWarning messages such as the below: ``` /home/james/miniconda3/envs/climate/lib/python3.7/site-packages/urllib3/connectionpool.py:847: InsecureRequestWarning: Unverified...

Default user-agent sent by cdsapi is inherited from it's dependency python-requests, which is [python-requests/x.y.z](https://github.com/psf/requests/blob/8bce583b9547c7b82d44c8e97f37cf9a16cbe758/requests/utils.py#L860) So it's not easy to know if the request came from official cdsapi or another Python...