Forecast weather at meter-scale resolution with GPU-accelerated models configured to explicitly resolve turbulence, convection, and clouds.
Simulate wildfire spread across wind, terrain, and fuel to support risk management and response.




1# pip install weatherwise
2from weatherwise import Client
3c = Client(api_key="YOUR_API_KEY")
4res = c.forecast.short_term(
5 location={
6 latitude: 48.8566,
7 longitude: 2.3522
8 },
9 resolution: {
10 x: 200,
11 y: 200,
12 unit: "M"
13 },
14 gridPoints: "240x240",
15 start: "2025-09-23T12:00Z",
16 duration: "PT24H",
17 models: ["gfs"]
18)
19print(res)