Closed m13uz closed 5 months ago
nwp/ifs.py
Now, we can get IFS/HRES predictions as follows:
from skyrim.libs.nwp import IFSModel model = IFSModel(channels=["u10m", "v10m", "t2m"]) pred = model.predict( date="20240601", time="0000", lead_time=12, save=True ) pred.shape >> (5, 3, 721, 1440)
will add more test with additional PR
nwp/ifs.py
Now, we can get IFS/HRES predictions as follows: