Hello,
I just set up my CDS API key on a system that has CDS API’s Python module already installed and am attempting to download some of the TIGGE Forecasts from the Bureau of Meteorology’s datasets (Australia). I am using the following script generated on the TIGGE Forecast download page:
import cdsapi
dataset = “tigge-forecasts”
request = {
“origin”: “bom”,
“year”: “2024”,
“month”: “03”,
“day”: “31”,
“time”: “00:00”,
“level_type”: “pressure”,
“variable”: [
“geopotential_height”,
“temperature”,
“u_component_of_wind”,
“v_component_of_wind”
],
“forecast_type”: “perturbed_forecast”,
“leadtime_hour”: [
“0”,
“6”,
“12”,
“18”,
“24”,
“30”,
“36”,
“42”,
“48”,
“54”,
“60”,
“66”,
“72”,
“78”,
“84”,
“90”,
“96”,
“102”,
“108”,
“114”,
“120”,
“126”,
“132”,
“138”,
“144”,
“150”,
“156”,
“162”,
“168”,
“174”,
“180”,
“186”,
“192”,
“198”,
“204”,
“210”,
“216”,
“222”,
“228”,
“234”,
“240”
],
“level_value”: [
“300_hpa”,
“500_hpa”,
“700_hpa”,
“850_hpa”,
“925_hpa”
],
“data_format”: “grib”
}
client = cdsapi.Client()
client.retrieve(dataset, request).download()
However, I am running into the following error upon trying to download through the CDS API script:
HTTPError: 404 Client Error: Not Found for url: ``https://cds.climate.copernicus.eu/api/retrieve/v1/processes/tigge-forecasts`` process not found dataset tigge-forecasts not found
Does anyone have any solutions to this issue?
Thank You!