Skip to Content
Hail Threats

Weather API - Hail Threats

URL Path
https://data.api.xweather.com/hail/threats/
Data Coverage
US, Europe, Canada, Japan, Australia
Update Interval
Real-time
Time Range
Now to +60 minutes
Multiplier
12x

The hail threats endpoint provides access to Xweather’s hail threat nowcast data, which provides information on current and forecast hail threats in ten-minute intervals over the next 60 minutes.

Requests

Every request to the endpoint must include one of the supported actions in the url.

https://data.api.xweather.com/hail/threats/{action}?client_id={client_id}&client_secret={client_secret}&{params}

Supported Actions

The following actions are supported with the /hail/threats endpoint:

ActionDescription
:idType: stringTypically used for passing a geographical location name or identifier such as city name, lat/long, or even US and Canadian postal codes. Learn more.
closestType: stringBased on a location search, the results will be returned in order from closest to farthest. Learn more.
containsType: stringUsed with polygon based products (convective outlook, drought monitor, etc.) to determine if the queried location is inside of an impacted area. Learn more.
routeType: stringAllows you to pass several coordinates along a custom route to return data points at each location. Learn more.

Response

The following is an example of what each object in the response will consist of. Depending on your requested action, the response may contain multiple instances of this object within an array.

Properties

id (string)

ID associated with the hail threat.

dataSource (string)

Data source for the threat.

details (object)

Object containing specific details about the hail threat.

details.stormId (string)

ID associated with the hail threat

details.issuedTimestamp (number)

UNIX timestamp when this threat was issued.

details.issuedDateTimeISO (string)

ISO 8601 timestamp when this threat was issued.

details.range (object)

Range of time associated with the hail threat.

details.range.minTimestamp (number)

UNIX timestamp for the start time of the threat.

details.range.minDateTimeISO (string)

ISO 8601 timestamp for the start time for the threat.

details.range.maxTimestamp (number)

UNIX timestamp for the end time of the threat.

details.range.maxDateTimeISO (string)

ISO 8601 timestamp for the end time of the threat.

details.movement (object)

Details associated with the threats movement.

details.movement.dirDEG (number)

The direction of the hail threat is coming from in degrees. 0 degrees is North, 90 degrees is East, 180 degrees is South, 270 degrees is West.

details.movement.dir (string)

The direction of the hail threat is coming from. Possible values: N, NNE, NE, ENE, E, ESE, SE, SSE, S, SSW, SW, WSW, W, WNW, NW, NNW.

details.movement.speedKTS (number)

The speed of the movement of the hail threat in knots.

details.movement.speedKPH (number)

The speed of the movement of the hail threat in km/h.

details.movement.speedMPH (number)

The speed of the movement of the hail threat in mph.

details.movement.speedMPS (number)

The speed of the movement of the hail threat in m/s.

details.totalPeriods (number)

Total number of 10 minute intervals the threat is active for.

details.hail (object)

Object containing details about the hail in the threat.

details.hail.maxSizeMM (number)

Max size of hail in mm

details.hail.maxSizeIN (number)

Max size of hail in inches

details.hail.probSevere (number)

Probability this threat will produce severe hail (severe is 1 inch / 2.54 cm or greater).

details.hail.severe (boolean)

Indicates if the hail threat is considered severe.

periods (array)

Array of objects containing information about the 10 minute hail threat periods.

periods.#.id (string)

The ID string for the 10 minute threat forecast period.

periods.#.range (object)

Object containing information about the range of the 10 minute hail threat period.

periods.#.range.minTimestamp (number)

UNIX timestamp of the start of the 10 minute hail threat period.

periods.#.range.minDateTimeISO (string)

ISO 8601 timestamp of the start of the 10 minute hail threat period.

periods.#.range.maxTimestamp (number)

UNIX timestamp of the end of the 10 minute hail threat period.

periods.#.range.maxDateTimeISO (string)

ISO 8601 timestamp of the start of the 10 minute hail threat period.

periods.#.centroid (object)

A GeoJSON point object representing the centroid of the coverage area polygon for the period.

periods.#.centroid.type (string)

A GeoJSON point object representing the centroid of the coverage area polygon for the period.

periods.#.centroid.coordinates (array)

The GeoJSON type of the centroid object. Always Point.

periods.#.polygon (object)

A GeoJSON polygon object representing the threat coverage area for the period.

periods.#.polygon.type (string)

The GeoJSON type of the polygon object. Always Polygon.

periods.#.polygon.coordinates (array)

The GeoJSON coordinates of the polygon object. Array of longitude and latitude.

forecastPath (object)

A GeoJSON line string representing the estimated direction of the threat. Null if not available.

forecastPath.type (string)

The GeoJSON type of the line string object. Always LineString.

forecastPath.coordinates (array)

The GeoJSON coordinates of the line string object. Array of longitude and latitude.

profile (object)

Object containing information about the location or event.

profile.tz (string)

Timezone name of the location, such as America/New_York.

details.movement.dirToDEG (number)

The direction of the hail threat is moving towards in degrees. 0 degrees is North, 90 degrees is East, 180 degrees is South, 270 degrees is West.

details.movement.dirTo (string)

The direction of the hail threat is moving towards. Possible values: N, NNE, NE, ENE, E, ESE, SE, SSE, S, SSW, SW, WSW, W, WNW, NW, NNW.

response.json
{
  "success": true,
  "error": null,
  "response": [
    {
      "id": "20250527151500-0",
      "dataSource": "aeris",
      "details": {
        "stormId": "20250527151500-0",
        "issuedTimestamp": 1748358900,
        "issuedDateTimeISO": "2025-05-27T23:15:00+08:00",
        "range": {
          "minTimestamp": 1748358900,
          "minDateTimeISO": "2025-05-27T23:15:00+08:00",
          "maxTimestamp": 1748362500,
          "maxDateTimeISO": "2025-05-28T00:15:00+08:00"
        },
        "movement": {
          "dirDEG": 138,
          "dir": "SE",
          "dirToDEG": 318,
          "dirTo": "NW",
          "speedKTS": 8.95,
          "speedKPH": 16.58,
          "speedMPH": 10.3,
          "speedMPS": 4.61
        },
        "totalPeriods": 7,
        "hail": {
          "maxSizeMM": 37.1,
          "maxSizeIN": 1.46,
          "probSevere": 10,
          "severe": true
        }
      },
      "periods": [
        {
          "id": "20250527151500-0-1748358900",
          "range": {
            "minTimestamp": 1748358900,
            "minDateTimeISO": "2025-05-27T23:15:00+08:00",
            "maxTimestamp": 1748358900,
            "maxDateTimeISO": "2025-05-27T23:15:00+08:00"
          },
          "centroid": {
            "type": "Point",
            "coordinates": [
              132.2388,
              31.6216
            ]
          },
          "polygon": {
            "type": "Polygon",
            "coordinates": [
              [
                [
                  132.2166,
                  31.6014
                ],
                [
                  132.2149,
                  31.6031
                ],
                [
                  132.2139,
                  31.6041
                ],
                [
                  132.2128,
                  31.6051
                ],
                [
                  132.2118,
                  31.6061
                ],
                [
                  132.2108,
                  31.6071
                ],
                [
                  132.21,
                  31.608
                ],
                [
                  132.2093,
                  31.6087
                ],
                [
                  132.2088,
                  31.6092
                ],
                [
                  132.2087,
                  31.6093
                ],
                [
                  132.2086,
                  31.6095
                ],
                [
                  132.2085,
                  31.6096
                ],
                [
                  132.2084,
                  31.6096
                ],
                [
                  132.2083,
                  31.6097
                ],
                [
                  132.2083,
                  31.6098
                ],
                [
                  132.208,
                  31.6101
                ],
                [
                  132.208,
                  31.6102
                ],
                [
                  132.2077,
                  31.6105
                ],
                [
                  132.2077,
                  31.6106
                ],
                [
                  132.2076,
                  31.6107
                ],
                [
                  132.2076,
                  31.6108
                ],
                [
                  132.2075,
                  31.6108
                ],
                [
                  132.2075,
                  31.6109
                ],
                [
                  132.2074,
                  31.611
                ],
                [
                  132.2074,
                  31.6111
                ],
                [
                  132.2073,
                  31.6112
                ],
                [
                  132.2073,
                  31.6113
                ],
                [
                  132.2072,
                  31.6114
                ],
                [
                  132.2072,
                  31.6115
                ],
                [
                  132.2071,
                  31.6116
                ],
                [
                  132.2071,
                  31.6117
                ],
                [
                  132.207,
                  31.6118
                ],
                [
                  132.207,
                  31.6119
                ],
                [
                  132.2069,
                  31.612
                ],
                [
                  132.2069,
                  31.6121
                ],
                [
                  132.2068,
                  31.6122
                ],
                [
                  132.2068,
                  31.6124
                ],
                [
                  132.2067,
                  31.6125
                ],
                [
                  132.2067,
                  31.6126
                ],
                [
                  132.2066,
                  31.6127
                ],
                [
                  132.2066,
                  31.6129
                ],
                [
                  132.2065,
                  31.613
                ],
                [
                  132.2065,
                  31.6133
                ],
                [
                  132.2064,
                  31.6134
                ],
                [
                  132.2064,
                  31.6137
                ],
                [
                  132.2063,
                  31.6138
                ],
                [
                  132.2063,
                  31.6142
                ],
                [
                  132.2062,
                  31.6143
                ],
                [
                  132.2062,
                  31.6148
                ],
                [
                  132.2061,
                  31.6152
                ],
                [
                  132.2061,
                  31.6156
                ],
                [
                  132.206,
                  31.616
                ],
                [
                  132.206,
                  31.6165
                ],
                [
                  132.2059,
                  31.617
                ],
                [
                  132.2059,
                  31.6178
                ],
                [
                  132.2058,
                  31.6182
                ],
                [
                  132.2058,
                  31.6336
                ],
                [
                  132.2059,
                  31.6341
                ],
                [
                  132.2059,
                  31.6345
                ],
                [
                  132.206,
                  31.6351
                ],
                [
                  132.206,
                  31.6356
                ],
                [
                  132.2061,
                  31.6361
                ],
                [
                  132.2061,
                  31.6366
                ],
                [
                  132.2062,
                  31.637
                ],
                [
                  132.2062,
                  31.6375
                ],
                [
                  132.2063,
                  31.6376
                ],
                [
                  132.2063,
                  31.6381
                ],
                [
                  132.2064,
                  31.6382
                ],
                [
                  132.2064,
                  31.6384
                ],
                [
                  132.2065,
                  31.6385
                ],
                [
                  132.2065,
                  31.6388
                ],
                [
                  132.2066,
                  31.6389
                ],
                [
                  132.2066,
                  31.6391
                ],
                [
                  132.2067,
                  31.6392
                ],
                [
                  132.2067,
                  31.6393
                ],
                [
                  132.2068,
                  31.6394
                ],
                [
                  132.2068,
                  31.6396
                ],
                [
                  132.2069,
                  31.6397
                ],
                [
                  132.2069,
                  31.6399
                ],
                [
                  132.2071,
                  31.6401
                ],
                [
                  132.2071,
                  31.6403
                ],
                [
                  132.2072,
                  31.6404
                ],
                [
                  132.2072,
                  31.6405
                ],
                [
                  132.2073,
                  31.6405
                ],
                [
                  132.2073,
                  31.6406
                ],
                [
                  132.2074,
                  31.6407
                ],
                [
                  132.2074,
                  31.6408
                ],
                [
                  132.2075,
                  31.6409
                ],
                [
                  132.2075,
                  31.641
                ],
                [
                  132.2076,
                  31.641
                ],
                [
                  132.2076,
                  31.6411
                ],
                [
                  132.2077,
                  31.6412
                ],
                [
                  132.2077,
                  31.6413
                ],
                [
                  132.2079,
                  31.6415
                ],
                [
                  132.2079,
                  31.6416
                ],
                [
                  132.208,
                  31.6417
                ],
                [
                  132.2081,
                  31.6417
                ],
                [
                  132.2081,
                  31.6418
                ],
                [
                  132.2082,
                  31.6419
                ],
                [
                  132.2082,
                  31.642
                ],
                [
                  132.2083,
                  31.642
                ],
                [
                  132.2083,
                  31.6421
                ],
                [
                  132.2084,
                  31.6422
                ],
                [
                  132.2085,
                  31.6423
                ],
                [
                  132.2087,
                  31.6425
                ],
                [
                  132.2088,
                  31.6426
                ],
                [
                  132.2093,
                  31.6431
                ],
                [
                  132.2094,
                  31.6432
                ],
                [
                  132.2095,
                  31.6433
                ],
                [
                  132.2096,
                  31.6433
                ],
                [
                  132.2096,
                  31.6434
                ],
                [
                  132.2097,
                  31.6434
                ],
                [
                  132.2098,
                  31.6435
                ],
                [
                  132.2098,
                  31.6436
                ],
                [
                  132.2099,
                  31.6436
                ],
                [
                  132.21,
                  31.6437
                ],
                [
                  132.2101,
                  31.6437
                ],
                [
                  132.2102,
                  31.6438
                ],
                [
                  132.2104,
                  31.644
                ],
                [
                  132.2105,
                  31.644
                ],
                [
                  132.2105,
                  31.6441
                ],
                [
                  132.2106,
                  31.6441
                ],
                [
                  132.2107,
                  31.6442
                ],
                [
                  132.2108,
                  31.6442
                ],
                [
                  132.2109,
                  31.6443
                ],
                [
                  132.211,
                  31.6443
                ],
                [
                  132.211,
                  31.6444
                ],
                [
                  132.2112,
                  31.6444
                ],
                [
                  132.2113,
                  31.6445
                ],
                [
                  132.2114,
                  31.6445
                ],
                [
                  132.2116,
                  31.6447
                ],
                [
                  132.2118,
                  31.6447
                ],
                [
                  132.2119,
                  31.6448
                ],
                [
                  132.212,
                  31.6448
                ],
                [
                  132.2121,
                  31.6449
                ],
                [
                  132.2122,
                  31.6449
                ],
                [
                  132.2123,
                  31.645
                ],
                [
                  132.2125,
                  31.645
                ],
                [
                  132.2126,
                  31.6451
                ],
                [
                  132.2129,
                  31.6451
                ],
                [
                  132.213,
                  31.6452
                ],
                [
                  132.2131,
                  31.6452
                ],
                [
                  132.2132,
                  31.6453
                ],
                [
                  132.2136,
                  31.6453
                ],
                [
                  132.2137,
                  31.6454
                ],
                [
                  132.214,
                  31.6454
                ],
                [
                  132.2141,
                  31.6455
                ],
                [
                  132.2142,
                  31.6455
                ],
                [
                  132.2146,
                  31.6455
                ],
                [
                  132.215,
                  31.6456
                ],
                [
                  132.2154,
                  31.6456
                ],
                [
                  132.2159,
                  31.6457
                ],
                [
                  132.2164,
                  31.6457
                ],
                [
                  132.2168,
                  31.6458
                ],
                [
                  132.2177,
                  31.6458
                ],
                [
                  132.2181,
                  31.6459
                ],
                [
                  132.2435,
                  31.6459
                ],
                [
                  132.2439,
                  31.6458
                ],
                [
                  132.2444,
                  31.6458
                ],
                [
                  132.2449,
                  31.6457
                ],
                [
                  132.2455,
                  31.6457
                ],
                [
                  132.246,
                  31.6456
                ],
                [
                  132.2464,
                  31.6456
                ],
                [
                  132.2469,
                  31.6455
                ],
                [
                  132.2474,
                  31.6455
                ],
                [
                  132.2475,
                  31.6454
                ],
                [
                  132.2479,
                  31.6454
                ],
                [
                  132.248,
                  31.6453
                ],
                [
                  132.2483,
                  31.6453
                ],
                [
                  132.2484,
                  31.6452
                ],
                [
                  132.2486,
                  31.6452
                ],
                [
                  132.2487,
                  31.6451
                ],
                [
                  132.2489,
                  31.6451
                ],
                [
                  132.249,
                  31.645
                ],
                [
                  132.2492,
                  31.645
                ],
                [
                  132.2493,
                  31.6449
                ],
                [
                  132.2495,
                  31.6449
                ],
                [
                  132.2497,
                  31.6448
                ],
                [
                  132.2499,
                  31.6447
                ],
                [
                  132.25,
                  31.6446
                ],
                [
                  132.2502,
                  31.6446
                ],
                [
                  132.2505,
                  31.6445
                ],
                [
                  132.2509,
                  31.6443
                ],
                [
                  132.2514,
                  31.644
                ],
                [
                  132.2519,
                  31.6438
                ],
                [
                  132.2525,
                  31.6435
                ],
                [
                  132.2531,
                  31.6431
                ],
                [
                  132.2537,
                  31.6428
                ],
                [
                  132.2544,
                  31.6425
                ],
                [
                  132.255,
                  31.6421
                ],
                [
                  132.2557,
                  31.6417
                ],
                [
                  132.2564,
                  31.6414
                ],
                [
                  132.257,
                  31.6411
                ],
                [
                  132.2577,
                  31.6407
                ],
                [
                  132.2591,
                  31.6401
                ],
                [
                  132.2598,
                  31.6398
                ],
                [
                  132.2605,
                  31.6395
                ],
                [
                  132.2612,
                  31.6392
                ],
                [
                  132.2619,
                  31.6388
                ],
                [
                  132.2633,
                  31.6382
                ],
                [
                  132.2639,
                  31.6378
                ],
                [
                  132.2647,
                  31.6375
                ],
                [
                  132.2654,
                  31.6371
                ],
                [
                  132.2662,
                  31.6367
                ],
                [
                  132.267,
                  31.6363
                ],
                [
                  132.2678,
                  31.6359
                ],
                [
                  132.2685,
                  31.6355
                ],
                [
                  132.2692,
                  31.6351
                ],
                [
                  132.2698,
                  31.6348
                ],
                [
                  132.2703,
                  31.6345
                ],
                [
                  132.2707,
                  31.6342
                ],
                [
                  132.2708,
                  31.6342
                ],
                [
                  132.2709,
                  31.6341
                ],
                [
                  132.271,
                  31.634
                ],
                [
                  132.2712,
                  31.634
                ],
                [
                  132.2714,
                  31.6338
                ],
                [
                  132.2715,
                  31.6338
                ],
                [
                  132.2715,
                  31.6337
                ],
                [
                  132.2716,
                  31.6337
                ],
                [
                  132.2718,
                  31.6335
                ],
                [
                  132.2719,
                  31.6334
                ],
                [
                  132.272,
                  31.6334
                ],
                [
                  132.272,
                  31.6333
                ],
                [
                  132.2721,
                  31.6332
                ],
                [
                  132.2722,
                  31.6332
                ],
                [
                  132.2723,
                  31.6331
                ],
                [
                  132.2723,
                  31.633
                ],
                [
                  132.2724,
                  31.633
                ],
                [
                  132.2725,
                  31.6329
                ],
                [
                  132.2725,
                  31.6328
                ],
                [
                  132.2726,
                  31.6328
                ],
                [
                  132.2727,
                  31.6327
                ],
                [
                  132.2727,
                  31.6326
                ],
                [
                  132.2728,
                  31.6326
                ],
                [
                  132.2729,
                  31.6325
                ],
                [
                  132.2729,
                  31.6324
                ],
                [
                  132.273,
                  31.6324
                ],
                [
                  132.2731,
                  31.6323
                ],
                [
                  132.2731,
                  31.6322
                ],
                [
                  132.2734,
                  31.6319
                ],
                [
                  132.2735,
                  31.6318
                ],
                [
                  132.2735,
                  31.6317
                ],
                [
                  132.2736,
                  31.6316
                ],
                [
                  132.2738,
                  31.6314
                ],
                [
                  132.2738,
                  31.6313
                ],
                [
                  132.274,
                  31.6311
                ],
                [
                  132.274,
                  31.631
                ],
                [
                  132.2741,
                  31.6309
                ],
                [
                  132.2741,
                  31.6308
                ],
                [
                  132.2743,
                  31.6306
                ],
                [
                  132.2743,
                  31.6304
                ],
                [
                  132.2744,
                  31.6303
                ],
                [
                  132.2744,
                  31.6302
                ],
                [
                  132.2745,
                  31.6302
                ],
                [
                  132.2745,
                  31.6301
                ],
                [
                  132.2746,
                  31.63
                ],
                [
                  132.2746,
                  31.6298
                ],
                [
                  132.2747,
                  31.6297
                ],
                [
                  132.2747,
                  31.6296
                ],
                [
                  132.2748,
                  31.6295
                ],
                [
                  132.2748,
                  31.6294
                ],
                [
                  132.2749,
                  31.6293
                ],
                [
                  132.2749,
                  31.629
                ],
                [
                  132.275,
                  31.6289
                ],
                [
                  132.275,
                  31.6287
                ],
                [
                  132.2751,
                  31.6287
                ],
                [
                  132.2751,
                  31.6284
                ],
                [
                  132.2752,
                  31.6283
                ],
                [
                  132.2752,
                  31.6279
                ],
                [
                  132.2753,
                  31.6279
                ],
                [
                  132.2753,
                  31.6274
                ],
                [
                  132.2754,
                  31.6271
                ],
                [
                  132.2754,
                  31.6267
                ],
                [
                  132.2755,
                  31.6263
                ],
                [
                  132.2755,
                  31.6258
                ],
                [
                  132.2756,
                  31.6253
                ],
                [
                  132.2756,
                  31.6249
                ],
                [
                  132.2757,
                  31.6244
                ],
                [
                  132.2757,
                  31.6234
                ],
                [
                  132.2758,
                  31.6233
                ],
                [
                  132.2758,
                  31.6188
                ],
                [
                  132.2757,
                  31.6185
                ],
                [
                  132.2757,
                  31.6178
                ],
                [
                  132.2756,
                  31.6173
                ],
                [
                  132.2756,
                  31.6168
                ],
                [
                  132.2755,
                  31.6162
                ],
                [
                  132.2755,
                  31.6157
                ],
                [
                  132.2754,
                  31.6153
                ],
                [
                  132.2754,
                  31.6145
                ],
                [
                  132.2753,
                  31.6144
                ],
                [
                  132.2753,
                  31.614
                ],
                [
                  132.2752,
                  31.6139
                ],
                [
                  132.2752,
                  31.6136
                ],
                [
                  132.2751,
                  31.6135
                ],
                [
                  132.2751,
                  31.6132
                ],
                [
                  132.275,
                  31.6131
                ],
                [
                  132.275,
                  31.6129
                ],
                [
                  132.2749,
                  31.6128
                ],
                [
                  132.2749,
                  31.6126
                ],
                [
                  132.2748,
                  31.6125
                ],
                [
                  132.2748,
                  31.6123
                ],
                [
                  132.2747,
                  31.6122
                ],
                [
                  132.2747,
                  31.6121
                ],
                [
                  132.2746,
                  31.612
                ],
                [
                  132.2746,
                  31.6119
                ],
                [
                  132.2745,
                  31.6118
                ],
                [
                  132.2745,
                  31.6116
                ],
                [
                  132.2744,
                  31.6115
                ],
                [
                  132.2743,
                  31.6114
                ],
                [
                  132.2743,
                  31.6113
                ],
                [
                  132.2742,
                  31.6112
                ],
                [
                  132.2742,
                  31.6111
                ],
                [
                  132.274,
                  31.6109
                ],
                [
                  132.274,
                  31.6108
                ],
                [
                  132.2739,
                  31.6107
                ],
                [
                  132.2739,
                  31.6106
                ],
                [
                  132.2738,
                  31.6106
                ],
                [
                  132.2738,
                  31.6105
                ],
                [
                  132.2737,
                  31.6104
                ],
                [
                  132.2737,
                  31.6103
                ],
                [
                  132.2736,
                  31.6102
                ],
                [
                  132.2735,
                  31.6101
                ],
                [
                  132.2734,
                  31.61
                ],
                [
                  132.2734,
                  31.6099
                ],
                [
                  132.2733,
                  31.6099
                ],
                [
                  132.2733,
                  31.6098
                ],
                [
                  132.273,
                  31.6095
                ],
                [
                  132.273,
                  31.6094
                ],
                [
                  132.2729,
                  31.6094
                ],
                [
                  132.2728,
                  31.6093
                ],
                [
                  132.2728,
                  31.6092
                ],
                [
                  132.2727,
                  31.6092
                ],
                [
                  132.2726,
                  31.6091
                ],
                [
                  132.2726,
                  31.609
                ],
                [
                  132.2725,
                  31.6089
                ],
                [
                  132.2724,
                  31.6089
                ],
                [
                  132.2724,
                  31.6088
                ],
                [
                  132.2723,
                  31.6088
                ],
                [
                  132.2719,
                  31.6084
                ],
                [
                  132.2718,
                  31.6083
                ],
                [
                  132.2717,
                  31.6083
                ],
                [
                  132.2716,
                  31.6082
                ],
                [
                  132.2716,
                  31.6081
                ],
                [
                  132.2715,
                  31.6081
                ],
                [
                  132.2714,
                  31.608
                ],
                [
                  132.2713,
                  31.608
                ],
                [
                  132.2713,
                  31.6079
                ],
                [
                  132.2711,
                  31.6079
                ],
                [
                  132.2711,
                  31.6078
                ],
                [
                  132.271,
                  31.6077
                ],
                [
                  132.2709,
                  31.6077
                ],
                [
                  132.2708,
                  31.6076
                ],
                [
                  132.2704,
                  31.6074
                ],
                [
                  132.27,
                  31.6072
                ],
                [
                  132.2695,
                  31.6069
                ],
                [
                  132.269,
                  31.6066
                ],
                [
                  132.2684,
                  31.6063
                ],
                [
                  132.2678,
                  31.606
                ],
                [
                  132.2672,
                  31.6057
                ],
                [
                  132.2665,
                  31.6053
                ],
                [
                  132.2659,
                  31.605
                ],
                [
                  132.2652,
                  31.6046
                ],
                [
                  132.2641,
                  31.6041
                ],
                [
                  132.263,
                  31.6035
                ],
                [
                  132.2617,
                  31.6029
                ],
                [
                  132.2604,
                  31.6023
                ],
                [
                  132.2591,
                  31.6017
                ],
                [
                  132.2578,
                  31.6011
                ],
                [
                  132.2565,
                  31.6005
                ],
                [
                  132.2553,
                  31.5999
                ],
                [
                  132.2542,
                  31.5994
                ],
                [
                  132.2534,
                  31.599
                ],
                [
                  132.2529,
                  31.5988
                ],
                [
                  132.2526,
                  31.5986
                ],
                [
                  132.2522,
                  31.5984
                ],
                [
                  132.2518,
                  31.5982
                ],
                [
                  132.2515,
                  31.598
                ],
                [
                  132.2512,
                  31.5978
                ],
                [
                  132.2509,
                  31.5977
                ],
                [
                  132.2507,
                  31.5975
                ],
                [
                  132.2504,
                  31.5974
                ],
                [
                  132.25,
                  31.5972
                ],
                [
                  132.2499,
                  31.5971
                ],
                [
                  132.2498,
                  31.5971
                ],
                [
                  132.2497,
                  31.597
                ],
                [
                  132.2495,
                  31.597
                ],
                [
                  132.2494,
                  31.5969
                ],
                [
                  132.2493,
                  31.5969
                ],
                [
                  132.2492,
                  31.5968
                ],
                [
                  132.249,
                  31.5968
                ],
                [
                  132.2489,
                  31.5967
                ],
                [
                  132.2486,
                  31.5967
                ],
                [
                  132.2485,
                  31.5966
                ],
                [
                  132.2482,
                  31.5966
                ],
                [
                  132.2481,
                  31.5965
                ],
                [
                  132.2479,
                  31.5965
                ],
                [
                  132.2478,
                  31.5964
                ],
                [
                  132.2473,
                  31.5964
                ],
                [
                  132.2472,
                  31.5963
                ],
                [
                  132.2465,
                  31.5963
                ],
                [
                  132.2461,
                  31.5962
                ],
                [
                  132.2457,
                  31.5962
                ],
                [
                  132.2452,
                  31.5961
                ],
                [
                  132.2447,
                  31.5961
                ],
                [
                  132.2443,
                  31.596
                ],
                [
                  132.2435,
                  31.596
                ],
                [
                  132.2432,
                  31.5959
                ],
                [
                  132.2284,
                  31.5959
                ],
                [
                  132.2281,
                  31.596
                ],
                [
                  132.2272,
                  31.596
                ],
                [
                  132.2266,
                  31.5961
                ],
                [
                  132.2261,
                  31.5961
                ],
                [
                  132.2256,
                  31.5962
                ],
                [
                  132.2251,
                  31.5962
                ],
                [
                  132.2247,
                  31.5963
                ],
                [
                  132.2244,
                  31.5963
                ],
                [
                  132.2243,
                  31.5964
                ],
                [
                  132.2238,
                  31.5964
                ],
                [
                  132.2237,
                  31.5965
                ],
                [
                  132.2234,
                  31.5965
                ],
                [
                  132.2233,
                  31.5966
                ],
                [
                  132.223,
                  31.5966
                ],
                [
                  132.2229,
                  31.5967
                ],
                [
                  132.2227,
                  31.5967
                ],
                [
                  132.2226,
                  31.5968
                ],
                [
                  132.2224,
                  31.5968
                ],
                [
                  132.2224,
                  31.5969
                ],
                [
                  132.2222,
                  31.5969
                ],
                [
                  132.2221,
                  31.597
                ],
                [
                  132.2219,
                  31.597
                ],
                [
                  132.2218,
                  31.5971
                ],
                [
                  132.2217,
                  31.5971
                ],
                [
                  132.2217,
                  31.5972
                ],
                [
                  132.2215,
                  31.5972
                ],
                [
                  132.2214,
                  31.5973
                ],
                [
                  132.2213,
                  31.5973
                ],
                [
                  132.2212,
                  31.5974
                ],
                [
                  132.2211,
                  31.5974
                ],
                [
                  132.2211,
                  31.5975
                ],
                [
                  132.221,
                  31.5975
                ],
                [
                  132.2209,
                  31.5976
                ],
                [
                  132.2208,
                  31.5976
                ],
                [
                  132.2206,
                  31.5978
                ],
                [
                  132.2205,
                  31.5978
                ],
                [
                  132.2204,
                  31.5979
                ],
                [
                  132.2203,
                  31.5979
                ],
                [
                  132.2203,
                  31.598
                ],
                [
                  132.2202,
                  31.598
                ],
                [
                  132.2201,
                  31.5981
                ],
                [
                  132.22,
                  31.5981
                ],
                [
                  132.2199,
                  31.5982
                ],
                [
                  132.2199,
                  31.5983
                ],
                [
                  132.2198,
                  31.5983
                ],
                [
                  132.2197,
                  31.5984
                ],
                [
                  132.2196,
                  31.5985
                ],
                [
                  132.2195,
                  31.5985
                ],
                [
                  132.2194,
                  31.5986
                ],
                [
                  132.2194,
                  31.5987
                ],
                [
                  132.2193,
                  31.5987
                ],
                [
                  132.2189,
                  31.5991
                ],
                [
                  132.2187,
                  31.5993
                ],
                [
                  132.2185,
                  31.5995
                ],
                [
                  132.2183,
                  31.5996
                ],
                [
                  132.2182,
                  31.5998
                ],
                [
                  132.218,
                  31.6
                ],
                [
                  132.2177,
                  31.6002
                ],
                [
                  132.2175,
                  31.6005
                ],
                [
                  132.2173,
                  31.6007
                ],
                [
                  132.2166,
                  31.6014
                ]
              ]
            ]
          }
        },
        {
          "id": "20250527151500-0-1748359500",
          "range": {
            "minTimestamp": 1748358900,
            "minDateTimeISO": "2025-05-27T23:15:00+08:00",
            "maxTimestamp": 1748359500,
            "maxDateTimeISO": "2025-05-27T23:25:00+08:00"
          },
          "centroid": {
            "type": "Point",
            "coordinates": [
              132.2249,
              31.6355
            ]
          },
          "polygon": {
            "type": "Polygon",
            "coordinates": [
              [
                [
                  132.2372,
                  31.5959
                ],
                [
                  132.2284,
                  31.5959
                ],
                [
                  132.2281,
                  31.596
                ],
                [
                  132.2272,
                  31.596
                ],
                [
                  132.2266,
                  31.5961
                ],
                [
                  132.2261,
                  31.5961
                ],
                [
                  132.2256,
                  31.5962
                ],
                [
                  132.2251,
                  31.5962
                ],
                [
                  132.2247,
                  31.5963
                ],
                [
                  132.2244,
                  31.5963
                ],
                [
                  132.2243,
                  31.5964
                ],
                [
                  132.2238,
                  31.5964
                ],
                [
                  132.2237,
                  31.5965
                ],
                [
                  132.2234,
                  31.5965
                ],
                [
                  132.2233,
                  31.5966
                ],
                [
                  132.223,
                  31.5966
                ],
                [
                  132.2229,
                  31.5967
                ],
                [
                  132.2227,
                  31.5967
                ],
                [
                  132.2226,
                  31.5968
                ],
                [
                  132.2224,
                  31.5968
                ],
                [
                  132.2224,
                  31.5969
                ],
                [
                  132.2222,
                  31.5969
                ],
                [
                  132.2221,
                  31.597
                ],
                [
                  132.2019,
                  31.6053
                ],
                [
                  132.1957,
                  31.608
                ],
                [
                  132.1794,
                  31.6246
                ],
                [
                  132.1765,
                  31.6365
                ],
                [
                  132.1776,
                  31.66
                ],
                [
                  132.181,
                  31.6667
                ],
                [
                  132.1867,
                  31.6716
                ],
                [
                  132.1987,
                  31.6745
                ],
                [
                  132.2308,
                  31.6737
                ],
                [
                  132.2565,
                  31.6614
                ],
                [
                  132.2636,
                  31.6542
                ],
                [
                  132.2746,
                  31.6299
                ],
                [
                  132.2746,
                  31.6298
                ],
                [
                  132.2747,
                  31.6297
                ],
                [
                  132.2747,
                  31.6296
                ],
                [
                  132.2748,
                  31.6295
                ],
                [
                  132.2748,
                  31.6294
                ],
                [
                  132.2749,
                  31.6293
                ],
                [
                  132.2749,
                  31.629
                ],
                [
                  132.275,
                  31.6289
                ],
                [
                  132.275,
                  31.6287
                ],
                [
                  132.2751,
                  31.6287
                ],
                [
                  132.2751,
                  31.6284
                ],
                [
                  132.2752,
                  31.6283
                ],
                [
                  132.2752,
                  31.6279
                ],
                [
                  132.2753,
                  31.6279
                ],
                [
                  132.2753,
                  31.6274
                ],
                [
                  132.2754,
                  31.6271
                ],
                [
                  132.2754,
                  31.6267
                ],
                [
                  132.2755,
                  31.6263
                ],
                [
                  132.2755,
                  31.6258
                ],
                [
                  132.2756,
                  31.6253
                ],
                [
                  132.2756,
                  31.6249
                ],
                [
                  132.2757,
                  31.6244
                ],
                [
                  132.2757,
                  31.6234
                ],
                [
                  132.2758,
                  31.6233
                ],
                [
                  132.2758,
                  31.6188
                ],
                [
                  132.2757,
                  31.6185
                ],
                [
                  132.2757,
                  31.6178
                ],
                [
                  132.2756,
                  31.6173
                ],
                [
                  132.2756,
                  31.6168
                ],
                [
                  132.2755,
                  31.6162
                ],
                [
                  132.2755,
                  31.6157
                ],
                [
                  132.2754,
                  31.6153
                ],
                [
                  132.2754,
                  31.6145
                ],
                [
                  132.2753,
                  31.6144
                ],
                [
                  132.2753,
                  31.614
                ],
                [
                  132.2752,
                  31.6139
                ],
                [
                  132.2752,
                  31.6136
                ],
                [
                  132.2751,
                  31.6135
                ],
                [
                  132.2751,
                  31.6132
                ],
                [
                  132.275,
                  31.6131
                ],
                [
                  132.275,
                  31.6129
                ],
                [
                  132.2749,
                  31.6128
                ],
                [
                  132.2749,
                  31.6126
                ],
                [
                  132.2748,
                  31.6125
                ],
                [
                  132.2748,
                  31.6123
                ],
                [
                  132.2747,
                  31.6122
                ],
                [
                  132.2747,
                  31.6121
                ],
                [
                  132.2746,
                  31.612
                ],
                [
                  132.2746,
                  31.6119
                ],
                [
                  132.2745,
                  31.6118
                ],
                [
                  132.2745,
                  31.6116
                ],
                [
                  132.2744,
                  31.6115
                ],
                [
                  132.2743,
                  31.6114
                ],
                [
                  132.2743,
                  31.6113
                ],
                [
                  132.2742,
                  31.6112
                ],
                [
                  132.2742,
                  31.6111
                ],
                [
                  132.274,
                  31.6109
                ],
                [
                  132.274,
                  31.6108
                ],
                [
                  132.2739,
                  31.6107
                ],
                [
                  132.2739,
                  31.6106
                ],
                [
                  132.2738,
                  31.6106
                ],
                [
                  132.2738,
                  31.6105
                ],
                [
                  132.2737,
                  31.6104
                ],
                [
                  132.2737,
                  31.6103
                ],
                [
                  132.2736,
                  31.6102
                ],
                [
                  132.2735,
                  31.6101
                ],
                [
                  132.2734,
                  31.61
                ],
                [
                  132.2734,
                  31.6099
                ],
                [
                  132.2733,
                  31.6099
                ],
                [
                  132.2733,
                  31.6098
                ],
                [
                  132.273,
                  31.6095
                ],
                [
                  132.273,
                  31.6094
                ],
                [
                  132.2729,
                  31.6094
                ],
                [
                  132.2728,
                  31.6093
                ],
                [
                  132.2728,
                  31.6092
                ],
                [
                  132.2727,
                  31.6092
                ],
                [
                  132.2726,
                  31.6091
                ],
                [
                  132.2726,
                  31.609
                ],
                [
                  132.2725,
                  31.6089
                ],
                [
                  132.2724,
                  31.6089
                ],
                [
                  132.2724,
                  31.6088
                ],
                [
                  132.2723,
                  31.6088
                ],
                [
                  132.2719,
                  31.6084
                ],
                [
                  132.2718,
                  31.6083
                ],
                [
                  132.2717,
                  31.6083
                ],
                [
                  132.2716,
                  31.6082
                ],
                [
                  132.2716,
                  31.6081
                ],
                [
                  132.2715,
                  31.6081
                ],
                [
                  132.2714,
                  31.608
                ],
                [
                  132.2713,
                  31.608
                ],
                [
                  132.2713,
                  31.6079
                ],
                [
                  132.2711,
                  31.6079
                ],
                [
                  132.2711,
                  31.6078
                ],
                [
                  132.271,
                  31.6077
                ],
                [
                  132.2709,
                  31.6077
                ],
                [
                  132.2708,
                  31.6076
                ],
                [
                  132.2704,
                  31.6074
                ],
                [
                  132.27,
                  31.6072
                ],
                [
                  132.2695,
                  31.6069
                ],
                [
                  132.269,
                  31.6066
                ],
                [
                  132.2684,
                  31.6063
                ],
                [
                  132.2678,
                  31.606
                ],
                [
                  132.2672,
                  31.6057
                ],
                [
                  132.2665,
                  31.6053
                ],
                [
                  132.2659,
                  31.605
                ],
                [
                  132.2652,
                  31.6046
                ],
                [
                  132.2641,
                  31.6041
                ],
                [
                  132.2502,
                  31.5973
                ],
                [
                  132.25,
                  31.5972
                ],
                [
                  132.2499,
                  31.5971
                ],
                [
                  132.2498,
                  31.5971
                ],
                [
                  132.2497,
                  31.597
                ],
                [
                  132.2495,
                  31.597
                ],
                [
                  132.2494,
                  31.5969
                ],
                [
                  132.2493,
                  31.5969
                ],
                [
                  132.2492,
                  31.5968
                ],
                [
                  132.249,
                  31.5968
                ],
                [
                  132.2489,
                  31.5967
                ],
                [
                  132.2486,
                  31.5967
                ],
                [
                  132.2485,
                  31.5966
                ],
                [
                  132.2482,
                  31.5966
                ],
                [
                  132.2481,
                  31.5965
                ],
                [
                  132.2479,
                  31.5965
                ],
                [
                  132.2478,
                  31.5964
                ],
                [
                  132.2473,
                  31.5964
                ],
                [
                  132.2472,
                  31.5963
                ],
                [
                  132.2465,
                  31.5963
                ],
                [
                  132.2461,
                  31.5962
                ],
                [
                  132.2457,
                  31.5962
                ],
                [
                  132.2452,
                  31.5961
                ],
                [
                  132.2447,
                  31.5961
                ],
                [
                  132.2443,
                  31.596
                ],
                [
                  132.2435,
                  31.596
                ],
                [
                  132.2432,
                  31.5959
                ],
                [
                  132.2372,
                  31.5959
                ]
              ]
            ]
          }
        },
        {
          "id": "20250527151500-0-1748360100",
          "range": {
            "minTimestamp": 1748359500,
            "minDateTimeISO": "2025-05-27T23:25:00+08:00",
            "maxTimestamp": 1748360100,
            "maxDateTimeISO": "2025-05-27T23:35:00+08:00"
          },
          "centroid": {
            "type": "Point",
            "coordinates": [
              132.2043,
              31.6553
            ]
          },
          "polygon": {
            "type": "Polygon",
            "coordinates": [
              [
                [
                  132.2245,
                  31.6045
                ],
                [
                  132.2019,
                  31.6053
                ],
                [
                  132.1784,
                  31.6116
                ],
                [
                  132.1618,
                  31.6222
                ],
                [
                  132.1482,
                  31.6378
                ],
                [
                  132.1441,
                  31.6554
                ],
                [
                  132.1463,
                  31.6838
                ],
                [
                  132.1598,
                  31.7008
                ],
                [
                  132.1775,
                  31.7059
                ],
                [
                  132.2138,
                  31.705
                ],
                [
                  132.2439,
                  31.6911
                ],
                [
                  132.2548,
                  31.6804
                ],
                [
                  132.2595,
                  31.667
                ],
                [
                  132.2636,
                  31.6542
                ],
                [
                  132.2663,
                  31.6438
                ],
                [
                  132.2657,
                  31.6303
                ],
                [
                  132.2621,
                  31.6226
                ],
                [
                  132.2555,
                  31.617
                ],
                [
                  132.2339,
                  31.6063
                ],
                [
                  132.2245,
                  31.6045
                ]
              ]
            ]
          }
        },
        {
          "id": "20250527151500-0-1748360700",
          "range": {
            "minTimestamp": 1748360100,
            "minDateTimeISO": "2025-05-27T23:35:00+08:00",
            "maxTimestamp": 1748360700,
            "maxDateTimeISO": "2025-05-27T23:45:00+08:00"
          },
          "centroid": {
            "type": "Point",
            "coordinates": [
              132.1846,
              31.6744
            ]
          },
          "polygon": {
            "type": "Polygon",
            "coordinates": [
              [
                [
                  132.2051,
                  31.6101
                ],
                [
                  132.1784,
                  31.6116
                ],
                [
                  132.154,
                  31.6166
                ],
                [
                  132.1323,
                  31.6305
                ],
                [
                  132.1157,
                  31.6504
                ],
                [
                  132.1104,
                  31.6743
                ],
                [
                  132.1137,
                  31.7081
                ],
                [
                  132.1314,
                  31.7306
                ],
                [
                  132.1532,
                  31.7385
                ],
                [
                  132.1968,
                  31.7378
                ],
                [
                  132.232,
                  31.722
                ],
                [
                  132.2467,
                  31.708
                ],
                [
                  132.2542,
                  31.6893
                ],
                [
                  132.2595,
                  31.667
                ],
                [
                  132.2591,
                  31.6468
                ],
                [
                  132.254,
                  31.6345
                ],
                [
                  132.2444,
                  31.6254
                ],
                [
                  132.2191,
                  31.6127
                ],
                [
                  132.2051,
                  31.6101
                ]
              ]
            ]
          }
        },
        {
          "id": "20250527151500-0-1748361300",
          "range": {
            "minTimestamp": 1748360700,
            "minDateTimeISO": "2025-05-27T23:45:00+08:00",
            "maxTimestamp": 1748361300,
            "maxDateTimeISO": "2025-05-27T23:55:00+08:00"
          },
          "centroid": {
            "type": "Point",
            "coordinates": [
              132.1649,
              31.6934
            ]
          },
          "polygon": {
            "type": "Polygon",
            "coordinates": [
              [
                [
                  132.1856,
                  31.6143
                ],
                [
                  132.154,
                  31.6166
                ],
                [
                  132.129,
                  31.6208
                ],
                [
                  132.1021,
                  31.6381
                ],
                [
                  132.0816,
                  31.6642
                ],
                [
                  132.0756,
                  31.6954
                ],
                [
                  132.0805,
                  31.7337
                ],
                [
                  132.1019,
                  31.7609
                ],
                [
                  132.1298,
                  31.7721
                ],
                [
                  132.179,
                  31.7718
                ],
                [
                  132.2199,
                  31.7541
                ],
                [
                  132.2391,
                  31.7367
                ],
                [
                  132.2497,
                  31.7125
                ],
                [
                  132.2542,
                  31.6893
                ],
                [
                  132.2541,
                  31.6637
                ],
                [
                  132.2473,
                  31.6461
                ],
                [
                  132.234,
                  31.6326
                ],
                [
                  132.2045,
                  31.6177
                ],
                [
                  132.1856,
                  31.6143
                ]
              ]
            ]
          }
        },
        {
          "id": "20250527151500-0-1748361900",
          "range": {
            "minTimestamp": 1748361300,
            "minDateTimeISO": "2025-05-27T23:55:00+08:00",
            "maxTimestamp": 1748361900,
            "maxDateTimeISO": "2025-05-28T00:05:00+08:00"
          },
          "centroid": {
            "type": "Point",
            "coordinates": [
              132.1454,
              31.7123
            ]
          },
          "polygon": {
            "type": "Polygon",
            "coordinates": [
              [
                [
                  132.1661,
                  31.6174
                ],
                [
                  132.129,
                  31.6208
                ],
                [
                  132.1038,
                  31.6243
                ],
                [
                  132.0714,
                  31.6452
                ],
                [
                  132.046,
                  31.6796
                ],
                [
                  132.0401,
                  31.7242
                ],
                [
                  132.0477,
                  31.762
                ],
                [
                  132.0717,
                  31.7916
                ],
                [
                  132.1063,
                  31.8064
                ],
                [
                  132.1614,
                  31.8065
                ],
                [
                  132.2083,
                  31.787
                ],
                [
                  132.2319,
                  31.7661
                ],
                [
                  132.2458,
                  31.736
                ],
                [
                  132.2497,
                  31.7125
                ],
                [
                  132.2502,
                  31.681
                ],
                [
                  132.2419,
                  31.6579
                ],
                [
                  132.2249,
                  31.6395
                ],
                [
                  132.1902,
                  31.6217
                ],
                [
                  132.1661,
                  31.6174
                ]
              ]
            ]
          }
        },
        {
          "id": "20250527151500-0-1748362500",
          "range": {
            "minTimestamp": 1748361900,
            "minDateTimeISO": "2025-05-28T00:05:00+08:00",
            "maxTimestamp": 1748362500,
            "maxDateTimeISO": "2025-05-28T00:15:00+08:00"
          },
          "centroid": {
            "type": "Point",
            "coordinates": [
              132.1258,
              31.7311
            ]
          },
          "polygon": {
            "type": "Polygon",
            "coordinates": [
              [
                [
                  132.1452,
                  31.6198
                ],
                [
                  132.1246,
                  31.6215
                ],
                [
                  132.0773,
                  31.6275
                ],
                [
                  132.0401,
                  31.6518
                ],
                [
                  132.011,
                  31.692
                ],
                [
                  132.0039,
                  31.744
                ],
                [
                  132.0131,
                  31.7876
                ],
                [
                  132.0408,
                  31.8226
                ],
                [
                  132.0822,
                  31.8413
                ],
                [
                  132.1439,
                  31.8418
                ],
                [
                  132.1963,
                  31.8207
                ],
                [
                  132.2249,
                  31.7962
                ],
                [
                  132.2424,
                  31.7605
                ],
                [
                  132.2458,
                  31.736
                ],
                [
                  132.2471,
                  31.6987
                ],
                [
                  132.2372,
                  31.6694
                ],
                [
                  132.2164,
                  31.6459
                ],
                [
                  132.1764,
                  31.625
                ],
                [
                  132.1452,
                  31.6198
                ]
              ]
            ]
          }
        }
      ],
      "forecastPath": {
        "type": "LineString",
        "coordinates": [
          [
            132.2388,
            31.6216
          ],
          [
            132.1258,
            31.7311
          ]
        ]
      },
      "profile": {
        "tz": "Asia/Shanghai"
      }
    }
  ]
}
© 2026 Xweather (opens in a new tab)Terms of Service (opens in a new tab)Privacy Policy (opens in a new tab)