Weather Daily Forecast
Get weather daily forecasts for the next 3-30 days for cities around the world.
Interface code | Interface | Class |
---|---|---|
weather3d | 3-days forecast | WeatherDailyResponse |
weather7d | 7-days forecast | WeatherDailyResponse |
weather10d | 10-days forecast | WeatherDailyResponse |
weather15d | 15-days forecast | WeatherDailyResponse |
weather30d | 30-days forecast | WeatherDailyResponse |
Parameters
WeatherParameter
-
location
(required)The location to be queried, support LocationID or comma-separated longitude and latitude (decimal, up to 2 decimal places), LocationID can be obtained by GeoAPI. Example:location=101010100
orlocation=116.41,39.92
-
lang
Multi-language setting, please see Language to find out how our multi-language works and how to set up. -
unit
Set weather data unit, the available value areunit=m
for metric(default) andunit=i
for imperial. See more about Unit.
Sample code
WeatherParameter parameter = new WeatherParameter("101010100");
/**
* Get 3-days forecast
*/
public void weather3d(WeatherParameter parameter, Callback<WeatherDailyResponse> callback);
/**
* Get 7-days forecast
*/
public void weather7d(WeatherParameter parameter, Callback<WeatherDailyResponse> callback);
/**
* Get 10-days forecast
*/
public void weather10d(WeatherParameter parameter, Callback<WeatherDailyResponse> callback);
/**
* Get 15-days forecast
*/
public void weather15d(WeatherParameter parameter, Callback<WeatherDailyResponse> callback);
/**
* Get 30-days forecast
*/
public void weather30d(WeatherParameter parameter, Callback<WeatherDailyResponse> callback);
Response
WeatherDailyResponse
-
code
See Status Code -
updateTime
API last update time -
fxLink
Responsive web page of this data, for embedded in website or APP -
daily.fxDate
Forecast date -
daily.sunrise
Sunrise time. Maybe null in high latitude area -
daily.sunset
Sunset time. Maybe null in high latitude area -
daily.moonrise
Moonrise time of current day. Maybe null -
daily.moonset
Moonset time of current day. Maybe null -
daily.moonPhase
Moon phase name -
daily.moonPhaseIcon
Icon code for moon phase. See also QWeather Icons -
daily.tempMax
The highest temperature of the day -
daily.tempMin
The lowest temperature of the day -
daily.iconDay
Icon code for daytime weather conditions. See also QWeather Icons -
daily.textDay
Weather conditions for daytime -
daily.iconNight
Icon code for night weather conditions. See also QWeather Icons -
daily.textNight
Weather conditions for night -
daily.wind360Day
Daytime wind direction in azimuth degree -
daily.windDirDay
Daytime wind direction -
daily.windScaleDay
Daytime wind scale -
daily.windSpeedDay
Daytime wind speed, KM/H -
daily.wind360Night
Nightly wind direction in azimuth degree -
daily.windDirNight
Nightly wind direction -
daily.windScaleNight
Nightly wind scale -
daily.windSpeedNight
Nightly wind speed, KM/H -
daily.precip
Estimated total precipitation for the day -
daily.uvIndex
UV index -
daily.humidity
Relative humidity in percent -
daily.pressure
Atmospheric pressure, hPa -
daily.vis
Visibility, KM -
daily.cloud
Cloud cover in percent, may be null -
refer.sources
Data source and other statements, may be null -
refer.license
Data license, may be null