Peter Mburu

Results 3 issues of Peter Mburu

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...

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',...

I get LoweringError from the following code: ```python import pandas as pd from climate_indices import indices metadata = pd.read_csv("data/1012475.metadata") station_id = metadata["Station"][0] lat = metadata["Lat"][0] awc = metadata["AWCmm"][0] column_names =...