Crate openweather_sdk
source ·Expand description
§OpenWeather SDK
This library is a small rust wrapper for making requests to the OpenWeather API. This library includes:
- query constructor with full coverage of free-tier API calls
- type-safe enums for accurate settings
- type-safe serde deserialization of responses
- async requests made with the Reqwest library
§Query Types Supported
- OneCall
- Time Machine
- Daily Aggregation
- Weather Overview
- Forecast
- [Current]
- Maps
- Air Pollution
- Geocoding
§Examples
For detailed examples of how to use the OpenWeather API, please reference the official documentation.
use openweather_sdk::{OpenWeather, Units, Language};
let openweather = OpenWeather::new(
"MY_PRIVATE_API_KEY".to_string(),
Units::Imperial,
Language::English
);
let lat = 38.795021;
let lon = -77.273300;
let count = 10;
let forecast_response = openweather.forecast.call(lat, lon, count).await;
§One Call
let lat = 38.795021;
let lon = -77.273300;
let historical_date = 1606223802;
let date = "2024-05-31" // YYYY-MM-DD format
// get one call data for current weather
let res = openweather.one_call.call(lat, lon).await;
// get one call data for historical weather
let res2 = openweather.one_call.call_historical_data(lat, lon, historical_date).await;
// get one call data for daily aggregation
// get one call data for weather overview
// customize response fields
openweather.one_call.fields.minutely = false;
openweather.one_call.fields.hourly = false;
let res5 = openweather.one_call.call(lat, lon).await;
§Forecast
let lat = 38.795021;
let lon = -77.273300;
let count = 10;
// get forecast data with specified number of timestamps
let res = openweather.forecast.call(lat, lon, count).await;
§Current
let lat = 38.795021;
let lon = -77.273300;
// get forecast data with specified number of timestamps
let res = openweather.current.call(lat, lon).await;
§Maps
let lat = 38.795021;
let lon = -77.273300;
let zoom = 1;
let x_tiles = 1;
let y_tiles = 1;
// get various types of map data
let cloud_map = openweather.maps.get_cloud_map(zoom, x_tiles, y_tiles).await;
let precip_map = openweather.maps.get_precipitation_map(zoom, x_tiles, y_tiles).await;
let temp_map = openweather.maps.get_temperature_map(zoom, x_tiles, y_tiles).await;
let wind_spd_map = openweather.maps.get_wind_speed_map(zoom, x_tiles, y_tiles).await;
let pressure_map = openweather.maps.get_pressure_map(zoom, x_tiles, y_tiles).await;
§Air Pollution
let lat = 38.795021;
let lon = -77.273300;
// get current and forecast air pollution data
let res = openweather.air_pollution.get_current_air_pollution(lat, lon).await;
let res2 = openweather.air_pollution.get_forecast_air_pollution(lat, lon).await;
// get historical air pollution data with start and end timestamps
let start = 1606223802;
let end = 1606482999;
let res3 = openweather.air_pollution.get_historical_air_pollution(lat, lon, start, end).await;
§Geocoding
let lat = 38.795021;
let lon = -77.273300;
let city = "New York";
let state = "NY";
let country = "US";
let limit = 5;
// get geocoding data by city name, zip code, or coordinates
let res = openweather.geocoding.get_geocoding(city, Some(state), Some(country), limit).await;
let res2 = openweather.geocoding.get_geocoding_by_zip_code("20001", None).await;
let res3 = openweather.geocoding.get_location_data(lat, lon, limit).await;