DailyForecast Data Response
This object contains a daily summary forecast. Data elements are similar to those reported
by an
HourlyForecast, although some additional parameters are only included in the daily
forecast, such as minimum/maximum values and "time of" minimum/maximum values.
Output is available in either imperial or metric units.
All response parameters should be treated as optionally available.
Properties
time
integerThe UNIX timestamp for the hourly forecast. (GMT timezone)
summary
stringA human-readable summary of the weather in this hourly forecast.
icon
stringAn icon identifier representative of the weather summary.
temperatureMax
floatThe maximum expected temperature. (Units: Degrees Fahrenheit or Celsius)
temperatureMaxTime
integerThe UNIX time at which the maximum temperature is expected. (GMT timezone)
temperatureMin
floatThe minimum expected temperature. (Units: Degrees Fahrenheit or Celsius)
temperatureMinTime
integerThe UNIX time at which the minimum temperature is expected. (GMT timezone)
apparentTemperatureMax
float
The maximum expected apparent temperature ("feels like"), adjusted for heat index or
wind chill. (Units: Degrees Fahrenheit or Celsius)
apparentTemperatureMaxTime
integer
The UNIX time at which the maximum apparent temperature is expected. (GMT timezone)
apparentTemperatureMin
float
The minimum expected apparent temperature ("feels like"), adjusted for heat index or
wind chill. (Units: Degrees Fahrenheit or Celsius)
apparentTemperatureMinTime
integer
The UNIX time at which the minimum apparent temperature is expected. (GMT timezone)
precipType
stringThe type of precipitation occurring. Values will be
none
, rain
, snow
, or sleet
(referring to a wintery mix).precipProbability
floatThe probability of precipitation occurring, from 0 to 1.
precipIntensity
float
The intensity of precipitation expected. (Units: Inches/hour or millimeters/hour)
precipIntensityMax
float
The maximum expected precipitation intensity. (Units: Inches/hour or millimeters/hour)
precipIntensityMaxTime
integerThe UNIX time at which the maximum precipitation is expected. (GMT timezone)
precipAccumulation
floatThe amount of snowfall accumulation expected. (Units: Inches or millimeters)
dewPoint
floatThe estimated dew point temperature. (Units: Degrees Fahrenheit or Celsius)
humidity
floatThe relative humidity, from 0 to 1.
pressure
floatThe sea-level air pressure. (Units: Always reported in millibars)
windSpeed
floatThe maximum prevailing wind speed. (Units: Miles/hour or kilometers/hour)
windGust
floatThe maximum expected wind gust speed. (Units: Miles/hour or kilometers/hour)
windGustTime
integer
The UNIX time at which the maximum wind gust speeds are expected. (GMT timezone)
windBearing
integer
The direction from which the wind is blowing. (Units: Degrees clockwise from true north)
skyCover
floatThe percentage of sky occluded by clouds, from 0 to 1.
visibility
floatThe expected average visibility. (Units: Miles or kilometers)
Sample output
{ "time": 1632639600, "summary": "Clear throughout the day.", "icon": "clear-day", "temperatureMax": 83.98, "temperatureMaxTime": 1632687120, "temperatureMin": 57.3, "temperatureMinTime": 1632664980, "apparentTemperatureMax": 83.48, "apparentTemperatureMaxTime": 1632687120, "apparentTemperatureMin": 57.79, "apparentTemperatureMinTime": 1632664980, "precipType": "none", "precipProbability": 0, "precipIntensity": 0, "precipIntensityMax": 0, "precipAccumulation": 0, "dewPoint": 28.94, "humidity": 0.25, "pressure": 1013.8, "windSpeed": 5.89, "windGust": 23.12, "windGustTime": 1632697320, "windBearing": 243, "skyCover": 0.15, "visibility": 10, }