ecmwfr icon indicating copy to clipboard operation
ecmwfr copied to clipboard

Errore: Data identifier cems-fire-historical-v1 is not found in Web API, CDS or ADS datasets. Or your login credentials do not match your request.

Open alextaf2017 opened this issue 4 months ago • 1 comments

Goodmorning, this is my script taken from web api and already transformated python to list in R:

load the library

library(ecmwfr) library(ncdf4) library(terra) library(maps)

wf_set_key("285996", "xxx","cds")

request <- list( product_type = "reanalysis", variable = c("build_up_index", "burning_index", "fire_danger_index", "ignition_component", "initial_fire_spread_index"), dataset_type = "consolidated_dataset", system_version = "4_1", year = "2022", month = c("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"), day = c("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", format = "netcdf", area = c(47.04, -6.37, -35.29, 18.31), dataset_short_name = "cems-fire-historical-v1", target = "download.nc" ) request ncfile <- wf_request( user = "285996", request = request, transfer = TRUE, path = "~", verbose = FALSE ) It gives me always this error, i cannot find the solution, I tried different ways. A few days ago I tried with sucess to download another datasets, but in this case not

alextaf2017 avatar Feb 23 '24 10:02 alextaf2017