JuaDataset
JuaDataset
Overview
Working with JuaDataset
Getting a JuaDataset
from datetime import datetime
from jua import JuaClient
from jua.weather import Models
client = JuaClient()
# Get the forecast for all of Switzerland from the 1st of January 2024
model = client.weather.get_model(Models.EPT2)
forecast_data = model.get_forecasts( # Returns a JuaDataset
init_time=datetime(2024, 1, 1, 0),
latitude=slice(45, 48),
longitude=slice(5, 11),
)Accessing Variables
Working with xarray
Saving Data
Obtaining Statistics from Ensemble Models
Best Practices
Complete Example
Last updated