I am trying to download data from the “Fire danger indices historical data from the Copernicus Emergency Management Service” dataset. I have my own version of the API request that keeps generating an “dataset cems-fire-historical-v1 not found” error, so I tried the code directly from the API request (below) and am still receiving the same error (below).
I am able to download the “reanalysis-era5-land” data without a problem, so I know my account/etc. is functioning.
Any help would be greatly appreciated
Error:
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://cds.climate.copernicus.eu/api/retrieve/v1/processes/cems-fire-historical-v1/execution
process not found
dataset cems-fire-historical-v1 not found
Code from "API Request:
import cdsapi
dataset = “cems-fire-historical-v1”
request = {
“product_type”: “reanalysis”,
“variable”: [
“build_up_index”,
“drought_code”,
“duff_moisture_code”,
“fine_fuel_moisture_code”,
“fire_daily_severity_rating”,
“fire_weather_index”,
“initial_fire_spread_index”,
“drought_factor”,
“fire_danger_index”,
“keetch_byram_drought_index”
],
“dataset_type”: “consolidated_dataset”,
“system_version”: [“4_1”],
“year”: [“2019”],
“month”: [
“01”, “02”, “03”,
“04”, “05”, “06”,
“07”, “08”, “09”,
“10”, “11”, “12”
],
“day”: [
“01”, “02”, “03”,
“04”, “05”, “06”,
“07”, “08”, “09”,
“10”, “11”, “12”,
“13”, “14”, “15”,
“16”, “17”, “18”,
“19”, “20”, “21”,
“22”, “23”, “24”,
“25”, “26”, “27”,
“28”, “29”, “30”,
“31”
],
“grid”: “0.25/0.25”,
“data_format”: “netcdf”
}
client = cdsapi.Client()
client.retrieve(dataset, request).download()