Skip to content

Instantly share code, notes, and snippets.

@HerbertLim
Last active October 1, 2018 05:11
Show Gist options
  • Save HerbertLim/fe9a5b610a97a6724a90184387340ef6 to your computer and use it in GitHub Desktop.
Save HerbertLim/fe9a5b610a97a6724a90184387340ef6 to your computer and use it in GitHub Desktop.
기상청의 동네예보 조회 (Korea Meteorological Administration's API for three days of weather forecast)
// API Request:
// http://newsky2.kma.go.kr/service/SecndSrtpdFrcstInfoService2/ForecastSpaceData?ServiceKey=SERVICE_KEY
// &base_date=20181001
// &base_time=1100
// &nx=55&ny=127 // NOTE: This is not latitude and longitude. It is KMA defined grid number.
// &_type=json
// &numOfRows=1000
// Response JSON:
{
"response": {
"header": {
"resultCode": "0000",
"resultMsg": "OK"
},
"body": {
"items": {
"item": [
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 30,
"nx": 55,
"ny": 127
},
.
.
.
]
},
"numOfRows": 1000,
"pageNo": 1,
"totalCount": 205
}
}
}
// Real Response Example:
{
"response": {
"header": {
"resultCode": "0000",
"resultMsg": "OK"
},
"body": {
"items": {
"item": [
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 30,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 55,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 17,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "TMX",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 17,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 8.8,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 283,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": -2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181001,
"fcstTime": 1500,
"fcstValue": 9,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 20,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 60,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 15,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 4.7,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 306,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": -3.4,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181001,
"fcstTime": 1800,
"fcstValue": 5.8,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": 20,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": 75,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": 3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": 13,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": 3.6,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": 310,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": -3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181001,
"fcstTime": 2100,
"fcstValue": 4.7,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 20,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 85,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 12,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 3.1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 313,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": -2.9,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181002,
"fcstTime": "0000",
"fcstValue": 4.2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": 20,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": 85,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": 3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": 11,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": 1.5,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": 328,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": -2.4,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181002,
"fcstTime": "0300",
"fcstValue": 2.8,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 10,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 85,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 11,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "TMN",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 10,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 14,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": -0.4,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181002,
"fcstTime": "0600",
"fcstValue": 0.4,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": 10,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": 70,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": 2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": 16,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": -0.3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": 24,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": -0.9,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181002,
"fcstTime": "0900",
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 10,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 50,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 20,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 2.7,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 285,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": -0.7,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181002,
"fcstTime": 1200,
"fcstValue": 2.8,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 50,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 21,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "TMX",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 21,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 3.4,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 267,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 0.2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181002,
"fcstTime": 1500,
"fcstValue": 3.4,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 65,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 17,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 246,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 0.9,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181002,
"fcstTime": 1800,
"fcstValue": 2.2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 75,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 14,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 0.2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 188,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 1.5,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181002,
"fcstTime": 2100,
"fcstValue": 1.5,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 80,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 13,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 0.5,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 344,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": -1.8,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181003,
"fcstTime": "0000",
"fcstValue": 1.9,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": 90,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": 11,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": 0.5,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": 331,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": -0.9,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181003,
"fcstTime": "0300",
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 90,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 11,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "TMN",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 10,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 360,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": -1.2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181003,
"fcstTime": "0600",
"fcstValue": 1.2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": 75,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": 16,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": -0.2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": 17,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": -1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181003,
"fcstTime": "0900",
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 45,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 21,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 0.5,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 342,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": -1.5,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181003,
"fcstTime": 1200,
"fcstValue": 1.6,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 45,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 23,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "TMX",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 23,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 2.3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 311,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": -2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181003,
"fcstTime": 1500,
"fcstValue": 3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 70,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 19,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 2.7,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 264,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 0.3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181003,
"fcstTime": 1800,
"fcstValue": 2.7,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": 80,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": 16,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": 2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": 273,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": -0.1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181003,
"fcstTime": 2100,
"fcstValue": 2,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "POP",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "PTY",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "R06",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "REH",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 80,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "S06",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "SKY",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 1,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "T3H",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 14,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "UUU",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 0,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VEC",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 3,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "VVV",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": -1.8,
"nx": 55,
"ny": 127
},
{
"baseDate": 20181001,
"baseTime": 1100,
"category": "WSD",
"fcstDate": 20181004,
"fcstTime": "0000",
"fcstValue": 1.8,
"nx": 55,
"ny": 127
}
]
},
"numOfRows": 1000,
"pageNo": 1,
"totalCount": 205
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment