Skip to content

Commit

Permalink
fix(era5): new CDS API url (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
yannforget authored Jan 8, 2025
1 parent 95dc14a commit 3def4a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhexa/toolbox/era5/cds.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def build_request(
class CDS:
"""Climate data store API client based on datapi."""

def __init__(self, key: str, url: str = "https://cds-beta.climate.copernicus.eu/api") -> None:
def __init__(self, key: str, url: str = "https://cds.climate.copernicus.eu/api") -> None:
"""Initialize CDS client."""
self.client = ApiClient(key=key, url=url)
self.client.check_authentication()
Expand Down

0 comments on commit 3def4a6

Please sign in to comment.