Real-time Weather
Get real-time weather data for 200,000+ cities around the world, including temperature, wind, humidity, pressure, precipitation, visibility, etc.
Interface code | Interface | Class |
---|---|---|
weatherNow | Real-time weather | WeatherNowResponse |
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
Swift
Task{
do {
let parameter = WeatherParameter(location: "101010100")
let response = try await QWeather.instance
.weatherNow(parameter)
print(response)
} catch QWeatherError.errorResponse(let error) {
print(error)
} catch {
print(error)
}
}
Objective-C
WeatherParameter * parameter = [WeatherParameter instanceWithLocation:@"101010100" lang:@(LangZH_HANS) unit:@(UnitMETRIC)];
[QWeatherObjc weatherNow:parameter completionHandler:^(WeatherNowResponse * _Nullable response, NSError * _Nullable error) {
if (response) {
NSLog(@"%@", response.description);
}
if (error) {
NSLog(@"%@", error.localizedDescription);
}
}];
Response
WeatherNowResponse
-
code
See Status Code -
updateTime
API last update time -
fxLink
Responsive web page of this data, for embedded in website or APP -
now.obsTime
Observation time -
now.temp
temperature -
now.feelsLike
Feels like temperature -
now.icon
Icon code for weather conditions. See also QWeather Icons -
now.text
Weather conditions -
now.wind360
Wind direction in azimuth degree -
now.windDir
Wind direction -
now.windScale
Wind scale -
now.windSpeed
Wind speed, KM/H -
now.humidity
Relative humidity in percent -
now.precip
Accumulated precipitation in the last hour -
now.pressure
Atmospheric pressure, hPa -
now.vis
Visibility, KM -
now.cloud
Cloud cover in percent, may be null -
now.dew
Dew point temperature, may be null -
refer.sources
Data source and other statements, may be null -
refer.license
Data license, may be null