Documentation ¶
Overview ¶
Package indices 天气指数
Index ¶
- Constants
- Variables
- func IndicesRequest(para *Para, key qweather.Credential, count uint8, plan qweather.Version) (*http.Request, error)
- func IndicesRequestWithRequiredParam(location, Type string, para *Para, key qweather.Credential, count uint8, ...) (*http.Request, error)
- type Para
- type Response
- func Day1(para *Para, key qweather.Credential, plan qweather.Version, ...) (*Response, error)
- func Day3(para *Para, key qweather.Credential, plan qweather.Version, ...) (*Response, error)
- func Indices(para *Para, key qweather.Credential, count uint8, plan qweather.Version, ...) (*Response, error)
- func IndicesWithRequiredParam(location, Type string, para *Para, key qweather.Credential, count uint8, ...) (*Response, error)
Constants ¶
View Source
const ( EndPoint = "https://api.qweather.com/v7/indices/" FreeEndPoint = "https://devapi.qweather.com/v7/indices/" )
Variables ¶
View Source
var ProEndPoint *string = nil
Functions ¶
func IndicesRequest ¶
Types ¶
type Response ¶
type Response struct { Code statusCode.Code `json:"code"` // 状态码 UpdateTime string `json:"updateTime"` // 当前API的最近更新时间 https://dev.qweather.com/docs/api/indices/ FxLink string `json:"fxLink"` // 当前数据的响应式页面,便于嵌入网站或应用 Daily []struct { Date string `json:"date"` // 预报日期 Type string `json:"type"` // 生活指数类型ID Name string `json:"name"` // 生活指数类型名称 Level string `json:"level"` // 生活指数预报等级 Category string `json:"category"` // 生活指数预报级别名称 Text string `json:"text"` // 生活指数预报的详细描述,**可能为空** } `json:"daily"` Refer struct { Sources []string `json:"sources"` // 原始数据来源,**可能为空** License []string `json:"license"` // 数据许可或版权声明,**可能为空** } `json:"refer"` }
func Indices ¶
func Indices(para *Para, key qweather.Credential, count uint8, plan qweather.Version, client qweather.Client) (*Response, error)
Indices 天气指数预报
获取中国和全球城市天气生活指数预报数据。
中国天气生活指数:舒适度指数、洗车指数、穿衣指数、感冒指数、运动指数、旅游指数、紫外线指数、空气污染扩散条件指数、空调开启指数、过敏指数、太阳镜指数、化妆指数、晾晒指数、交通指数、钓鱼指数、防晒指数 海外天气生活指数:运动指数、洗车指数、紫外线指数、钓鱼指数
当天生活指数
https://api.qweather.com/v7/indices/1d?[请求参数] 未来3天生活指数
https://api.qweather.com/v7/indices/3d?[请求参数]
请求参数说明:
location(必选)
需要查询地区的LocationID(https://dev.qweather.com/docs/resource/glossary/#locationid)或以英文逗号分隔的经度,纬度坐标(十进制,最多支持小数点后两位)(https://dev.qweather.com/docs/resource/glossary/#coordinate),LocationID可通过城市搜索服务(https://dev.qweather.com/docs/api/geoapi/)获取。例如 location=101010100 或 location=116.41,39.92
key(必选)
用户认证key,请参考如何获取你的KEY(https://dev.qweather.com/docs/configuration/project-and-key/)。支持数字签名(https://dev.qweather.com/docs/resource/signature-auth/)方式进行认证。例如 key=123456789ABC
type(必选)
生活指数的类型ID,包括洗车指数、穿衣指数、钓鱼指数等。可以一次性获取多个类型的生活指数,多个类型用英文,分割。例如type=3,5。具体生活指数的ID和等级参考天气指数信息 https://dev.qweather.com/docs/resource/indices-info/ 各项生活指数并非适用于所有城市。
lang
多语言设置,本数据仅支持中文和英文,可选值是lang=zh 和 lang=en
函数参数说明:
para 为请求参数 key 为用户认证key count 为天数 plan 订阅模式, 若是免费订阅, 则将上述API Host更改为devapi.qweather.com。参考免费订阅可用的数据(https://dev.qweather.com/docs/finance/subscription/#comparison)。
Click to show internal directories.
Click to hide internal directories.