-
Notifications
You must be signed in to change notification settings - Fork 38
Description
Version 0.3.17 Requesting "aifs" or "aifs-single" model downloads the "ifs" model, not the aifs model. Clearly my request is not constructed correctly. I would greatly appreciate someone's help in modifying my code for it to work. The README file has no specifics about constructing the aifs or aifs-single model requests.
Here's what I've been trying without success=
`from ecmwf.opendata import Client
time.sleep(1)
client = Client(
source="ecmwf",
model="aifs-single",
resol="0p25",
preserve_request_order=False,
infer_stream_keyword=True,
)
from ecmwf.opendata import Client
client = Client(source="ecmwf")
request = {
"date": 2025-02-25,
"model": aifs-single,
"time": 12,
"step": [0,6,12,18,24],
"param": ["2t", "2d", "msl", "tprate", "10u", "10v"],
}
client.retrieve(request, "output.grib2")
exit()`
Again, I would greatly appreciate just a bit of help in constructing the proper request for the aifs and aifs-single models.
Thank you in advance.