get_forecast
Retrieve detailed weather forecasts for specific locations in Korea using grid coordinates. Provides temperature, precipitation, humidity, wind, and sky conditions for up to 6 hours.
Instructions
한국 기상청의 초단기예보 API를 호출하여 특정 지역의 날씨 예보 정보를 제공합니다. 사용자가 입력한 지역 정보와 격자 좌표를 바탕으로 현재 시점에서의 기상 정보를 조회합니다. 이 도구는 온도, 강수량, 하늘상태, 습도, 풍향, 풍속 등 상세한 기상 정보를 포함하며, 6시간 이내의 단기 예보를 제공합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | ||
dong | Yes | ||
gu | Yes | ||
nx | Yes | ||
ny | Yes |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"title": "City",
"type": "string"
},
"dong": {
"title": "Dong",
"type": "string"
},
"gu": {
"title": "Gu",
"type": "string"
},
"nx": {
"title": "Nx",
"type": "integer"
},
"ny": {
"title": "Ny",
"type": "integer"
}
},
"required": [
"city",
"gu",
"dong",
"nx",
"ny"
],
"title": "get_forecastArguments",
"type": "object"
}