Weather ======= The Weather Service provides access to real-time weather data using OpenWeatherMap. For more information, check out https://openweathermap.org/. Terms of Service: https://openweathermap.org/terms .. toctree:: :maxdepth: 2 :titlesonly: :caption: RPC Categories RPCS ---- .. function:: Weather.description(latitude: Latitude, longitude: Longitude) Get a short description of the current weather for a given location. **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - ``longitude: Longitude`` (`Longitude `__) .. function:: Weather.humidity(latitude: Latitude, longitude: Longitude) Get the current humidity for a given location. **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - ``longitude: Longitude`` (`Longitude `__) .. function:: Weather.icon(latitude: Latitude, longitude: Longitude) Get a small icon of the current weather for a given location. **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - ``longitude: Longitude`` (`Longitude `__) .. function:: Weather.temperature(latitude: Latitude, longitude: Longitude) Get the current temperature for a given location. **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - ``longitude: Longitude`` (`Longitude `__) .. function:: Weather.windAngle(latitude: Latitude, longitude: Longitude) Get the current wind direction for a given location. **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - ``longitude: Longitude`` (`Longitude `__) .. function:: Weather.windSpeed(latitude: Latitude, longitude: Longitude) Get the current wind speed for a given location. **Arguments:** - ``latitude: Latitude`` (`Latitude `__) - ``longitude: Longitude`` (`Longitude `__)