日出日落
获取未来60天全球任意地点日出日落时间。
在逐天预报API中,也会返回对应天数的日出日落、月升月落和月相数据
接口代码 | 接口说明 | 数据类 |
---|---|---|
getSun | 日出日落 | SunBean |
接口参数说明
-
location
(必选)需要查询地区的LocationID或以英文逗号分隔的经度,纬度坐标(十进制,最多支持小数点后两位),LocationID可通过GeoAPI获取。例如location=101010100
或location=116.41,39.92
-
date
(必选)选择日期,最多可选择未来60天(包含今天)的数据。日期格式为yyyyMMdd,例如date=20200531
示例代码
QWeather.getSun(Context context, String location, String date, final OnResultSunListener listener) ;
QWeather.getSun(Context context, String location, Lang lang, String date, final OnResultSunListener listener)
SunBean 属性
属性 | 说明 | 示例值 |
---|---|---|
getCode | 参考状态码 | 200 |
getRefer | Refer 数据来源以及数据授权 | Refer |
getSunrise | 日出时间,在高纬度地区可能为空 | 2017-10-25T06:01+08:00 |
getSunset | 日落时间,在高纬度地区可能为空 | 2017-10-25T18:01+08:00 |
Refer
属性 | 说明 | 示例值 |
---|---|---|
getSourcesList | 原始数据来源 | QWeather |
getLicenseList | 使用许可 | QWeather Developers License |
Basic
属性 | 说明 | 示例值 |
---|---|---|
getUpdateTime | 数据最近更新时间 | 2017-10-25T04:34+08:00 |
getFxLink | 当前数据的响应式页面,便于嵌入网站或应用 | https://www.qweather.com/weather/beijing-101010100.html |