Compare commits
2 commits
0807c15de4
...
a6dbb94d90
Author | SHA1 | Date | |
---|---|---|---|
a6dbb94d90 | |||
99c9a1d09f |
2 changed files with 18 additions and 1 deletions
17
src/weather/api.rs
Normal file
17
src/weather/api.rs
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
use super::data::WeatherData;
|
||||||
|
use super::secret::API_TOKEN;
|
||||||
|
|
||||||
|
|
||||||
|
pub fn get_weather_data() -> reqwest::Result<WeatherData> {
|
||||||
|
let api_url = format!(
|
||||||
|
"https://api.openweathermap.org/data/3.0/onecall?units={units}&lat={lat}&lon={lon}&exclude={exclude}&lang={lang}&appid={token}",
|
||||||
|
units = "metric",
|
||||||
|
lat = 51.03866,
|
||||||
|
lon = 13.70031,
|
||||||
|
exclude = "minutely",
|
||||||
|
lang = "de",
|
||||||
|
token = API_TOKEN,
|
||||||
|
);
|
||||||
|
|
||||||
|
reqwest::blocking::get(dbg!(api_url))?.json()
|
||||||
|
}
|
|
@ -145,7 +145,7 @@ pub struct WeatherAlert {
|
||||||
pub struct Precipitation {
|
pub struct Precipitation {
|
||||||
/// Precipitation volume in the last hour in mm
|
/// Precipitation volume in the last hour in mm
|
||||||
#[serde(rename = "1h")]
|
#[serde(rename = "1h")]
|
||||||
pub(self) hour: u16,
|
pub(self) hour: f32,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
|
|
Loading…
Reference in a new issue