eodag icon indicating copy to clipboard operation
eodag copied to clipboard

Earth Observation Data Access Gateway

Results 162 eodag issues
Sort by recently updated
recently updated
newest added

`plugins.download.base.Download._finalize` takes care of extracting a product if required and returns the path to the product. There is a mechanism to inspect There is a mechanism to handle which path...

enhancement

**Describe the bug** Extraction is adding a useless subdirectory, example: extracting my_data/S2A_MSIL1C_20180619T132231_N0206_R038_T22KGV_20180619T150922.zip leads to my_data/S2A_MSIL1C_20180619T132231_N0206_R038_T22KGV_20180619T150922/S2A_MSIL1C_20180619T132231_N0206_R038_T22KGV_20180619T150922.SAFE In order to be coherent with unzipping outside eodag, e.g. `unzip S2A_MSIL1C_20180619T132231_N0206_R038_T22KGV_20180619T150922.zip`, in my opinion...

enhancement
priority::1

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

**Mundi provider failed to download EOProduct** *requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://mundiwebservices.com/dp/?prefix=Not%20Available* While Downloading the EOProduct for Mundi provider. The product does not have remote_location available. Moreover,...

bug

**Describe the bug** When I try to download a lot of Sentinel-2 products (around 2000), at some point the EODAG breaks. The code worked perfectly for months. **Output** ``` requests.exceptions.HTTPError:...

bug

Right now, EODAG can't find the open data from SPOT5(Take5) mission. They are available in: - [ ] Theia land catalogue: https://catalogue.theia-land.fr/ : which is different from https://theia.cnes.fr/ for which...

enhancement

**Describe the bug** When using eodag + creodias provider, the search works, but the download fails inconsistently (at different % of completition for the same file). When finishing (extract: false...

bug
pending

It would be great to create a FinallyCallback (on the pattern of DownloadedCallback) to manage products even if the download has failed. For example, some usecases: - when downloading on...

enhancement