Class Hourly
- Namespace
- SimpleWeather
- Assembly
- SimpleWeather.dll
Represents a single hourly forecast entry from the One Call API.
public class Hourly
- Inheritance
-
Hourly
- Inherited Members
Constructors
Hourly(JToken?)
Initializes a new instance of the Hourly class from JSON data.
public Hourly(JToken? data)
Parameters
dataJTokenThe JSON token that contains the hourly forecast.
Properties
Clouds
Cloudiness, %
public double? Clouds { get; }
Property Value
DT
Time of the forecasted data, UTC
public DateTime? DT { get; }
Property Value
DewPoint
Atmospheric temperature (varying according to pressure and humidity) below which water droplets begin to condense and dew can form.
public double? DewPoint { get; }
Property Value
FeelsLike
Temperature. This accounts for the human perception of weather.
public double? FeelsLike { get; }
Property Value
Humidity
Humidity, %
public double? Humidity { get; }
Property Value
PrecipitationProbability
Probability of precipitation in percents. The values of the parameter vary between 0 and 100
public double? PrecipitationProbability { get; }
Property Value
Pressure
Atmospheric pressure on the sea level, hPa
public double? Pressure { get; }
Property Value
Rain
Gets the rainfall totals for the hour.
public Rain? Rain { get; }
Property Value
Snow
Gets the snowfall totals for the hour.
public Snow? Snow { get; }
Property Value
Temperature
Temperature
public double? Temperature { get; }
Property Value
Uvi
UV index
public double? Uvi { get; }
Property Value
Visibility
Visibility in meters.
public double? Visibility { get; }
Property Value
Weather
Gets the descriptive weather information.
public Weather? Weather { get; }
Property Value
WindDegree
Wind direction, degrees (meteorological)
public double? WindDegree { get; }
Property Value
WindDirectionLong
Long wind direction represented by a string (North, East, South, West, etc.)
public string? WindDirectionLong { get; }
Property Value
WindDirectionShort
Short wind direction represented by a string (N, E, S, W, etc.)
public string? WindDirectionShort { get; }
Property Value
WindGust
Wind gust. Default Unit: meter/sec
public double? WindGust { get; }
Property Value
WindSpeed
Wind speed. Default Unit: meter/sec
public double? WindSpeed { get; }