geodata.datasets.era5.api_complete
==================================

.. py:function:: geodata.datasets.era5.api_complete(toDownload: Iterable, bounds: Iterable, download_vars: Iterable, product: str, product_type: str, downloadedFiles: list)

   Sample request:

   c.retrieve('reanalysis-era5-complete', {
      'date'    : '20130101',
      'levelist': '1/10/100/137',
      'levtype' : 'ml',
      'param'   : '130,  # Full information at https://apps.ecmwf.int/codes/grib/param-db/
      'stream'  : 'oper',  # Denotes ERA5. Ensemble members are selected by 'enda'
      'time'    : '00/to/23/by/6',
      'type'    : 'an',
      'grid'    : '1.0/1.0',
      'format'  : 'netcdf',
   }, 'save_path.nc')  # Output file. Adapt as you wish.

