Sylvain Brunato

Results 161 issues of Sylvain Brunato

Following the mechanism used for the provider `ecmwf` the new `cds` provider should use [cdsapi](https://github.com/ecmwf/cdsapi) through a new API plugin `CdsApi`. This new API plugin will work the same way...

enhancement

Python 3.6 security support ended on [23 Dec 2021](https://endoflife.date/python). Some eodag dependencies, like `setuptools_scm` already [dropped python 3.6 support](https://github.com/pypa/setuptools_scm/commit/d65a0377a71b2915107d4e816c0f5e1724d42f82), we should also set `python3.7` as minimal requirement.

enhancement

change sections order in [ECMWF tutorial](https://eodag.readthedocs.io/en/latest/notebooks/tutos/tuto_ecmwf.html) From: - Search (build download request) - Search from an existing product type - Search using a custom MARS request: - Send product retrieval...

documentation

A display bug appeared in the documentation : https://eodag.readthedocs.io/en/stable/add_provider.html#opensearch-parameters-csv The table layout seems to have been broken after having added new providers

bug

Get external python apis out of `install_requires` (`usgs`, `ecmwf-api-client`), in order to keep `eodag` core as light as possible. Also move server mode the same way. Raise a well formatted...

enhancement

Following discussion https://github.com/CS-SI/eodag/discussions/454, create a new download plugin that would copy local products or create a symlink to them

enhancement

**[Original report](https://bitbucket.org/geostorm/eodag/issue/8) by Mickaël Savinaud (Bitbucket: [savmickael](https://bitbucket.org/savmickael), GitHub: [savmickael](https://github.com/savmickael)).** ---------------------------------------- Support ASF to retrieve EO data, mainly SAR one. - A python package is available for this provider https://github.com/asfadmin/Discovery-asf_search under...

provider

**[Original report](https://bitbucket.org/geostorm/eodag/issue/5) by Mickaël Savinaud (Bitbucket: [savmickael](https://bitbucket.org/savmickael), GitHub: [savmickael](https://github.com/savmickael)).** ---------------------------------------- https://github.com/DHI-GRAS/vito_download

enhancement
provider

Fixes #364 - Download configuration can be set per product type (and not only provider) - `earth_search_cog` provider merged into `earth_search` which now also handles `S2_MSI_L2A_COG` product type

```py from eodag import EODataAccessGateway dag = EODataAccessGateway() prods, _ = dag.search(productType="S2_MSI_L1C", start="2019-01-01", end="2019-02-01") print("storageStatus: %s" % prods[0].properties["storageStatus"]) dag.download(prods[0]) ``` outputs: ``` storageStatus: OFFLINE [...] RequestError: 404 Client Error: Not...

bug