Hi there,
when I try to download the data on global daily fire fuel characteristics via the API, I always get the following error message: “The job has failed. Worker has been killed due to memory usage.”
I use a loop to request only one month at a time for each variable:
for var in variables:
for year in years:
for month in months:
c.retrieve(
'derived-fire-fuel-biomass',
{
"variable": var,
"version": "1",
"year": str(year),
"month": str(month),
"area": [90, -180, -90, 180],
},
)
A manual request I submitted has been approved, but since I want to download the data directly to a server rather than locally, it would be good to resolve this via the API.
Any advice on how to solve this would be great! Thanks