get_hourly_forecast
Retrieve hyperlocal hourly weather forecasts for specific coordinates, with customizable language, unit system, and forecast duration up to 360 hours.
Instructions
获取小时级天气预报
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hourly_steps | No | 小时预报数量 (1-360) | |
language | No | 语言 | zh_CN |
latitude | Yes | 纬度 | |
longitude | Yes | 经度 | |
unit | No | 单位制 (metric: 公制, imperial: 英制) | metric |
Input Schema (JSON Schema)
{
"properties": {
"hourly_steps": {
"default": 24,
"description": "小时预报数量 (1-360)",
"maximum": 360,
"minimum": 1,
"type": "number"
},
"language": {
"default": "zh_CN",
"description": "语言",
"enum": [
"zh_CN",
"en_US"
],
"type": "string"
},
"latitude": {
"description": "纬度",
"type": "number"
},
"longitude": {
"description": "经度",
"type": "number"
},
"unit": {
"default": "metric",
"description": "单位制 (metric: 公制, imperial: 英制)",
"enum": [
"metric",
"imperial"
],
"type": "string"
}
},
"required": [
"longitude",
"latitude"
],
"type": "object"
}