Skip to content

Commit cf386a8

Browse files
authored
Merge pull request #4 from leo-210/docs
Add getting started and example pages
2 parents bfd4143 + 85c9021 commit cf386a8

7 files changed

+196
-1
lines changed

docs/examples.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Example
2+
3+
Here is a list of the different examples by API.
4+
5+
### Geocoding API
6+
- [Get the current temperature in a city](examples/city_info.html)
7+
8+
### Forecast API
9+
- [Get the current temperature at a position](examples/current_temperature.html)
10+
- [Get the hourly forecast for one day at a position](examples/hourly_forecast.html)

docs/examples/city_info.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Get information on a city or town
2+
3+
This example uses the Geocoding API. For more information, check the
4+
`sunny/api/geocoding` module !
5+
6+
```gleam
7+
import gleam/int
8+
import gleam/io
9+
import gleam/option
10+
import sunny
11+
import sunny/api/geocoding
12+
13+
pub fn city_info_test() {
14+
// Use `new_commercial("<your_api_key>")` if you have a commercial Open-meteo
15+
// API access.
16+
let sunny = sunny.new()
17+
18+
let assert Ok(location) =
19+
sunny
20+
// If the location your searching for isn't the first result, try
21+
// `geocoding.get_locations`
22+
|> geocoding.get_first_location(
23+
geocoding.params("marseille")
24+
// Changing the language can impact the search results.
25+
|> geocoding.set_language(geocoding.French),
26+
)
27+
28+
let assert option.Some(population) = location.population
29+
30+
io.println(
31+
location.name
32+
<> ", "
33+
<> location.country_code
34+
<> " has a population of : "
35+
<> int.to_string(population),
36+
)
37+
}
38+
```

docs/examples/current_temperature.md

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Get the current temperature 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 gleam/dict
8+
import gleam/io
9+
import gleam/option
10+
import sunny
11+
import sunny/api/forecast
12+
import sunny/api/forecast/data
13+
import sunny/api/forecast/instant
14+
import sunny/measurement
15+
import sunny/position
16+
17+
pub fn current_temperature_test() {
18+
// Use `new_commercial("<your_api_key>")` if you have a commercial Open-meteo
19+
// API access.
20+
let sunny = sunny.new()
21+
22+
// You can get the coordinates of a place using the Geocoding API. See
23+
// `sunny/api/geocoding`, or the `city_info` example.
24+
//
25+
// Once you have a `Location`, use `geocoding.location_to_position()` to
26+
// convert it to a position.
27+
let position = position.Position(43.0, 5.0)
28+
29+
let assert Ok(forecast_result) =
30+
sunny
31+
|> forecast.get_forecast(
32+
forecast.params(position)
33+
// All available variables are listed in the `sunny/api/forecast/instant` module.
34+
// Daily variables are in `sunny/api/forecast/daily`.
35+
|> forecast.set_current([instant.Temperature2m]),
36+
)
37+
38+
let assert option.Some(data.CurrentData(data: data, ..)) =
39+
forecast_result.current
40+
41+
let assert Ok(current_temperature) =
42+
data
43+
|> dict.get(instant.Temperature2m)
44+
45+
io.println(
46+
"Current temperature : " <> measurement.to_string(current_temperature),
47+
)
48+
}
49+
```
50+

docs/examples/hourly_forecast.md

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
```

docs/getting_started.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Getting started
2+
3+
First, make sure you added the `sunny` package to your gleam project !
4+
```
5+
gleam add sunny
6+
```
7+
8+
To start interacting with the diffent Open-meteo (OM) APIs, you need to create a new sunny client :
9+
```gleam
10+
import sunny
11+
12+
pub fn main() {
13+
let sunny = sunny.new()
14+
}
15+
```
16+
<details>
17+
<summary>If you have a commercial access to Open-meteo</summary>
18+
```gleam
19+
let sunny = sunny.new_commercial("<your_api_key>")
20+
```
21+
</details>
22+
23+
## Using the APIs
24+
25+
Now you can start using the other APIs :
26+
- Forecast API : Get a lot a of diverse data on the current and future weather
27+
conditions anywhere you want.
28+
- Geocoding API : Get information on a city or town. Useful for getting the coordinates of a place, to then get the forecast there.
29+
30+
More APIs will be supported in the future.
31+
32+
You can check the various [examples](examples.html) to get an idea of how to use the APIs.

gleam.toml

+9
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,12 @@ gleam_json = ">= 1.0.1 and < 2.0.0"
1515

1616
[dev-dependencies]
1717
glacier = ">= 1.1.0 and < 2.0.0"
18+
19+
[documentation]
20+
pages = [
21+
{ title = "Getting started", path = "getting_started.html", source = "./docs/getting_started.md" },
22+
{ title = "Examples", path = "examples.html", source = "./docs/examples.md" },
23+
{ title = "Example : City informations", path = "examples/city_info.html", source = "./docs/examples/city_info.md" },
24+
{ title = "Example : Current temperature", path = "examples/current_temperature.html", source = "./docs/examples/current_temperature.md" },
25+
{ title = "Example : Hourly forecast", path = "examples/hourly_forecast.html", source = "./docs/examples/hourly_forecast.md" },
26+
]

test/examples/hourly_forecast.gleam

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub fn hourly_forecast_test() {
3838

3939
hourly_weather
4040
|> list.each(fn(timed_data) {
41-
io.debug(
41+
io.println(
4242
birl.to_time_string(timed_data.time)
4343
<> " : "
4444
// `wmo_code.to_string` translates the `Int` WMOCode to a human-readable

0 commit comments

Comments
 (0)