|
| 1 | +# Get the hourly forecast for the current day at a position |
| 2 | + |
| 3 | +This example uses the Forecast API. For more information, check the |
| 4 | +`sunny/api/forecast` module ! |
| 5 | + |
| 6 | +```gleam |
| 7 | +import birl |
| 8 | +import gleam/float |
| 9 | +import gleam/io |
| 10 | +import gleam/list |
| 11 | +import sunny |
| 12 | +import sunny/api/forecast |
| 13 | +import sunny/api/forecast/data |
| 14 | +import sunny/api/forecast/instant |
| 15 | +import sunny/position |
| 16 | +import sunny/wmo_code |
| 17 | +
|
| 18 | +pub fn hourly_forecast_test() { |
| 19 | + // Use `new_commercial("<your_api_key>")` if you have a commercial Open-meteo |
| 20 | + // API access. |
| 21 | + let sunny = sunny.new() |
| 22 | +
|
| 23 | + // You can get the coordinates of a place using the Geocoding API. See |
| 24 | + // `sunny/api/geocoding`, or the `city_info` example. |
| 25 | + // |
| 26 | + // Once you have a `Location`, use `geocoding.location_to_position()` to |
| 27 | + // convert it to a position. |
| 28 | + let position = position.Position(43.0, 5.0) |
| 29 | +
|
| 30 | + let assert Ok(forecast_result) = |
| 31 | + sunny |
| 32 | + |> forecast.get_forecast( |
| 33 | + forecast.params(position) |
| 34 | + // All available variables are listed in the `sunny/api/forecast/instant` |
| 35 | + // module. |
| 36 | + // Daily variables are in `sunny/api/forecast/daily`. |
| 37 | + |> forecast.set_hourly([instant.WeatherCode]) |
| 38 | + |> forecast.set_forecast_days(1), |
| 39 | + ) |
| 40 | +
|
| 41 | + let assert Ok(hourly_weather) = |
| 42 | + forecast_result.hourly |
| 43 | + |> data.range_to_data_list(instant.WeatherCode) |
| 44 | +
|
| 45 | + hourly_weather |
| 46 | + |> list.each(fn(timed_data) { |
| 47 | + io.println( |
| 48 | + birl.to_time_string(timed_data.time) |
| 49 | + <> " : " |
| 50 | + // `wmo_code.to_string` translates the `Int` WMOCode to a human-readable |
| 51 | + // `String`. |
| 52 | + <> wmo_code.to_string(float.round(timed_data.data.value)), |
| 53 | + ) |
| 54 | + }) |
| 55 | +} |
| 56 | +``` |
0 commit comments