We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running
from eodag import EODataAccessGateway, setup_logging setup_logging(3) dag = EODataAccessGateway() search_criteria = { 'productType': 'reanalysis-era5-single-levels-monthly-means', 'start': '2022-01-01', 'end': '2022-12-31', } products = dag.search_all(provider="cop_cds", **search_criteria) path = dag.download(products[0], outputs_prefix='.')
We can see in logs that dates are not sent in the request:
2025-01-24 20:24:06,588 eodag.download.http [DEBUG ] POST https://cds.climate.copernicus.eu/api/retrieve/v1/processes/reanalysis-era5-single-levels-monthly-means/execution {'User-Agent': 'eodag/3.1.0b2.dev13+g2dbab735'} {'json': {'inputs': {}}}
Which causes an Error from the provider.
Related to #1489
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running
We can see in logs that dates are not sent in the request:
2025-01-24 20:24:06,588 eodag.download.http [DEBUG ] POST https://cds.climate.copernicus.eu/api/retrieve/v1/processes/reanalysis-era5-single-levels-monthly-means/execution {'User-Agent': 'eodag/3.1.0b2.dev13+g2dbab735'} {'json': {'inputs': {}}}
Which causes an Error from the provider.
Related to #1489
The text was updated successfully, but these errors were encountered: