Documentation ¶
Index ¶
- Constants
- type Client
- func (c *Client) ConfigApiClientFun(apiClientFun golog.ApiClientFun)
- func (c *Client) Daily(ctx context.Context, locationLatitude, locationLongitude string, ...) (*DailyResult, error)
- func (c *Client) GetLog() *golog.ApiClient
- func (c *Client) GetToken() string
- func (c *Client) Hourly(ctx context.Context, locationLatitude, locationLongitude string, ...) (*HourlyResult, error)
- func (c *Client) Minutely(ctx context.Context, locationLatitude, locationLongitude string, ...) (*MinutelyResult, error)
- func (c *Client) Realtime(ctx context.Context, locationLatitude, locationLongitude string, ...) (*RealtimeResult, error)
- func (c *Client) Weather(ctx context.Context, locationLatitude, locationLongitude string, ...) (*WeatherResult, error)
- type ClientConfig
- type DailyResponse
- type DailyResult
- type HourlyResponse
- type HourlyResult
- type MinutelyResponse
- type MinutelyResult
- type RealtimeResponse
- type RealtimeResult
- type WeatherResponse
- type WeatherResult
Constants ¶
View Source
const (
LogTable = "caiyunapp"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client 实例
func (*Client) ConfigApiClientFun ¶ added in v1.0.127
func (c *Client) ConfigApiClientFun(apiClientFun golog.ApiClientFun)
ConfigApiClientFun 日志配置
func (*Client) Daily ¶
func (c *Client) Daily(ctx context.Context, locationLatitude, locationLongitude string, notMustParams ...gorequest.Params) (*DailyResult, error)
Daily 天级别预报 https://docs.caiyunapp.com/docs/daily
func (*Client) Hourly ¶
func (c *Client) Hourly(ctx context.Context, locationLatitude, locationLongitude string, notMustParams ...gorequest.Params) (*HourlyResult, error)
Hourly 小时级别预报 https://docs.caiyunapp.com/docs/hourly
func (*Client) Minutely ¶
func (c *Client) Minutely(ctx context.Context, locationLatitude, locationLongitude string, notMustParams ...gorequest.Params) (*MinutelyResult, error)
Minutely 分钟级预报 https://docs.caiyunapp.com/docs/minutely
type DailyResponse ¶
type DailyResponse struct { Status string `json:"status"` // 状态 ApiVersion string `json:"api_version"` // api版本 ApiStatus string `json:"api_status"` // api状态 Lang string `json:"lang"` Unit string `json:"unit"` Tzshift float64 `json:"tzshift"` Timezone string `json:"timezone"` ServerTime float64 `json:"server_time"` Location []float64 `json:"location"` Result struct { Daily struct { Status string `json:"status"` Astro []struct { Date string `json:"date"` Sunrise struct { Time string `json:"time"` } `json:"sunrise"` Sunset struct { Time string `json:"time"` } `json:"sunset"` } `json:"astro"` // 日出日落时间,当地时区的时刻,tzshift 不作用在这个变量) Precipitation08H20H []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` Probability float64 `json:"probability"` } `json:"precipitation_08h_20h"` // 白天降水数据 Precipitation20H32H []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` Probability float64 `json:"probability"` } `json:"precipitation_20h_32h"` // 夜晚降水数据 Precipitation []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` Probability float64 `json:"probability"` } `json:"precipitation"` // 降水数据 Temperature []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` } `json:"temperature"` // 全天地表 2 米气温 Temperature08H20H []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` } `json:"temperature_08h_20h"` // 白天地表 2 米气温 Temperature20H32H []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` } `json:"temperature_20h_32h"` // 夜晚地表 2 米气温 Wind []struct { Date string `json:"date"` Max struct { Speed float64 `json:"speed"` // 全天地表 10 米风速 Direction float64 `json:"direction"` } `json:"max"` Min struct { Speed float64 `json:"speed"` // 全天地表 10 米风速 Direction float64 `json:"direction"` } `json:"min"` Avg struct { Speed float64 `json:"speed"` // 全天地表 10 米风速 Direction float64 `json:"direction"` } `json:"avg"` } `json:"wind"` Wind08H20H []struct { Date string `json:"date"` Max struct { Speed float64 `json:"speed"` // 白天地表 10 米风速 Direction float64 `json:"direction"` } `json:"max"` Min struct { Speed float64 `json:"speed"` // 白天地表 10 米风速 Direction float64 `json:"direction"` } `json:"min"` Avg struct { Speed float64 `json:"speed"` // 白天地表 10 米风速 Direction float64 `json:"direction"` } `json:"avg"` } `json:"wind_08h_20h"` Wind20H32H []struct { Date string `json:"date"` Max struct { Speed float64 `json:"speed"` // 夜晚地表 10 米风速 Direction float64 `json:"direction"` } `json:"max"` Min struct { Speed float64 `json:"speed"` // 夜晚地表 10 米风速 Direction float64 `json:"direction"` } `json:"min"` Avg struct { Speed float64 `json:"speed"` // 夜晚地表 10 米风速 Direction float64 `json:"direction"` } `json:"avg"` } `json:"wind_20h_32h"` Humidity []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` } `json:"humidity"` // 地表 2 米相对湿度(%) Cloudrate []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` } `json:"cloudrate"` // 云量(0.0-1.0) Pressure []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` } `json:"pressure"` // 地面气压 Visibility []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` } `json:"visibility"` // 地表水平能见度 Dswrf []struct { Date string `json:"date"` Max float64 `json:"max"` Min float64 `json:"min"` Avg float64 `json:"avg"` } `json:"dswrf"` // 向下短波辐射通量(W/M2) AirQuality struct { Aqi []struct { Date string `json:"date"` Max struct { Chn float64 `json:"chn"` Usa float64 `json:"usa"` } `json:"max"` Avg struct { Chn float64 `json:"chn"` Usa float64 `json:"usa"` } `json:"avg"` Min struct { Chn float64 `json:"chn"` Usa float64 `json:"usa"` } `json:"min"` } `json:"aqi"` // 国标 AQI Pm25 []struct { Date string `json:"date"` Max float64 `json:"max"` Avg float64 `json:"avg"` Min float64 `json:"min"` } `json:"pm25"` // PM2.5 浓度(μg/m3) } `json:"air_quality"` Skycon []struct { Date string `json:"date"` Value string `json:"value"` // 全天主要 天气现象 } `json:"skycon"` Skycon08H20H []struct { Date string `json:"date"` Value string `json:"value"` // 白天主要 天气现象 } `json:"skycon_08h_20h"` Skycon20H32H []struct { Date string `json:"date"` Value string `json:"value"` // 夜晚主要 天气现象 } `json:"skycon_20h_32h"` LifeIndex struct { Ultraviolet []struct { Date string `json:"date"` Index string `json:"index"` Desc string `json:"desc"` // 紫外线指数自然语言 } `json:"ultraviolet"` CarWashing []struct { Date string `json:"date"` Index string `json:"index"` Desc string `json:"desc"` // 洗车指数自然语言 } `json:"carWashing"` Dressing []struct { Date string `json:"date"` Index string `json:"index"` Desc string `json:"desc"` // 穿衣指数自然语言 } `json:"dressing"` Comfort []struct { Date string `json:"date"` Index string `json:"index"` Desc string `json:"desc"` // 舒适度指数自然语言 } `json:"comfort"` ColdRisk []struct { Date string `json:"date"` Index string `json:"index"` Desc string `json:"desc"` // 感冒指数自然语言 } `json:"coldRisk"` } `json:"life_index"` } `json:"daily"` Primary float64 `json:"primary"` } `json:"result"` }
type DailyResult ¶
type DailyResult struct { Result DailyResponse // 结果 Body []byte // 内容 Http gorequest.Response // 请求 }
type HourlyResponse ¶
type HourlyResponse struct { Status string `json:"status"` ApiVersion string `json:"api_version"` ApiStatus string `json:"api_status"` Lang string `json:"lang"` Unit string `json:"unit"` Tzshift int `json:"tzshift"` Timezone string `json:"timezone"` ServerTime int `json:"server_time"` Location []float64 `json:"location"` Result struct { Hourly struct { Status string `json:"status"` Description string `json:"description"` Precipitation []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` Probability float64 `json:"probability"` } `json:"precipitation"` Temperature []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` // 地表 2 米气温 } `json:"temperature"` ApparentTemperature []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` // 体感温度 } `json:"apparent_temperature"` Wind []struct { Datetime string `json:"datetime"` Speed float64 `json:"speed"` Direction float64 `json:"direction"` } `json:"wind"` Humidity []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` // 地表 2 米相对湿度(%) } `json:"humidity"` Cloudrate []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` } `json:"cloudrate"` Skycon []struct { Datetime string `json:"datetime"` Value string `json:"value"` } `json:"skycon"` Pressure []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` // 地面气压 } `json:"pressure"` Visibility []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` } `json:"visibility"` Dswrf []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` } `json:"dswrf"` AirQuality struct { Aqi []struct { Datetime string `json:"datetime"` Value struct { Chn float64 `json:"chn"` Usa float64 `json:"usa"` } `json:"value"` } `json:"aqi"` Pm25 []struct { Datetime string `json:"datetime"` Value float64 `json:"value"` } `json:"pm25"` } `json:"air_quality"` } `json:"hourly"` Primary float64 `json:"primary"` ForecastKeypoint string `json:"forecast_keypoint"` } `json:"result"` }
type HourlyResult ¶
type HourlyResult struct { Result HourlyResponse // 结果 Body []byte // 内容 Http gorequest.Response // 请求 }
type MinutelyResponse ¶
type MinutelyResponse struct { Status string `json:"status"` ApiVersion string `json:"api_version"` ApiStatus string `json:"api_status"` Lang string `json:"lang"` Unit string `json:"unit"` Tzshift float64 `json:"tzshift"` Timezone string `json:"timezone"` ServerTime float64 `json:"server_time"` Location []float64 `json:"location"` Result struct { Minutely struct { Status string `json:"status"` Datasource string `json:"datasource"` Precipitation2H []float64 `json:"precipitation_2h"` Precipitation []float64 `json:"precipitation"` Probability []float64 `json:"probability"` Description string `json:"description"` } `json:"minutely"` Primary float64 `json:"primary"` ForecastKeypoint string `json:"forecast_keypoint"` } `json:"result"` }
type MinutelyResult ¶
type MinutelyResult struct { Result MinutelyResponse // 结果 Body []byte // 内容 Http gorequest.Response // 请求 }
type RealtimeResponse ¶
type RealtimeResponse struct { Status string `json:"status"` ApiVersion string `json:"api_version"` ApiStatus string `json:"api_status"` Lang string `json:"lang"` Unit string `json:"unit"` Tzshift float64 `json:"tzshift"` Timezone string `json:"timezone"` ServerTime float64 `json:"server_time"` Location []float64 `json:"location"` Result struct { Realtime struct { Status string `json:"status"` Temperature float64 `json:"temperature"` Humidity float64 `json:"humidity"` Cloudrate float64 `json:"cloudrate"` Skycon string `json:"skycon"` Visibility float64 `json:"visibility"` Dswrf float64 `json:"dswrf"` Wind struct { Speed float64 `json:"speed"` Direction float64 `json:"direction"` } `json:"wind"` Pressure float64 `json:"pressure"` ApparentTemperature float64 `json:"apparent_temperature"` Precipitation struct { Local struct { Status string `json:"status"` Datasource string `json:"datasource"` Intensity float64 `json:"intensity"` } `json:"local"` Nearest struct { Status string `json:"status"` Distance float64 `json:"distance"` Intensity float64 `json:"intensity"` } `json:"nearest"` } `json:"precipitation"` AirQuality struct { Pm25 float64 `json:"pm25"` Pm10 float64 `json:"pm10"` O3 float64 `json:"o3"` So2 float64 `json:"so2"` No2 float64 `json:"no2"` Co float64 `json:"co"` Aqi struct { Chn float64 `json:"chn"` Usa float64 `json:"usa"` } `json:"aqi"` Description struct { Chn string `json:"chn"` Usa string `json:"usa"` } `json:"description"` } `json:"air_quality"` LifeIndex struct { Ultraviolet struct { Index float64 `json:"index"` Desc string `json:"desc"` } `json:"ultraviolet"` Comfort struct { Index float64 `json:"index"` Desc string `json:"desc"` } `json:"comfort"` } `json:"life_index"` } `json:"realtime"` Primary float64 `json:"primary"` } `json:"result"` }
type RealtimeResult ¶
type RealtimeResult struct { Result RealtimeResponse // 结果 Body []byte // 内容 Http gorequest.Response // 请求 }
type WeatherResponse ¶
type WeatherResponse struct { Status string `json:"status"` ApiVersion string `json:"api_version"` ApiStatus string `json:"api_status"` Lang string `json:"lang"` Unit string `json:"unit"` Tzshift int `json:"tzshift"` Timezone string `json:"timezone"` ServerTime int `json:"server_time"` Location []float64 `json:"location"` Result struct { Alert struct { } `json:"alert"` Realtime struct { } `json:"realtime"` Minutely struct { } `json:"minutely"` Hourly struct { } `json:"hourly"` Daily struct { } `json:"daily"` Primary int `json:"primary"` ForecastKeypoint string `json:"forecast_keypoint"` } `json:"result"` }
type WeatherResult ¶
type WeatherResult struct { Result WeatherResponse // 结果 Body []byte // 内容 Http gorequest.Response // 请求 }
Click to show internal directories.
Click to hide internal directories.