{"openapi":"3.1.0","info":{"title":"DTN Tropical Cyclone API","description":"# Summary\nDTN's Tropical Cyclone API provides geospatial data for active tropical cyclones,\nincluding past tracks, current positions, forecast tracks and error cones,\nforecast wind radii and swaths, and aircraft reconnaissance from DTN and\ngovernment agency sources.\n\n# Responses\n## TropicalResponse\nAll endpoints return data as a \"TropicalResponse\" model.\n\n```json\n{\n\t\"url\": \"/cyclones\", # URL requested\n\t\"cycloneCount\": 1, # Number of cyclones returned in the response\n\t\"data\": [TropicalFeatureCollection] # Array of TropicalFeatureCollection objects\n}\n```\n## TropicalFeatureCollection\nA TropicalFeatureCollection is a [rfc7946](https://datatracker.ietf.org/doc/html/rfc7946) compliant GeoJson Feature Collection. \nData for each active storm will be held in its own Feature Collection. The data is held inside the list of Features.\n```json\n{\n\t\"type\": \"FeatureCollection\",\n\t\"metadata\": {\n\t\t\"stormName\": \"Ryan\", # Name of the storm that this feature collection contains data for\n\t\t\"source\": \"DTN\", # Name of the organization that issued the advisory\n\t\t\"stormNum\": \"20S\",\n\t\t\"stormId\": \"101\", # Unique id of storm\n\t\t\"advisoryDateTime\": \"2020-08-01T00:00:00Z\", # Date and time of the advisory\n\t},\n\t\"features\": [TropicalFeature] # Array of GeoJson Feature objects\n}\n```\n## TropicalFeature\nA TropicalFeature is a [rfc7946](https://datatracker.ietf.org/doc/html/rfc7946) compliant GeoJson Feature. \n\nEach Feature contains a property \"stormElement\" which describes the type of data this feature represents.\n```json\n{\n\t\"type\": \"Feature\",\n\t\"properties\": {\n\t\t\"stormElement\": \"OBSERVED_POSITION\",\n\t\t...\n\t},\n\t\"geometry\": {\n\t\t\"type\": \"Point\",\n\t\t\"coordinates\": [1, 1]\n\t}\n}\n```\n\"stormElement\" is meant to be used as an enum, where the allowed values are:\n- \"ERROR_CONE\"\n\t- This is the probable path of a tropical cyclone’s center over a certain time period. The cone is based on the spread of the forecast models combined with meteorological expertise. It accounts for the uncertainty in the hurricane's future track.\n\t- geometry type Polygon\n- \"CURRENT_POSITION\"\n\t- Current position of the center (or eye) of the tropical cyclone.\n\t- geometry type Point\n- \"FORECAST_POSITION\"\n\t- Indicates the predicted locations of the tropical cyclone’s center at specific future times.\n\t- geometry type Point\n- \"OBSERVED_POSITION\"\n\t- Observed positions of the tropical cyclone including since inception.\n\t- geometry type Point\n- \"FORECAST_RADII\"\n\t- Radius of the wind field around the center of the tropical cyclone.\n\t- geometry type Polygon\n- \"CURRENT_RADII\"\n\t- Radius of the wind field around the center of the tropical cyclone. Current Radii represents the observed wind field at the tropical cyclones current position.\n\t- geometry type Polygon\n- \"FORECAST_TRACK\"\n\t- Predicted path that the tropical cyclone’s center is expected to follow over a certain period. \n\t- geometry type LineString\n- \"OBSERVED_TRACK\"\n\t- The observed track of the tropical cyclone centers since inception.\n\t- geometry type LineString\n- \"SWATH\"\n\t- Refers to areas affected by the cyclone's winds, showing areas that experienced different wind speeds throughout the tropical cyclone’s future path.\n\t- geometry type Polygon\n- \"RECON_POINT\"\n\t- The current position of the reconnaissance aircraft that is conducting a mission to sample meteorological data from the tropical cyclone.\n\t- geometry type Point\n- \"RECON_TRACK\"\n\t- The observed track of the reconnaissance aircraft that is conducting a mission to sample meteorological data from the tropical cyclone.\n\t- geometry type LineString\n- \"MODEL_POINT\"\n\t- Specific locations along the predicted path of a tropical cyclone, as determined by various forecast models. These points represent the projected positions of the tropical cyclone’s center at different future times. \n\t- geometry type Point\n- \"MODEL_TRACK\"\n\t- The predicted path that a storm's center is expected to follow over a certain time period, as determined by various forecast models.\n\t- geometry type LineString\n- \"ERROR_CONE_BBOX\"\n\t- A rectangular bounding box calculated by the API that includes the extent of the error cone.\n\t- geometry type Polygon\n- \"ESTIMATED_POSITION\"\n\t- The position of an Invest as Identified by the National Hurricane Center (NHC) in the Automated Tropical Cyclone Forecasting System (ATCF). Since Invests do not have well defined centers, the NHC and other agencies provide the best estimate Invest position in its early development stages.\n\t- geometry type Polygon\n\n\n# Data Sources\n## DTN\nNon agency endpoints will return advisory data from DTN.\n## Agency\nAgency endpoints will return data from the following government agencies: \n### NHC\n[https://www.nhc.noaa.gov/](https://www.nhc.noaa.gov/)\n\nThe National Hurricane Center (NHC) is a division of the National Weather Service (NWS) under NOAA. It is responsible for tracking and forecasting tropical cyclones in the Atlantic Basin and eastern Pacific Ocean.\n\n### JTWC\n[https://www.metoc.navy.mil/jtwc/jtwc.html](https://www.metoc.navy.mil/jtwc/jtwc.html)\n\nThe Joint Typhoon Warning Center (JTWC) is a joint United States Navy, Air Force, and National Oceanic and Atmospheric Administration (NOAA) organization that provides tropical cyclone warnings and advisories for the Western Pacific and Indian Ocean regions.\n\n### CPHC\n[https://www.weather.gov/cphc/](https://www.weather.gov/cphc/)\n\nThe Central Pacific Hurricane Center (CPHC) is a branch of the National Weather Service (NWS) that provides forecasts, warnings, and analyses of tropical cyclones in the Central Pacific Basin.\n\n### BOM\n[http://www.bom.gov.au/](http://www.bom.gov.au/)\n\nThe Bureau of Meteorology (BOM) is Australia's national weather, water, and climate agency. It provides weather forecasts, warnings, and analyses to support decision-making by the community, industry, and government.","version":"1.0.6"},"servers":[{"url":"https://tropical.api.dtn.com"}],"paths":{"/v1/cyclones":{"get":{"tags":["DTN"],"summary":"Active Storms Tracks And Cones","description":"Array of FeatureCollection Objects, Contains Error Cone, Observed Positions, Forecast Positions.\n\n**Data returned from this endpoint contains data from DTN advisories ONLY**\n\nGeoJSON Properties:\n\n* **stormElement** ***(string)***: Type of storm element (e.g., FORECAST_POSITION, OBSERVED_POSITION).\n* **forecastHour** ***(integer)***: Forecast hour for the data (applicable for FORECAST_POSITION elements).\n* **windSpeedKnots** ***(float)***: Wind speed in knots.\n* **windGustKnots** ***(float)***: Wind gust in knots.\n* **movementSpeedKnots** ***(float)***: Movement speed of the storm in knots.\n* **movementHeadingDeg** ***(integer)***: Movement heading of the storm in degrees (clockwise from north).\n* **category** ***(integer)***: Storm category (Saffir-Simpson Hurricane Wind Scale).\n* **stage** ***(string)***: Storm stage (TF - Tropical Feature, TD - Tropical Depression, TS - Tropical Storm, and HU - Hurricane).\n* **minCentralPressureMb** ***(integer)***: Minimum central pressure of the storm in millibars.\n* **validDateTime** ***(string)***: Date and time when the data is valid in UTC format (YYYY-MM-DDTHH:MM:SSZ).\n\"\"\"","operationId":"active_storms_tracks_and_cones_v1_cyclones_get","security":[{"clientCredentials":[]}],"parameters":[{"name":"stormName","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by name of storm","title":"Stormname"},"description":"Optional: Filter results by name of storm"},{"name":"stormNum","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by number of storm","title":"Stormnum"},"description":"Optional: Filter results by number of storm"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TropicalResponse"},"example":"{\"url\": \"http:/tropical.api.dtn.com/v1/cyclones?stormName=Leepi\", \"cycloneCount\": 1, \"data\": [{\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_POSITION\", \"forecastHour\": 12, \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 18.0, \"movementHeadingDeg\": 45, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-06T06:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [149.5, 37.2]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_POSITION\", \"forecastHour\": 24, \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 22.0, \"movementHeadingDeg\": 50, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-06T18:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [152.8, 39.6]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_POSITION\", \"forecastHour\": 36, \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-07T06:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [157.4, 42.4]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 12.0, \"movementHeadingDeg\": 350, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-04T12:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.7, 29.7]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 25.0, \"windGustKnots\": 35.0, \"movementSpeedKnots\": 15.0, \"movementHeadingDeg\": 355, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-04T18:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.5, 31.2]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 25.0, \"windGustKnots\": 35.0, \"movementSpeedKnots\": 12.0, \"movementHeadingDeg\": 350, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-05T00:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.0, 32.4]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 7.0, \"movementHeadingDeg\": 355, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-05T06:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [145.8, 33.1]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 8.0, \"movementHeadingDeg\": 10, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-05T12:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.0, 33.9]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_POSITION\", \"windSpeedKnots\": 35.0, \"windGustKnots\": 45.0, \"movementSpeedKnots\": 13.0, \"movementHeadingDeg\": 35, \"category\": 0, \"stage\": \"TS\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-05T18:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.9, 35.0]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"ERROR_CONE\", \"forecastHour\": 24, \"validDateTime\": \"2024-09-05T21:00:00Z\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[146.93943, 34.73553], [146.94869, 34.73877], [146.96102, 34.74251], [146.97495, 34.74688], [146.98968, 34.75195], [147.00471, 34.75775], [147.03171, 34.76825], [147.05962, 34.78034], [147.08869, 34.79376], [147.11876, 34.8087], [147.14998, 34.82498], [147.18248, 34.84248], [147.21373, 34.86123], [147.24398, 34.88098], [147.27373, 34.90123], [147.30323, 34.92173], [147.33273, 34.94223], [147.36223, 34.96273], [147.39173, 34.98323], [147.42098, 35.00398], [147.44998, 35.02498], [147.47898, 35.04598], [147.50823, 35.06673], [147.53773, 35.08723], [147.56698, 35.10798], [147.59598, 35.12898], [147.62497, 35.14998], [147.65397, 35.17098], [147.68297, 35.19198], [147.71222, 35.21273], [147.74172, 35.23323], [147.77097, 35.25398], [147.79997, 35.27498], [147.82897, 35.29598], [147.85822, 35.31673], [147.88772, 35.33723], [147.91697, 35.35798], [147.94597, 35.37898], [147.97497, 35.39998], [148.00397, 35.42098], [148.03297, 35.44198], [148.06222, 35.46273], [148.09172, 35.48323], [148.12122, 35.50373], [148.15072, 35.52423], [148.18022, 35.54473], [148.20997, 35.56498], [148.23997, 35.58498], [148.26972, 35.60523], [148.29922, 35.62573], [148.32872, 35.64623], [148.35822, 35.66673], [148.38772, 35.68723], [148.41697, 35.70798], [148.44597, 35.72897], [148.47497, 35.74997], [148.50397, 35.77097], [148.53297, 35.79197], [148.56222, 35.81272], [148.59172, 35.83322], [148.62122, 35.85372], [148.65072, 35.87422], [148.68022, 35.89472], [148.70997, 35.91497], [148.73997, 35.93497], [148.76997, 35.95497], [148.79997, 35.97497], [148.82997, 35.99497], [148.85997, 36.01497], [148.88997, 36.03497], [148.91997, 36.05497], [148.94997, 36.07497], [148.97997, 36.09497], [149.00997, 36.11497], [149.03997, 36.13497], [149.06997, 36.15497], [149.09997, 36.17497], [149.12997, 36.19497], [149.15997, 36.21497], [149.18997, 36.23497], [149.21997, 36.25497], [149.24997, 36.27497], [149.27997, 36.29497], [149.30997, 36.31497], [149.33997, 36.33497], [149.36997, 36.35497], [149.39997, 36.37497], [149.42997, 36.39497], [149.45997, 36.41497], [149.48997, 36.43497], [149.51996, 36.45497], [149.54996, 36.47497], [149.57996, 36.49497], [149.60996, 36.51497], [149.63996, 36.53497], [149.66996, 36.55497], [149.69996, 36.57497], [149.72996, 36.59497], [149.76021, 36.61472], [149.79071, 36.63422], [149.82121, 36.65372], [149.85171, 36.67322], [149.88221, 36.69272], [149.91296, 36.71197], [149.94396, 36.73097], [149.97496, 36.74997], [150.00596, 36.76897], [150.03696, 36.78797], [150.06771, 36.80722], [150.09821, 36.82672], [150.12871, 36.84622], [150.15921, 36.86572], [150.18971, 36.88522], [150.21996, 36.90497], [150.24996, 36.92497], [150.27996, 36.94497], [150.31021, 36.96472], [150.34071, 36.98422], [150.37121, 37.00372], [150.40171, 37.02322], [150.43221, 37.04272], [150.46296, 37.06197], [150.49396, 37.08097], [150.52496, 37.09997], [150.55596, 37.11897], [150.58696, 37.13797], [150.61771, 37.15722], [150.64821, 37.17672], [150.67871, 37.19622], [150.70946, 37.21547], [150.74046, 37.23447], [150.77121, 37.25372], [150.80171, 37.27322], [150.83221, 37.29272], [150.86296, 37.31197], [150.89396, 37.33097], [150.92496, 37.34997], [150.95621, 37.36872], [150.98771, 37.38722], [151.01896, 37.40597], [151.04996, 37.42497], [151.08096, 37.44397], [151.11221, 37.46272], [151.14371, 37.48122], [151.17496, 37.49997], [151.20621, 37.51872], [151.23771, 37.53722], [151.26896, 37.55597], [151.29996, 37.57497], [151.33096, 37.59397], [151.36221, 37.61271], [151.3937, 37.63121], [151.42495, 37.64996], [151.4562, 37.66871], [151.4877, 37.68721], [151.51895, 37.70596], [151.54995, 37.72496], [151.58095, 37.74396], [151.6122, 37.76271], [151.6437, 37.78121], [151.67495, 37.79996], [151.7062, 37.81871], [151.7377, 37.83721], [151.76895, 37.85596], [151.8002, 37.87471], [151.8317, 37.89321], [151.86345, 37.91146], [151.89545, 37.92946], [151.9272, 37.94771], [151.95895, 37.96596], [151.99095, 37.98396], [152.0227, 38.00221], [152.05445, 38.02046], [152.08645, 38.03846], [152.1182, 38.05671], [152.1497, 38.07521], [152.18095, 38.09396], [152.2122, 38.11271], [152.2437, 38.13121], [152.27495, 38.14996], [152.3062, 38.16871], [152.3377, 38.18721], [152.36895, 38.20596], [152.4002, 38.22471], [152.4317, 38.24321], [152.46345, 38.26146], [152.4957, 38.27921], [152.52795, 38.29696], [152.5602, 38.31471], [152.5927, 38.33221], [152.62495, 38.34996], [152.6572, 38.36771], [152.6897, 38.38521], [152.72195, 38.40296], [152.7542, 38.42071], [152.78645, 38.43846], [152.8182, 38.45671], [152.84995, 38.47496], [152.8817, 38.49321], [152.91345, 38.51146], [152.9457, 38.52921], [152.97795, 38.54696], [153.0102, 38.56471], [153.0427, 38.58221], [153.07495, 38.59996], [153.1072, 38.61771], [153.1397, 38.63521], [153.17195, 38.65296], [153.2042, 38.67071], [153.23645, 38.68846], [153.2682, 38.70671], [153.29994, 38.72496], [153.33169, 38.74321], [153.36344, 38.76146], [153.39569, 38.77921], [153.42794, 38.79696], [153.46019, 38.81471], [153.49294, 38.83196], [153.52569, 38.84921], [153.55844, 38.86646], [153.59144, 38.88346], [153.62419, 38.90071], [153.65694, 38.91796], [153.68969, 38.93521], [153.72194, 38.95296], [153.75419, 38.97071], [153.78644, 38.98846], [153.81819, 39.00671], [153.84994, 39.02496], [153.88169, 39.04321], [153.91344, 39.06146], [153.94569, 39.07921], [153.97794, 39.09696], [154.01019, 39.11471], [154.04294, 39.13196], [154.07569, 39.14921], [154.10844, 39.16646], [154.14169, 39.18321], [154.17494, 39.19996], [154.20819, 39.21671], [154.24169, 39.23321], [154.27494, 39.24996], [154.30819, 39.26671], [154.34144, 39.28346], [154.37419, 39.30071], [154.40694, 39.31796], [154.43969, 39.33521], [154.47194, 39.35296], [154.50419, 39.37071], [154.53644, 39.38846], [154.56819, 39.40671], [154.59994, 39.42496], [154.63169, 39.44321], [154.66344, 39.46146], [154.69569, 39.47921], [154.72794, 39.49695], [154.76019, 39.5147], [154.79294, 39.53195], [154.82569, 39.5492], [154.85844, 39.56645], [154.89169, 39.5832], [154.92494, 39.59995], [154.95819, 39.6167], [154.99169, 39.6332], [155.02494, 39.64995], [155.05819, 39.6667], [155.09169, 39.6832], [155.12494, 39.69995], [155.15819, 39.7167], [155.19168, 39.7332], [155.22493, 39.74995], [155.25818, 39.7667], [155.29168, 39.7832], [155.32493, 39.79995], [155.35818, 39.8167], [155.39168, 39.8332], [155.42493, 39.84995], [155.45818, 39.8667], [155.49168, 39.8832], [155.52493, 39.89995], [155.55818, 39.9167], [155.59168, 39.9332], [155.62493, 39.94995], [155.65818, 39.9667], [155.69168, 39.9832], [155.72493, 39.99995], [155.75818, 40.0167], [155.79168, 40.0332], [155.82493, 40.04995], [155.85818, 40.0667], [155.89168, 40.0832], [155.92493, 40.09995], [155.95818, 40.1167], [155.99168, 40.1332], [156.02493, 40.14995], [156.05818, 40.1667], [156.09168, 40.1832], [156.12493, 40.19995], [156.15818, 40.2167], [156.19168, 40.2332], [156.22493, 40.24995], [156.25818, 40.2667], [156.29168, 40.2832], [156.32493, 40.29995], [156.35818, 40.3167], [156.39168, 40.3332], [156.42493, 40.34995], [156.45818, 40.3667], [156.49168, 40.3832], [156.52493, 40.39995], [156.55818, 40.4167], [156.59168, 40.4332], [156.62493, 40.44995], [156.65818, 40.4667], [156.69168, 40.4832], [156.72493, 40.49995], [156.75818, 40.5167], [156.79168, 40.5332], [156.82493, 40.54995], [156.85818, 40.5667], [156.89168, 40.5832], [156.92493, 40.59995], [156.95818, 40.6167], [156.99168, 40.6332], [157.02493, 40.64995], [157.05817, 40.6667], [157.09167, 40.6832], [157.12492, 40.69995], [157.15817, 40.7167], [157.19167, 40.7332], [157.22517, 40.7497], [157.25892, 40.76595], [157.29292, 40.78195], [157.32692, 40.79795], [157.36117, 40.8137], [157.39567, 40.8292], [157.43017, 40.8447], [157.46492, 40.85995], [157.49992, 40.87495], [157.53492, 40.88995], [157.56967, 40.9052], [157.60417, 40.9207], [157.63867, 40.9362], [157.67292, 40.95195], [157.70692, 40.96795], [157.74092, 40.98395], [157.77467, 41.0002], [157.80817, 41.0167], [157.84167, 41.0332], [157.87492, 41.04995], [157.90817, 41.0667], [157.94167, 41.0832], [157.97492, 41.09995], [158.00817, 41.1167], [158.04167, 41.1332], [158.07492, 41.14995], [158.10817, 41.1667], [158.14167, 41.1832], [158.17492, 41.19995], [158.20817, 41.2167], [158.24167, 41.2332], [158.27492, 41.24995], [158.30817, 41.2667], [158.34142, 41.28345], [158.37417, 41.3007], [158.40692, 41.31795], [158.43967, 41.3352], [158.47192, 41.35295], [158.50392, 41.37095], [158.53567, 41.38919], [158.56667, 41.40819], [158.59717, 41.42769], [158.62717, 41.44769], [158.65667, 41.46819], [158.68592, 41.48894], [158.71442, 41.51044], [158.74217, 41.53269], [158.76917, 41.55569], [158.79542, 41.57944], [158.82092, 41.60394], [158.84592, 41.62894], [158.87042, 41.65444], [158.89417, 41.68069], [158.91717, 41.70769], [158.93941, 41.73544], [158.96091, 41.76394], [158.98141, 41.79344], [159.00141, 41.82344], [159.02091, 41.85394], [159.03966, 41.88519], [159.05741, 41.91744], [159.07391, 41.95094], [159.08941, 41.98544], [159.10366, 42.02119], [159.11641, 42.05844], [159.12791, 42.09694], [159.13841, 42.13644], [159.14741, 42.17744], [159.15466, 42.22019], [159.16016, 42.26419], [159.16391, 42.30894], [159.16616, 42.35419], [159.16691, 42.39994], [159.16616, 42.44569], [159.16391, 42.49094], [159.16016, 42.53569], [159.15466, 42.57969], [159.14741, 42.62244], [159.13866, 42.66369], [159.12866, 42.70369], [159.11766, 42.74269], [159.10541, 42.78044], [159.09166, 42.81669], [159.07666, 42.85169], [159.06066, 42.88569], [159.04341, 42.91844], [159.02516, 42.95019], [159.00616, 42.98119], [158.98616, 43.01119], [158.96516, 43.04019], [158.94316, 43.06819], [158.92042, 43.09544], [158.89717, 43.12219], [158.87342, 43.14844], [158.84892, 43.17394], [158.82392, 43.19894], [158.79842, 43.22344], [158.77242, 43.24744], [158.74617, 43.27118], [158.71942, 43.29443], [158.69217, 43.31718], [158.66442, 43.33943], [158.63592, 43.36093], [158.60667, 43.38168], [158.57717, 43.40218], [158.54717, 43.42218], [158.51642, 43.44143], [158.48492, 43.45993], [158.45267, 43.47768], [158.41992, 43.49493], [158.38642, 43.51143], [158.35217, 43.52718], [158.31767, 43.54268], [158.28267, 43.55768], [158.24667, 43.57168], [158.20992, 43.58493], [158.17267, 43.59768], [158.13492, 43.60993], [158.09667, 43.62168], [158.05792, 43.63293], [158.01892, 43.64393], [157.97942, 43.65443], [157.93892, 43.66393], [157.89767, 43.67268], [157.85592, 43.68093], [157.81367, 43.68868], [157.77092, 43.69593], [157.72742, 43.70243], [157.68292, 43.70793], [157.63742, 43.71243], [157.59092, 43.71593], [157.54367, 43.71868], [157.49592, 43.72093], [157.44792, 43.72243], [157.39992, 43.72293], [157.35192, 43.72243], [157.30392, 43.72093], [157.25617, 43.71868], [157.20892, 43.71593], [157.16242, 43.71243], [157.11692, 43.70793], [157.07242, 43.70243], [157.02893, 43.69593], [156.98618, 43.68868], [156.94393, 43.68093], [156.90218, 43.67268], [156.86093, 43.66393], [156.82043, 43.65443], [156.78093, 43.64393], [156.74193, 43.63293], [156.70318, 43.62168], [156.66493, 43.60993], [156.62718, 43.59768], [156.58993, 43.58493], [156.55318, 43.57168], [156.51718, 43.55768], [156.48218, 43.54268], [156.44768, 43.52718], [156.41343, 43.51143], [156.37993, 43.49493], [156.34718, 43.47768], [156.31493, 43.45993], [156.28318, 43.44168], [156.25193, 43.42293], [156.22118, 43.40368], [156.19068, 43.38418], [156.16018, 43.36468], [156.12993, 43.34493], [156.09993, 43.32493], [156.06993, 43.30493], [156.03993, 43.28493], [156.00993, 43.26493], [155.97993, 43.24494], [155.94993, 43.22494], [155.91993, 43.20494], [155.88993, 43.18494], [155.85993, 43.16494], [155.83018, 43.14469], [155.80068, 43.12419], [155.77118, 43.10369], [155.74168, 43.08319], [155.71218, 43.06269], [155.68293, 43.04194], [155.65393, 43.02094], [155.62493, 42.99994], [155.59593, 42.97894], [155.56693, 42.95794], [155.53768, 42.93719], [155.50818, 42.91669], [155.47868, 42.89619], [155.44918, 42.87569], [155.41968, 42.85519], [155.38993, 42.83494], [155.35993, 42.81494], [155.32993, 42.79494], [155.29993, 42.77494], [155.26993, 42.75494], [155.23993, 42.73494], [155.20993, 42.71494], [155.18018, 42.69469], [155.15069, 42.67419], [155.12119, 42.65369], [155.09169, 42.63319], [155.06219, 42.61269], [155.03294, 42.59194], [155.00394, 42.57094], [154.97494, 42.54994], [154.94594, 42.52894], [154.91694, 42.50794], [154.88769, 42.48719], [154.85819, 42.46669], [154.82894, 42.44594], [154.79994, 42.42494], [154.77094, 42.40394], [154.74169, 42.38319], [154.71219, 42.36269], [154.68294, 42.34194], [154.65394, 42.32094], [154.62494, 42.29994], [154.59594, 42.27894], [154.56694, 42.25794], [154.53769, 42.23719], [154.50819, 42.21669], [154.47894, 42.19594], [154.44994, 42.17494], [154.42094, 42.15394], [154.39169, 42.13319], [154.36219, 42.11269], [154.33294, 42.09194], [154.30394, 42.07094], [154.27494, 42.04994], [154.24594, 42.02894], [154.21694, 42.00794], [154.18769, 41.98719], [154.15819, 41.96669], [154.12894, 41.94594], [154.09994, 41.92494], [154.07094, 41.90394], [154.04169, 41.88319], [154.01219, 41.86269], [153.98294, 41.84194], [153.95394, 41.82094], [153.92519, 41.79969], [153.89669, 41.77819], [153.86819, 41.75669], [153.83944, 41.73544], [153.81044, 41.71444], [153.78169, 41.69319], [153.75319, 41.67169], [153.72494, 41.64994], [153.69669, 41.62819], [153.66819, 41.60669], [153.63944, 41.58544], [153.61044, 41.56444], [153.58169, 41.54319], [153.55319, 41.52169], [153.52494, 41.49994], [153.49669, 41.47819], [153.46819, 41.45669], [153.43944, 41.43544], [153.41044, 41.41444], [153.38169, 41.39319], [153.35319, 41.3717], [153.32494, 41.34995], [153.29669, 41.3282], [153.2682, 41.3067], [153.23945, 41.28545], [153.21045, 41.26445], [153.1817, 41.2432], [153.1532, 41.2217], [153.12495, 41.19995], [153.0967, 41.1782], [153.06845, 41.15645], [153.0402, 41.1347], [153.0117, 41.1132], [152.98345, 41.09145], [152.95545, 41.06945], [152.9277, 41.0472], [152.89995, 41.02495], [152.8722, 41.0027], [152.84445, 40.98045], [152.81645, 40.95845], [152.7882, 40.9367], [152.7597, 40.9152], [152.73145, 40.89345], [152.7032, 40.8717], [152.67495, 40.84995], [152.6467, 40.8282], [152.61845, 40.80645], [152.5902, 40.7847], [152.5617, 40.7632], [152.53345, 40.74145], [152.50545, 40.71945], [152.4777, 40.6972], [152.44995, 40.67495], [152.4222, 40.6527], [152.39445, 40.63045], [152.3667, 40.6082], [152.33895, 40.58595], [152.31095, 40.56395], [152.2832, 40.5417], [152.25545, 40.51945], [152.2277, 40.4972], [152.19995, 40.47495], [152.1722, 40.4527], [152.14445, 40.43045], [152.1167, 40.4082], [152.08895, 40.38595], [152.06095, 40.36395], [152.0332, 40.3417], [152.00545, 40.31945], [151.9777, 40.2972], [151.94995, 40.27495], [151.9222, 40.2527], [151.89445, 40.23045], [151.8667, 40.2082], [151.83895, 40.18595], [151.8112, 40.1637], [151.78395, 40.14095], [151.7567, 40.1182], [151.72945, 40.09545], [151.7022, 40.0727], [151.67495, 40.04995], [151.6477, 40.0272], [151.62045, 40.00445], [151.5932, 39.9817], [151.56595, 39.95895], [151.5387, 39.9362], [151.5112, 39.9137], [151.48395, 39.89095], [151.4567, 39.8682], [151.42945, 39.84545], [151.4022, 39.8227], [151.37496, 39.79995], [151.34771, 39.7772], [151.32046, 39.75445], [151.29321, 39.7317], [151.26596, 39.70895], [151.23871, 39.6862], [151.21121, 39.6637], [151.18396, 39.64095], [151.15696, 39.61795], [151.13021, 39.5947], [151.10371, 39.5712], [151.07746, 39.54745], [151.05121, 39.5237], [151.02496, 39.49995], [150.99871, 39.47621], [150.97246, 39.45246], [150.94621, 39.42871], [150.91971, 39.40521], [150.89296, 39.38196], [150.86596, 39.35896], [150.83871, 39.33621], [150.81121, 39.31371], [150.78396, 39.29096], [150.75696, 39.26796], [150.73021, 39.24471], [150.70371, 39.22121], [150.67746, 39.19746], [150.65121, 39.17371], [150.62496, 39.14996], [150.59871, 39.12621], [150.57246, 39.10246], [150.54621, 39.07871], [150.51971, 39.05521], [150.49296, 39.03196], [150.46596, 39.00896], [150.43871, 38.98621], [150.41121, 38.96371], [150.38396, 38.94096], [150.35696, 38.91796], [150.33021, 38.89471], [150.30371, 38.87121], [150.27746, 38.84746], [150.25146, 38.82346], [150.22571, 38.79921], [150.20021, 38.77471], [150.17496, 38.74996], [150.14996, 38.72496], [150.12496, 38.69996], [150.09971, 38.67521], [150.07421, 38.65071], [150.04846, 38.62646], [150.02246, 38.60246], [149.99621, 38.57871], [149.96971, 38.55521], [149.94296, 38.53196], [149.91596, 38.50896], [149.88871, 38.48621], [149.86121, 38.46371], [149.83396, 38.44096], [149.80696, 38.41796], [149.78021, 38.39471], [149.75371, 38.37121], [149.72746, 38.34746], [149.70146, 38.32346], [149.67571, 38.29921], [149.65021, 38.27471], [149.62496, 38.24996], [149.59996, 38.22496], [149.57496, 38.19996], [149.54996, 38.17496], [149.52496, 38.14996], [149.49997, 38.12496], [149.47497, 38.09996], [149.44997, 38.07496], [149.42497, 38.04996], [149.39997, 38.02496], [149.37497, 37.99996], [149.34997, 37.97496], [149.32497, 37.94996], [149.29997, 37.92496], [149.27497, 37.89996], [149.24997, 37.87496], [149.22497, 37.84996], [149.19997, 37.82496], [149.17497, 37.79996], [149.14997, 37.77496], [149.12497, 37.74996], [149.09997, 37.72496], [149.07497, 37.69996], [149.04997, 37.67496], [149.02497, 37.64996], [148.99997, 37.62496], [148.97497, 37.59997], [148.94997, 37.57497], [148.92497, 37.54997], [148.89997, 37.52497], [148.87497, 37.49997], [148.84997, 37.47497], [148.82497, 37.44997], [148.79997, 37.42497], [148.77497, 37.39997], [148.74997, 37.37497], [148.72497, 37.34997], [148.69997, 37.32497], [148.67497, 37.29997], [148.64997, 37.27497], [148.62497, 37.24997], [148.59997, 37.22497], [148.57497, 37.19997], [148.54997, 37.17497], [148.52497, 37.14997], [148.49997, 37.12497], [148.47497, 37.09997], [148.44997, 37.07497], [148.42497, 37.04997], [148.39997, 37.02497], [148.37497, 36.99997], [148.34997, 36.97497], [148.32497, 36.94997], [148.29997, 36.92497], [148.27497, 36.89997], [148.24997, 36.87497], [148.22497, 36.84997], [148.19997, 36.82497], [148.17497, 36.79997], [148.14997, 36.77497], [148.12497, 36.74997], [148.09997, 36.72497], [148.07497, 36.69997], [148.04997, 36.67497], [148.02497, 36.64997], [147.99997, 36.62497], [147.97497, 36.59997], [147.94997, 36.57497], [147.92497, 36.54997], [147.89997, 36.52497], [147.87497, 36.49997], [147.84997, 36.47497], [147.82497, 36.44997], [147.79997, 36.42497], [147.77497, 36.39997], [147.74997, 36.37497], [147.72497, 36.34997], [147.69997, 36.32497], [147.67497, 36.29997], [147.64997, 36.27497], [147.62522, 36.24972], [147.60073, 36.22422], [147.57648, 36.19847], [147.55248, 36.17247], [147.52873, 36.14622], [147.50523, 36.11972], [147.48198, 36.09297], [147.45898, 36.06597], [147.43623, 36.03872], [147.41373, 36.01122], [147.39098, 35.98397], [147.36798, 35.95697], [147.34473, 35.93022], [147.32123, 35.90372], [147.29748, 35.87747], [147.27348, 35.85147], [147.24923, 35.82572], [147.22473, 35.80022], [147.19998, 35.77497], [147.17498, 35.74997], [147.14998, 35.72497], [147.12498, 35.69998], [147.09998, 35.67498], [147.07498, 35.64998], [147.04998, 35.62498], [147.02498, 35.59998], [146.99998, 35.57498], [146.97523, 35.54973], [146.95073, 35.52423], [146.92648, 35.49848], [146.90248, 35.47248], [146.87873, 35.44623], [146.85523, 35.41973], [146.83198, 35.39298], [146.80898, 35.36598], [146.78623, 35.33873], [146.76398, 35.31098], [146.74198, 35.28298], [146.72048, 35.25448], [146.69973, 35.22523], [146.68023, 35.19523], [146.66248, 35.16448], [146.64698, 35.13298], [146.63423, 35.10073], [146.62473, 35.06773], [146.61923, 35.03423], [146.61773, 35.00073], [146.62048, 34.96748], [146.62606, 34.93606], [146.6345, 34.907], [146.64532, 34.88032], [146.65807, 34.85607], [146.6648, 34.84203], [146.6726, 34.82885], [146.68118, 34.8169], [146.68972, 34.80638], [146.93943, 34.73553]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"ERROR_CONE_BBOX\", \"forecastHour\": 24, \"validDateTime\": \"2024-09-05T21:00:00Z\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[146.61773, 34.73553], [159.16691, 34.73553], [159.16691, 43.72293], [146.61773, 43.72293], [146.61773, 34.73553]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_TRACK\"}, \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[147.6, 35.6], [147.81585, 35.78637], [148.02296, 35.96593], [148.22133, 36.13867], [148.41852, 36.30926], [148.62207, 36.48237], [148.832, 36.658], [149.0483, 36.83615], [149.27096, 37.01681], [149.5, 37.2], [149.73541, 37.3857], [149.97719, 37.57393], [150.22533, 37.76467], [150.47985, 37.95793], [150.74074, 38.1537], [151.008, 38.352], [151.28315, 38.55296], [151.5677, 38.75674], [151.86167, 38.96333], [152.16504, 39.17274], [152.47781, 39.38496], [152.8, 39.6], [153.13159, 39.81785], [153.47259, 40.03852], [153.823, 40.262], [154.18281, 40.4883], [154.55204, 40.71741], [154.93067, 40.94933], [155.3187, 41.18407], [155.71615, 41.42163], [156.123, 41.662], [156.53926, 41.90519], [156.96493, 42.15119], [157.4, 42.4]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_TRACK\"}, \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[146.7, 29.7], [146.67127, 29.79262], [146.63793, 29.95929], [146.6, 30.2], [146.55747, 30.51476], [146.51493, 30.88507], [146.5, 31.2], [146.51726, 31.44104], [146.55024, 31.61915], [146.5, 31.8], [146.35007, 31.99453], [146.1281, 32.20001], [146.0, 32.4], [145.99343, 32.59177], [146.08118, 32.76969], [146.1, 32.9], [146.02268, 32.97708], [145.87372, 33.01521], [145.8, 33.1], [145.82602, 33.24574], [145.93208, 33.43908], [146.0, 33.6], [146.0101, 33.71517], [145.97827, 33.79478], [146.0, 33.9], [146.09119, 34.04103], [146.24273, 34.21448], [146.4, 34.4], [146.55388, 34.5942], [146.70977, 34.79613], [146.9, 35.0], [147.12996, 35.20486], [147.37541, 35.40681], [147.6, 35.6]]}}], \"metadata\": {\"stormName\": \"Leepi\", \"source\": \"DTN\", \"advisoryDateTime\": \"2024-09-05T21:00:00Z\", \"stormNum\": \"20S\", \"stormId\": 101}}]}"}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/agency-cyclones":{"get":{"tags":["Agency"],"summary":"Agency Active Storms Tracks And Cones","description":"Array of FeatureCollection Objects, Contains Error Cone, Observed Positions, Forecast Positions\n\n**Data returned from this endpoint contains data from Agency advisories ONLY**\n\nMutliple Agency sources can be specified in a single query:\n\nhttp://tropical.api.dtn.com/v1/agency-cyclones?source=JTWC&source=NHC\n\nGeoJSON Properties:\n\n* **stormElement** ***(string)***: Type of storm element (e.g., FORECAST_POSITION, OBSERVED_POSITION).\n* **forecastHour** ***(integer)***: Forecast hour for the data (applicable for FORECAST_POSITION elements).\n* **windSpeedKnots** ***(float)***: Wind speed in knots.\n* **windGustKnots** ***(float)***: Wind gust in knots.\n* **movementSpeedKnots** ***(float)***: Movement speed of the storm in knots.\n* **movementHeadingDeg** ***(integer)***: Movement heading of the storm in degrees (clockwise from north).\n* **category** ***(integer)***: Storm category (Saffir-Simpson Hurricane Wind Scale).\n* **stage** ***(string)***: Storm stage (TF - Tropical Feature, TD - Tropical Depression, TS - Tropical Storm, and HU - Hurricane).\n* **minCentralPressureMb** ***(integer)***: Minimum central pressure of the storm in millibars.\n* **validDateTime** ***(string)***: Date and time when the data is valid in UTC format (YYYY-MM-DDTHH:MM:SSZ).\n\"\"\"","operationId":"agency_active_storms_tracks_and_cones_v1_agency_cyclones_get","security":[{"clientCredentials":[]}],"parameters":[{"name":"stormName","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by name of storm","title":"Stormname"},"description":"Optional: Filter results by name of storm"},{"name":"stormNum","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by number of storm","title":"Stormnum"},"description":"Optional: Filter results by number of storm"},{"name":"source","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"description":"Optional: Filter results by source of weather advisories","default":["JTWC","NHC","CPHC","BOM"],"title":"Source"},"description":"Optional: Filter results by source of weather advisories"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TropicalResponse"},"example":"{\"url\": \"http:/tropical.api.dtn.com/v1/agency-cyclones?stormName=Leepi\", \"cycloneCount\": 1, \"data\": [{\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_POSITION\", \"forecastHour\": 12, \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 18.0, \"movementHeadingDeg\": 45, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-06T06:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [149.5, 37.2]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_POSITION\", \"forecastHour\": 24, \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 22.0, \"movementHeadingDeg\": 50, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-06T18:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [152.8, 39.6]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_POSITION\", \"forecastHour\": 36, \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-07T06:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [157.4, 42.4]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 12.0, \"movementHeadingDeg\": 350, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-04T12:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.7, 29.7]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 25.0, \"windGustKnots\": 35.0, \"movementSpeedKnots\": 15.0, \"movementHeadingDeg\": 355, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-04T18:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.5, 31.2]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 25.0, \"windGustKnots\": 35.0, \"movementSpeedKnots\": 12.0, \"movementHeadingDeg\": 350, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-05T00:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.0, 32.4]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 7.0, \"movementHeadingDeg\": 355, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-05T06:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [145.8, 33.1]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_POSITION\", \"windSpeedKnots\": 30.0, \"windGustKnots\": 40.0, \"movementSpeedKnots\": 8.0, \"movementHeadingDeg\": 10, \"category\": 0, \"stage\": \"TD\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-05T12:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.0, 33.9]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_POSITION\", \"windSpeedKnots\": 35.0, \"windGustKnots\": 45.0, \"movementSpeedKnots\": 13.0, \"movementHeadingDeg\": 35, \"category\": 0, \"stage\": \"TS\", \"minCentralPressureMb\": null, \"validDateTime\": \"2024-09-05T18:00:00Z\"}, \"geometry\": {\"type\": \"Point\", \"coordinates\": [146.9, 35.0]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"ERROR_CONE\", \"forecastHour\": 24, \"validDateTime\": \"2024-09-05T21:00:00Z\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[146.93943, 34.73553], [146.94869, 34.73877], [146.96102, 34.74251], [146.97495, 34.74688], [146.98968, 34.75195], [147.00471, 34.75775], [147.03171, 34.76825], [147.05962, 34.78034], [147.08869, 34.79376], [147.11876, 34.8087], [147.14998, 34.82498], [147.18248, 34.84248], [147.21373, 34.86123], [147.24398, 34.88098], [147.27373, 34.90123], [147.30323, 34.92173], [147.33273, 34.94223], [147.36223, 34.96273], [147.39173, 34.98323], [147.42098, 35.00398], [147.44998, 35.02498], [147.47898, 35.04598], [147.50823, 35.06673], [147.53773, 35.08723], [147.56698, 35.10798], [147.59598, 35.12898], [147.62497, 35.14998], [147.65397, 35.17098], [147.68297, 35.19198], [147.71222, 35.21273], [147.74172, 35.23323], [147.77097, 35.25398], [147.79997, 35.27498], [147.82897, 35.29598], [147.85822, 35.31673], [147.88772, 35.33723], [147.91697, 35.35798], [147.94597, 35.37898], [147.97497, 35.39998], [148.00397, 35.42098], [148.03297, 35.44198], [148.06222, 35.46273], [148.09172, 35.48323], [148.12122, 35.50373], [148.15072, 35.52423], [148.18022, 35.54473], [148.20997, 35.56498], [148.23997, 35.58498], [148.26972, 35.60523], [148.29922, 35.62573], [148.32872, 35.64623], [148.35822, 35.66673], [148.38772, 35.68723], [148.41697, 35.70798], [148.44597, 35.72897], [148.47497, 35.74997], [148.50397, 35.77097], [148.53297, 35.79197], [148.56222, 35.81272], [148.59172, 35.83322], [148.62122, 35.85372], [148.65072, 35.87422], [148.68022, 35.89472], [148.70997, 35.91497], [148.73997, 35.93497], [148.76997, 35.95497], [148.79997, 35.97497], [148.82997, 35.99497], [148.85997, 36.01497], [148.88997, 36.03497], [148.91997, 36.05497], [148.94997, 36.07497], [148.97997, 36.09497], [149.00997, 36.11497], [149.03997, 36.13497], [149.06997, 36.15497], [149.09997, 36.17497], [149.12997, 36.19497], [149.15997, 36.21497], [149.18997, 36.23497], [149.21997, 36.25497], [149.24997, 36.27497], [149.27997, 36.29497], [149.30997, 36.31497], [149.33997, 36.33497], [149.36997, 36.35497], [149.39997, 36.37497], [149.42997, 36.39497], [149.45997, 36.41497], [149.48997, 36.43497], [149.51996, 36.45497], [149.54996, 36.47497], [149.57996, 36.49497], [149.60996, 36.51497], [149.63996, 36.53497], [149.66996, 36.55497], [149.69996, 36.57497], [149.72996, 36.59497], [149.76021, 36.61472], [149.79071, 36.63422], [149.82121, 36.65372], [149.85171, 36.67322], [149.88221, 36.69272], [149.91296, 36.71197], [149.94396, 36.73097], [149.97496, 36.74997], [150.00596, 36.76897], [150.03696, 36.78797], [150.06771, 36.80722], [150.09821, 36.82672], [150.12871, 36.84622], [150.15921, 36.86572], [150.18971, 36.88522], [150.21996, 36.90497], [150.24996, 36.92497], [150.27996, 36.94497], [150.31021, 36.96472], [150.34071, 36.98422], [150.37121, 37.00372], [150.40171, 37.02322], [150.43221, 37.04272], [150.46296, 37.06197], [150.49396, 37.08097], [150.52496, 37.09997], [150.55596, 37.11897], [150.58696, 37.13797], [150.61771, 37.15722], [150.64821, 37.17672], [150.67871, 37.19622], [150.70946, 37.21547], [150.74046, 37.23447], [150.77121, 37.25372], [150.80171, 37.27322], [150.83221, 37.29272], [150.86296, 37.31197], [150.89396, 37.33097], [150.92496, 37.34997], [150.95621, 37.36872], [150.98771, 37.38722], [151.01896, 37.40597], [151.04996, 37.42497], [151.08096, 37.44397], [151.11221, 37.46272], [151.14371, 37.48122], [151.17496, 37.49997], [151.20621, 37.51872], [151.23771, 37.53722], [151.26896, 37.55597], [151.29996, 37.57497], [151.33096, 37.59397], [151.36221, 37.61271], [151.3937, 37.63121], [151.42495, 37.64996], [151.4562, 37.66871], [151.4877, 37.68721], [151.51895, 37.70596], [151.54995, 37.72496], [151.58095, 37.74396], [151.6122, 37.76271], [151.6437, 37.78121], [151.67495, 37.79996], [151.7062, 37.81871], [151.7377, 37.83721], [151.76895, 37.85596], [151.8002, 37.87471], [151.8317, 37.89321], [151.86345, 37.91146], [151.89545, 37.92946], [151.9272, 37.94771], [151.95895, 37.96596], [151.99095, 37.98396], [152.0227, 38.00221], [152.05445, 38.02046], [152.08645, 38.03846], [152.1182, 38.05671], [152.1497, 38.07521], [152.18095, 38.09396], [152.2122, 38.11271], [152.2437, 38.13121], [152.27495, 38.14996], [152.3062, 38.16871], [152.3377, 38.18721], [152.36895, 38.20596], [152.4002, 38.22471], [152.4317, 38.24321], [152.46345, 38.26146], [152.4957, 38.27921], [152.52795, 38.29696], [152.5602, 38.31471], [152.5927, 38.33221], [152.62495, 38.34996], [152.6572, 38.36771], [152.6897, 38.38521], [152.72195, 38.40296], [152.7542, 38.42071], [152.78645, 38.43846], [152.8182, 38.45671], [152.84995, 38.47496], [152.8817, 38.49321], [152.91345, 38.51146], [152.9457, 38.52921], [152.97795, 38.54696], [153.0102, 38.56471], [153.0427, 38.58221], [153.07495, 38.59996], [153.1072, 38.61771], [153.1397, 38.63521], [153.17195, 38.65296], [153.2042, 38.67071], [153.23645, 38.68846], [153.2682, 38.70671], [153.29994, 38.72496], [153.33169, 38.74321], [153.36344, 38.76146], [153.39569, 38.77921], [153.42794, 38.79696], [153.46019, 38.81471], [153.49294, 38.83196], [153.52569, 38.84921], [153.55844, 38.86646], [153.59144, 38.88346], [153.62419, 38.90071], [153.65694, 38.91796], [153.68969, 38.93521], [153.72194, 38.95296], [153.75419, 38.97071], [153.78644, 38.98846], [153.81819, 39.00671], [153.84994, 39.02496], [153.88169, 39.04321], [153.91344, 39.06146], [153.94569, 39.07921], [153.97794, 39.09696], [154.01019, 39.11471], [154.04294, 39.13196], [154.07569, 39.14921], [154.10844, 39.16646], [154.14169, 39.18321], [154.17494, 39.19996], [154.20819, 39.21671], [154.24169, 39.23321], [154.27494, 39.24996], [154.30819, 39.26671], [154.34144, 39.28346], [154.37419, 39.30071], [154.40694, 39.31796], [154.43969, 39.33521], [154.47194, 39.35296], [154.50419, 39.37071], [154.53644, 39.38846], [154.56819, 39.40671], [154.59994, 39.42496], [154.63169, 39.44321], [154.66344, 39.46146], [154.69569, 39.47921], [154.72794, 39.49695], [154.76019, 39.5147], [154.79294, 39.53195], [154.82569, 39.5492], [154.85844, 39.56645], [154.89169, 39.5832], [154.92494, 39.59995], [154.95819, 39.6167], [154.99169, 39.6332], [155.02494, 39.64995], [155.05819, 39.6667], [155.09169, 39.6832], [155.12494, 39.69995], [155.15819, 39.7167], [155.19168, 39.7332], [155.22493, 39.74995], [155.25818, 39.7667], [155.29168, 39.7832], [155.32493, 39.79995], [155.35818, 39.8167], [155.39168, 39.8332], [155.42493, 39.84995], [155.45818, 39.8667], [155.49168, 39.8832], [155.52493, 39.89995], [155.55818, 39.9167], [155.59168, 39.9332], [155.62493, 39.94995], [155.65818, 39.9667], [155.69168, 39.9832], [155.72493, 39.99995], [155.75818, 40.0167], [155.79168, 40.0332], [155.82493, 40.04995], [155.85818, 40.0667], [155.89168, 40.0832], [155.92493, 40.09995], [155.95818, 40.1167], [155.99168, 40.1332], [156.02493, 40.14995], [156.05818, 40.1667], [156.09168, 40.1832], [156.12493, 40.19995], [156.15818, 40.2167], [156.19168, 40.2332], [156.22493, 40.24995], [156.25818, 40.2667], [156.29168, 40.2832], [156.32493, 40.29995], [156.35818, 40.3167], [156.39168, 40.3332], [156.42493, 40.34995], [156.45818, 40.3667], [156.49168, 40.3832], [156.52493, 40.39995], [156.55818, 40.4167], [156.59168, 40.4332], [156.62493, 40.44995], [156.65818, 40.4667], [156.69168, 40.4832], [156.72493, 40.49995], [156.75818, 40.5167], [156.79168, 40.5332], [156.82493, 40.54995], [156.85818, 40.5667], [156.89168, 40.5832], [156.92493, 40.59995], [156.95818, 40.6167], [156.99168, 40.6332], [157.02493, 40.64995], [157.05817, 40.6667], [157.09167, 40.6832], [157.12492, 40.69995], [157.15817, 40.7167], [157.19167, 40.7332], [157.22517, 40.7497], [157.25892, 40.76595], [157.29292, 40.78195], [157.32692, 40.79795], [157.36117, 40.8137], [157.39567, 40.8292], [157.43017, 40.8447], [157.46492, 40.85995], [157.49992, 40.87495], [157.53492, 40.88995], [157.56967, 40.9052], [157.60417, 40.9207], [157.63867, 40.9362], [157.67292, 40.95195], [157.70692, 40.96795], [157.74092, 40.98395], [157.77467, 41.0002], [157.80817, 41.0167], [157.84167, 41.0332], [157.87492, 41.04995], [157.90817, 41.0667], [157.94167, 41.0832], [157.97492, 41.09995], [158.00817, 41.1167], [158.04167, 41.1332], [158.07492, 41.14995], [158.10817, 41.1667], [158.14167, 41.1832], [158.17492, 41.19995], [158.20817, 41.2167], [158.24167, 41.2332], [158.27492, 41.24995], [158.30817, 41.2667], [158.34142, 41.28345], [158.37417, 41.3007], [158.40692, 41.31795], [158.43967, 41.3352], [158.47192, 41.35295], [158.50392, 41.37095], [158.53567, 41.38919], [158.56667, 41.40819], [158.59717, 41.42769], [158.62717, 41.44769], [158.65667, 41.46819], [158.68592, 41.48894], [158.71442, 41.51044], [158.74217, 41.53269], [158.76917, 41.55569], [158.79542, 41.57944], [158.82092, 41.60394], [158.84592, 41.62894], [158.87042, 41.65444], [158.89417, 41.68069], [158.91717, 41.70769], [158.93941, 41.73544], [158.96091, 41.76394], [158.98141, 41.79344], [159.00141, 41.82344], [159.02091, 41.85394], [159.03966, 41.88519], [159.05741, 41.91744], [159.07391, 41.95094], [159.08941, 41.98544], [159.10366, 42.02119], [159.11641, 42.05844], [159.12791, 42.09694], [159.13841, 42.13644], [159.14741, 42.17744], [159.15466, 42.22019], [159.16016, 42.26419], [159.16391, 42.30894], [159.16616, 42.35419], [159.16691, 42.39994], [159.16616, 42.44569], [159.16391, 42.49094], [159.16016, 42.53569], [159.15466, 42.57969], [159.14741, 42.62244], [159.13866, 42.66369], [159.12866, 42.70369], [159.11766, 42.74269], [159.10541, 42.78044], [159.09166, 42.81669], [159.07666, 42.85169], [159.06066, 42.88569], [159.04341, 42.91844], [159.02516, 42.95019], [159.00616, 42.98119], [158.98616, 43.01119], [158.96516, 43.04019], [158.94316, 43.06819], [158.92042, 43.09544], [158.89717, 43.12219], [158.87342, 43.14844], [158.84892, 43.17394], [158.82392, 43.19894], [158.79842, 43.22344], [158.77242, 43.24744], [158.74617, 43.27118], [158.71942, 43.29443], [158.69217, 43.31718], [158.66442, 43.33943], [158.63592, 43.36093], [158.60667, 43.38168], [158.57717, 43.40218], [158.54717, 43.42218], [158.51642, 43.44143], [158.48492, 43.45993], [158.45267, 43.47768], [158.41992, 43.49493], [158.38642, 43.51143], [158.35217, 43.52718], [158.31767, 43.54268], [158.28267, 43.55768], [158.24667, 43.57168], [158.20992, 43.58493], [158.17267, 43.59768], [158.13492, 43.60993], [158.09667, 43.62168], [158.05792, 43.63293], [158.01892, 43.64393], [157.97942, 43.65443], [157.93892, 43.66393], [157.89767, 43.67268], [157.85592, 43.68093], [157.81367, 43.68868], [157.77092, 43.69593], [157.72742, 43.70243], [157.68292, 43.70793], [157.63742, 43.71243], [157.59092, 43.71593], [157.54367, 43.71868], [157.49592, 43.72093], [157.44792, 43.72243], [157.39992, 43.72293], [157.35192, 43.72243], [157.30392, 43.72093], [157.25617, 43.71868], [157.20892, 43.71593], [157.16242, 43.71243], [157.11692, 43.70793], [157.07242, 43.70243], [157.02893, 43.69593], [156.98618, 43.68868], [156.94393, 43.68093], [156.90218, 43.67268], [156.86093, 43.66393], [156.82043, 43.65443], [156.78093, 43.64393], [156.74193, 43.63293], [156.70318, 43.62168], [156.66493, 43.60993], [156.62718, 43.59768], [156.58993, 43.58493], [156.55318, 43.57168], [156.51718, 43.55768], [156.48218, 43.54268], [156.44768, 43.52718], [156.41343, 43.51143], [156.37993, 43.49493], [156.34718, 43.47768], [156.31493, 43.45993], [156.28318, 43.44168], [156.25193, 43.42293], [156.22118, 43.40368], [156.19068, 43.38418], [156.16018, 43.36468], [156.12993, 43.34493], [156.09993, 43.32493], [156.06993, 43.30493], [156.03993, 43.28493], [156.00993, 43.26493], [155.97993, 43.24494], [155.94993, 43.22494], [155.91993, 43.20494], [155.88993, 43.18494], [155.85993, 43.16494], [155.83018, 43.14469], [155.80068, 43.12419], [155.77118, 43.10369], [155.74168, 43.08319], [155.71218, 43.06269], [155.68293, 43.04194], [155.65393, 43.02094], [155.62493, 42.99994], [155.59593, 42.97894], [155.56693, 42.95794], [155.53768, 42.93719], [155.50818, 42.91669], [155.47868, 42.89619], [155.44918, 42.87569], [155.41968, 42.85519], [155.38993, 42.83494], [155.35993, 42.81494], [155.32993, 42.79494], [155.29993, 42.77494], [155.26993, 42.75494], [155.23993, 42.73494], [155.20993, 42.71494], [155.18018, 42.69469], [155.15069, 42.67419], [155.12119, 42.65369], [155.09169, 42.63319], [155.06219, 42.61269], [155.03294, 42.59194], [155.00394, 42.57094], [154.97494, 42.54994], [154.94594, 42.52894], [154.91694, 42.50794], [154.88769, 42.48719], [154.85819, 42.46669], [154.82894, 42.44594], [154.79994, 42.42494], [154.77094, 42.40394], [154.74169, 42.38319], [154.71219, 42.36269], [154.68294, 42.34194], [154.65394, 42.32094], [154.62494, 42.29994], [154.59594, 42.27894], [154.56694, 42.25794], [154.53769, 42.23719], [154.50819, 42.21669], [154.47894, 42.19594], [154.44994, 42.17494], [154.42094, 42.15394], [154.39169, 42.13319], [154.36219, 42.11269], [154.33294, 42.09194], [154.30394, 42.07094], [154.27494, 42.04994], [154.24594, 42.02894], [154.21694, 42.00794], [154.18769, 41.98719], [154.15819, 41.96669], [154.12894, 41.94594], [154.09994, 41.92494], [154.07094, 41.90394], [154.04169, 41.88319], [154.01219, 41.86269], [153.98294, 41.84194], [153.95394, 41.82094], [153.92519, 41.79969], [153.89669, 41.77819], [153.86819, 41.75669], [153.83944, 41.73544], [153.81044, 41.71444], [153.78169, 41.69319], [153.75319, 41.67169], [153.72494, 41.64994], [153.69669, 41.62819], [153.66819, 41.60669], [153.63944, 41.58544], [153.61044, 41.56444], [153.58169, 41.54319], [153.55319, 41.52169], [153.52494, 41.49994], [153.49669, 41.47819], [153.46819, 41.45669], [153.43944, 41.43544], [153.41044, 41.41444], [153.38169, 41.39319], [153.35319, 41.3717], [153.32494, 41.34995], [153.29669, 41.3282], [153.2682, 41.3067], [153.23945, 41.28545], [153.21045, 41.26445], [153.1817, 41.2432], [153.1532, 41.2217], [153.12495, 41.19995], [153.0967, 41.1782], [153.06845, 41.15645], [153.0402, 41.1347], [153.0117, 41.1132], [152.98345, 41.09145], [152.95545, 41.06945], [152.9277, 41.0472], [152.89995, 41.02495], [152.8722, 41.0027], [152.84445, 40.98045], [152.81645, 40.95845], [152.7882, 40.9367], [152.7597, 40.9152], [152.73145, 40.89345], [152.7032, 40.8717], [152.67495, 40.84995], [152.6467, 40.8282], [152.61845, 40.80645], [152.5902, 40.7847], [152.5617, 40.7632], [152.53345, 40.74145], [152.50545, 40.71945], [152.4777, 40.6972], [152.44995, 40.67495], [152.4222, 40.6527], [152.39445, 40.63045], [152.3667, 40.6082], [152.33895, 40.58595], [152.31095, 40.56395], [152.2832, 40.5417], [152.25545, 40.51945], [152.2277, 40.4972], [152.19995, 40.47495], [152.1722, 40.4527], [152.14445, 40.43045], [152.1167, 40.4082], [152.08895, 40.38595], [152.06095, 40.36395], [152.0332, 40.3417], [152.00545, 40.31945], [151.9777, 40.2972], [151.94995, 40.27495], [151.9222, 40.2527], [151.89445, 40.23045], [151.8667, 40.2082], [151.83895, 40.18595], [151.8112, 40.1637], [151.78395, 40.14095], [151.7567, 40.1182], [151.72945, 40.09545], [151.7022, 40.0727], [151.67495, 40.04995], [151.6477, 40.0272], [151.62045, 40.00445], [151.5932, 39.9817], [151.56595, 39.95895], [151.5387, 39.9362], [151.5112, 39.9137], [151.48395, 39.89095], [151.4567, 39.8682], [151.42945, 39.84545], [151.4022, 39.8227], [151.37496, 39.79995], [151.34771, 39.7772], [151.32046, 39.75445], [151.29321, 39.7317], [151.26596, 39.70895], [151.23871, 39.6862], [151.21121, 39.6637], [151.18396, 39.64095], [151.15696, 39.61795], [151.13021, 39.5947], [151.10371, 39.5712], [151.07746, 39.54745], [151.05121, 39.5237], [151.02496, 39.49995], [150.99871, 39.47621], [150.97246, 39.45246], [150.94621, 39.42871], [150.91971, 39.40521], [150.89296, 39.38196], [150.86596, 39.35896], [150.83871, 39.33621], [150.81121, 39.31371], [150.78396, 39.29096], [150.75696, 39.26796], [150.73021, 39.24471], [150.70371, 39.22121], [150.67746, 39.19746], [150.65121, 39.17371], [150.62496, 39.14996], [150.59871, 39.12621], [150.57246, 39.10246], [150.54621, 39.07871], [150.51971, 39.05521], [150.49296, 39.03196], [150.46596, 39.00896], [150.43871, 38.98621], [150.41121, 38.96371], [150.38396, 38.94096], [150.35696, 38.91796], [150.33021, 38.89471], [150.30371, 38.87121], [150.27746, 38.84746], [150.25146, 38.82346], [150.22571, 38.79921], [150.20021, 38.77471], [150.17496, 38.74996], [150.14996, 38.72496], [150.12496, 38.69996], [150.09971, 38.67521], [150.07421, 38.65071], [150.04846, 38.62646], [150.02246, 38.60246], [149.99621, 38.57871], [149.96971, 38.55521], [149.94296, 38.53196], [149.91596, 38.50896], [149.88871, 38.48621], [149.86121, 38.46371], [149.83396, 38.44096], [149.80696, 38.41796], [149.78021, 38.39471], [149.75371, 38.37121], [149.72746, 38.34746], [149.70146, 38.32346], [149.67571, 38.29921], [149.65021, 38.27471], [149.62496, 38.24996], [149.59996, 38.22496], [149.57496, 38.19996], [149.54996, 38.17496], [149.52496, 38.14996], [149.49997, 38.12496], [149.47497, 38.09996], [149.44997, 38.07496], [149.42497, 38.04996], [149.39997, 38.02496], [149.37497, 37.99996], [149.34997, 37.97496], [149.32497, 37.94996], [149.29997, 37.92496], [149.27497, 37.89996], [149.24997, 37.87496], [149.22497, 37.84996], [149.19997, 37.82496], [149.17497, 37.79996], [149.14997, 37.77496], [149.12497, 37.74996], [149.09997, 37.72496], [149.07497, 37.69996], [149.04997, 37.67496], [149.02497, 37.64996], [148.99997, 37.62496], [148.97497, 37.59997], [148.94997, 37.57497], [148.92497, 37.54997], [148.89997, 37.52497], [148.87497, 37.49997], [148.84997, 37.47497], [148.82497, 37.44997], [148.79997, 37.42497], [148.77497, 37.39997], [148.74997, 37.37497], [148.72497, 37.34997], [148.69997, 37.32497], [148.67497, 37.29997], [148.64997, 37.27497], [148.62497, 37.24997], [148.59997, 37.22497], [148.57497, 37.19997], [148.54997, 37.17497], [148.52497, 37.14997], [148.49997, 37.12497], [148.47497, 37.09997], [148.44997, 37.07497], [148.42497, 37.04997], [148.39997, 37.02497], [148.37497, 36.99997], [148.34997, 36.97497], [148.32497, 36.94997], [148.29997, 36.92497], [148.27497, 36.89997], [148.24997, 36.87497], [148.22497, 36.84997], [148.19997, 36.82497], [148.17497, 36.79997], [148.14997, 36.77497], [148.12497, 36.74997], [148.09997, 36.72497], [148.07497, 36.69997], [148.04997, 36.67497], [148.02497, 36.64997], [147.99997, 36.62497], [147.97497, 36.59997], [147.94997, 36.57497], [147.92497, 36.54997], [147.89997, 36.52497], [147.87497, 36.49997], [147.84997, 36.47497], [147.82497, 36.44997], [147.79997, 36.42497], [147.77497, 36.39997], [147.74997, 36.37497], [147.72497, 36.34997], [147.69997, 36.32497], [147.67497, 36.29997], [147.64997, 36.27497], [147.62522, 36.24972], [147.60073, 36.22422], [147.57648, 36.19847], [147.55248, 36.17247], [147.52873, 36.14622], [147.50523, 36.11972], [147.48198, 36.09297], [147.45898, 36.06597], [147.43623, 36.03872], [147.41373, 36.01122], [147.39098, 35.98397], [147.36798, 35.95697], [147.34473, 35.93022], [147.32123, 35.90372], [147.29748, 35.87747], [147.27348, 35.85147], [147.24923, 35.82572], [147.22473, 35.80022], [147.19998, 35.77497], [147.17498, 35.74997], [147.14998, 35.72497], [147.12498, 35.69998], [147.09998, 35.67498], [147.07498, 35.64998], [147.04998, 35.62498], [147.02498, 35.59998], [146.99998, 35.57498], [146.97523, 35.54973], [146.95073, 35.52423], [146.92648, 35.49848], [146.90248, 35.47248], [146.87873, 35.44623], [146.85523, 35.41973], [146.83198, 35.39298], [146.80898, 35.36598], [146.78623, 35.33873], [146.76398, 35.31098], [146.74198, 35.28298], [146.72048, 35.25448], [146.69973, 35.22523], [146.68023, 35.19523], [146.66248, 35.16448], [146.64698, 35.13298], [146.63423, 35.10073], [146.62473, 35.06773], [146.61923, 35.03423], [146.61773, 35.00073], [146.62048, 34.96748], [146.62606, 34.93606], [146.6345, 34.907], [146.64532, 34.88032], [146.65807, 34.85607], [146.6648, 34.84203], [146.6726, 34.82885], [146.68118, 34.8169], [146.68972, 34.80638], [146.93943, 34.73553]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"ERROR_CONE_BBOX\", \"forecastHour\": 24, \"validDateTime\": \"2024-09-05T21:00:00Z\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[146.61773, 34.73553], [159.16691, 34.73553], [159.16691, 43.72293], [146.61773, 43.72293], [146.61773, 34.73553]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_TRACK\"}, \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[147.6, 35.6], [147.81585, 35.78637], [148.02296, 35.96593], [148.22133, 36.13867], [148.41852, 36.30926], [148.62207, 36.48237], [148.832, 36.658], [149.0483, 36.83615], [149.27096, 37.01681], [149.5, 37.2], [149.73541, 37.3857], [149.97719, 37.57393], [150.22533, 37.76467], [150.47985, 37.95793], [150.74074, 38.1537], [151.008, 38.352], [151.28315, 38.55296], [151.5677, 38.75674], [151.86167, 38.96333], [152.16504, 39.17274], [152.47781, 39.38496], [152.8, 39.6], [153.13159, 39.81785], [153.47259, 40.03852], [153.823, 40.262], [154.18281, 40.4883], [154.55204, 40.71741], [154.93067, 40.94933], [155.3187, 41.18407], [155.71615, 41.42163], [156.123, 41.662], [156.53926, 41.90519], [156.96493, 42.15119], [157.4, 42.4]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"OBSERVED_TRACK\"}, \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[146.7, 29.7], [146.67127, 29.79262], [146.63793, 29.95929], [146.6, 30.2], [146.55747, 30.51476], [146.51493, 30.88507], [146.5, 31.2], [146.51726, 31.44104], [146.55024, 31.61915], [146.5, 31.8], [146.35007, 31.99453], [146.1281, 32.20001], [146.0, 32.4], [145.99343, 32.59177], [146.08118, 32.76969], [146.1, 32.9], [146.02268, 32.97708], [145.87372, 33.01521], [145.8, 33.1], [145.82602, 33.24574], [145.93208, 33.43908], [146.0, 33.6], [146.0101, 33.71517], [145.97827, 33.79478], [146.0, 33.9], [146.09119, 34.04103], [146.24273, 34.21448], [146.4, 34.4], [146.55388, 34.5942], [146.70977, 34.79613], [146.9, 35.0], [147.12996, 35.20486], [147.37541, 35.40681], [147.6, 35.6]]}}], \"metadata\": {\"stormName\": \"Leepi\", \"source\": \"JTWC\", \"advisoryDateTime\": \"2024-09-05T21:00:00Z\", \"stormNum\": \"20S\", \"stormId\": 101}}]}"}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/cyclone-radii":{"get":{"tags":["DTN"],"summary":"Get Radii","description":"Returns Array of FeatureCollection Objects, Contain wind radii features. \n\n**Data returned from this endpoint contains data from DTN advisories ONLY**\n\nGeoJSON Properties:\n\n* **stormElement** ***(string)***: Type of storm element (\"FORECAST_RADII\" in this case).\n* **radiiType** ***(string)***: Type of wind radii being provided (e.g., \"34kt\" for 34-knot winds).\n* **forecastHour** ***(integer)***: Forecast hour for which the wind radii are valid.\n* **ne** ***(integer)***: Radius of the wind field in the northeast quadrant (in nautical miles).\n* **se** ***(integer)***: Radius of the wind field in the southeast quadrant (in nautical miles).\n* **sw** ***(integer)***: Radius of the wind field in the southwest quadrant (in nautical miles).\n* **nw** ***(integer)***: Radius of the wind field in the northwest quadrant (in nautical miles).\n* **validDateTime** ***(string)***: Date and time when the forecast is valid in UTC format (YYYY-MM-DDTHH:MM:SSZ).\n* **category** ***(integer)***: Storm category (Saffir-Simpson Hurricane Wind Scale) based on the wind speed.\n* **windSpeedKnots** ***(float)***: Wind speed of the storm in knots.","operationId":"get_radii_v1_cyclone_radii_get","security":[{"clientCredentials":[]}],"parameters":[{"name":"stormName","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by name of storm","title":"Stormname"},"description":"Optional: Filter results by name of storm"},{"name":"stormNum","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by number of storm","title":"Stormnum"},"description":"Optional: Filter results by number of storm"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TropicalResponse"},"example":"{\"url\": \"http://tropical.api.dtn.com/v1/cyclone-radii\", \"cycloneCount\": 2, \"data\": [{\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-30T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 65.0, \"forecastHour\": 120}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.55999, -26.996157], [71.55999, -26.996157], [71.551872, -26.988434], [71.543724, -26.980829], [71.535553, -26.973339], [71.527344, -26.965967], [71.519104, -26.958712], [71.510834, -26.951571], [71.502541, -26.944546], [71.494209, -26.937635], [71.485847, -26.930838], [71.477463, -26.924154], [71.46904, -26.917585], [71.460587, -26.911129], [71.45211, -26.904783], [71.443596, -26.898552], [71.435051, -26.892431], [71.426483, -26.886421], [71.417877, -26.88052], [71.409248, -26.874731], [71.400581, -26.869051], [71.391884, -26.863482], [71.383163, -26.858019], [71.374405, -26.852665], [71.365616, -26.84742], [71.356804, -26.842281], [71.347954, -26.83725], [71.339073, -26.832325], [71.33017, -26.827507], [71.321228, -26.822794], [71.312256, -26.818186], [71.303261, -26.813681], [71.294228, -26.809282], [71.285164, -26.804987], [71.27607, -26.800795], [71.266953, -26.796705], [71.257797, -26.792719], [71.248611, -26.788834], [71.239395, -26.785049], [71.230148, -26.781368], [71.220871, -26.777786], [71.211563, -26.774303], [71.202225, -26.770922], [71.192856, -26.767639], [71.183456, -26.764456], [71.174026, -26.76137], [71.164566, -26.758381], [71.155075, -26.755491], [71.145554, -26.752699], [71.136002, -26.750002], [71.126419, -26.7474], [71.116798, -26.744896], [71.107155, -26.742485], [71.097481, -26.74017], [71.087769, -26.737949], [71.078033, -26.735821], [71.06826, -26.733788], [71.058464, -26.731846], [71.04863, -26.729998], [71.038773, -26.728241], [71.028877, -26.726576], [71.018951, -26.725002], [71.009003, -26.72352], [70.999016, -26.722126], [70.988998, -26.720823], [70.978951, -26.719608], [70.968872, -26.718483], [70.958763, -26.717447], [70.948624, -26.716497], [70.938454, -26.715635], [70.928253, -26.714861], [70.918015, -26.714174], [70.907753, -26.713572], [70.897461, -26.713055], [70.887131, -26.712624], [70.876778, -26.712278], [70.866386, -26.712017], [70.855965, -26.711838], [70.84552, -26.711742], [70.835037, -26.711731], [70.824524, -26.711802], [70.81398, -26.711954], [70.803406, -26.712189], [70.792801, -26.712505], [70.782166, -26.7129], [70.7715, -26.713377], [70.760796, -26.713932], [70.750069, -26.714569], [70.739304, -26.715282], [70.728516, -26.716076], [70.71769, -26.716946], [70.706833, -26.717894], [70.695946, -26.71892], [70.685028, -26.72002], [70.67408, -26.721199], [70.663101, -26.722452], [70.652092, -26.723782], [70.641052, -26.725185], [70.629974, -26.726662], [70.618874, -26.728214], [70.607841, -26.729866], [70.596924, -26.731653], [70.586128, -26.733572], [70.575455, -26.73562], [70.564896, -26.737799], [70.554451, -26.740107], [70.544113, -26.74254], [70.53389, -26.745102], [70.523781, -26.747786], [70.513771, -26.750593], [70.503868, -26.753523], [70.494064, -26.756571], [70.484367, -26.759739], [70.474762, -26.763025], [70.465256, -26.766428], [70.455849, -26.769947], [70.446533, -26.773577], [70.437309, -26.777321], [70.428169, -26.781176], [70.419128, -26.785141], [70.410164, -26.789215], [70.401283, -26.793394], [70.392487, -26.79768], [70.383774, -26.802071], [70.37513, -26.806564], [70.36657, -26.811161], [70.358086, -26.815857], [70.34967, -26.820652], [70.341324, -26.825544], [70.333046, -26.830534], [70.324837, -26.835619], [70.316689, -26.840797], [70.308609, -26.846069], [70.300591, -26.851431], [70.292625, -26.856884], [70.284721, -26.862425], [70.276871, -26.868053], [70.269073, -26.873766], [70.26133, -26.879566], [70.253632, -26.885447], [70.245987, -26.891411], [70.238388, -26.897455], [70.230827, -26.90358], [70.223312, -26.909782], [70.215836, -26.916059], [70.208405, -26.922415], [70.201004, -26.928843], [70.193634, -26.935343], [70.186302, -26.941914], [70.179001, -26.948557], [70.171722, -26.955267], [70.164474, -26.962046], [70.157257, -26.968889], [70.150055, -26.975798], [70.142876, -26.982771], [70.135719, -26.989805], [70.128578, -26.996899], [70.121452, -27.004053], [70.114342, -27.011267], [70.107239, -27.018536], [70.100151, -27.025862], [70.093071, -27.033239], [70.085991, -27.040672], [70.078918, -27.048155], [70.071846, -27.055689], [70.064781, -27.063271], [70.057709, -27.0709], [70.050636, -27.078577], [70.043556, -27.086298], [70.036469, -27.094063], [70.029373, -27.10187], [70.022263, -27.109716], [70.015144, -27.117603], [70.008011, -27.125528], [70.000854, -27.133492], [69.993683, -27.141489], [69.986496, -27.149521], [69.979279, -27.157587], [69.972046, -27.165684], [69.964783, -27.173809], [69.957489, -27.181965], [69.950165, -27.190149], [69.94281, -27.198359], [69.935425, -27.206594], [69.928001, -27.214853], [69.92054, -27.223133], [69.91304, -27.231436], [69.905556, -27.239712], [69.898102, -27.247952], [69.890694, -27.256153], [69.883324, -27.264322], [69.875999, -27.272459], [69.868713, -27.280565], [69.861465, -27.288643], [69.854271, -27.296692], [69.847122, -27.304718], [69.840012, -27.312721], [69.832954, -27.320704], [69.825951, -27.328667], [69.818993, -27.336613], [69.812088, -27.344542], [69.805237, -27.352457], [69.798439, -27.360361], [69.791687, -27.368256], [69.785004, -27.376143], [69.778374, -27.384022], [69.771797, -27.391897], [69.765282, -27.399769], [69.758827, -27.407642], [69.752434, -27.415514], [69.746109, -27.423389], [69.739838, -27.431271], [69.733635, -27.439157], [69.727501, -27.447054], [69.721436, -27.45496], [69.715431, -27.462877], [69.709503, -27.47081], [69.703644, -27.478758], [69.697853, -27.486725], [69.692131, -27.494709], [69.686493, -27.502716], [69.680923, -27.510746], [69.67543, -27.518801], [69.670013, -27.526884], [69.66468, -27.534994], [69.659424, -27.543137], [69.654243, -27.551311], [69.649147, -27.559519], [69.644135, -27.567764], [69.639206, -27.576048], [69.634361, -27.58437], [69.629601, -27.592733], [69.624931, -27.601143], [69.620346, -27.609596], [69.615852, -27.618097], [69.61145, -27.626646], [69.60714, -27.635248], [69.602921, -27.643902], [69.598793, -27.652611], [69.594765, -27.661375], [69.590828, -27.6702], [69.58699, -27.679083], [69.583252, -27.68803], [69.579613, -27.697039], [69.576073, -27.706116], [69.572632, -27.715258], [69.569298, -27.724472], [69.566063, -27.733755], [69.562935, -27.743113], [69.559914, -27.752546], [69.557007, -27.762054], [69.554199, -27.771643], [69.551506, -27.781311], [69.54892, -27.791063], [69.54644, -27.8009], [69.544083, -27.81082], [69.541832, -27.820829], [69.539703, -27.830929], [69.537689, -27.841122], [69.535789, -27.851406], [69.534004, -27.861786], [69.532349, -27.872263], [69.530807, -27.882839], [69.529388, -27.893517], [69.528091, -27.904297], [69.526917, -27.915182], [69.525871, -27.926174], [69.524948, -27.937273], [69.524124, -27.948423], [69.523384, -27.959526], [69.52272, -27.970579], [69.522133, -27.981586], [69.521629, -27.992544], [69.521202, -28.003456], [69.520859, -28.01432], [69.520592, -28.025139], [69.520409, -28.03591], [69.520309, -28.046637], [69.520287, -28.057318], [69.520348, -28.067953], [69.520493, -28.078543], [69.520721, -28.089088], [69.521042, -28.09959], [69.521439, -28.110048], [69.521919, -28.120462], [69.522491, -28.130833], [69.523148, -28.141161], [69.523888, -28.151447], [69.524719, -28.16169], [69.525635, -28.171892], [69.526634, -28.182051], [69.527725, -28.192169], [69.528908, -28.202248], [69.530182, -28.212284], [69.53154, -28.222281], [69.53299, -28.232237], [69.534531, -28.242155], [69.536163, -28.252031], [69.537888, -28.261871], [69.539703, -28.271671], [69.541618, -28.281433], [69.543617, -28.291157], [69.545715, -28.300842], [69.547905, -28.310492], [69.550186, -28.320103], [69.552567, -28.329678], [69.555038, -28.339216], [69.55761, -28.348719], [69.56028, -28.358187], [69.563042, -28.367619], [69.565903, -28.377014], [69.568863, -28.386375], [69.571922, -28.395704], [69.575081, -28.404997], [69.578331, -28.414257], [69.581688, -28.423483], [69.585144, -28.432676], [69.588699, -28.441837], [69.592361, -28.450964], [69.596123, -28.46006], [69.599983, -28.469126], [69.603943, -28.478157], [69.608009, -28.48716], [69.612183, -28.49613], [69.616455, -28.505072], [69.620834, -28.513981], [69.62532, -28.522861], [69.629906, -28.531713], [69.634605, -28.540535], [69.639404, -28.549328], [69.64431, -28.558092], [69.64933, -28.566828], [69.654449, -28.575537], [69.659683, -28.584219], [69.665024, -28.592873], [69.670471, -28.6015], [69.676033, -28.6101], [69.681702, -28.618675], [69.687485, -28.627222], [69.693375, -28.635746], [69.699379, -28.644243], [69.70549, -28.652716], [69.711716, -28.661165], [69.718063, -28.66959], [69.72451, -28.67799], [69.731079, -28.686365], [69.737762, -28.694719], [69.74456, -28.703051], [69.751472, -28.711357], [69.758499, -28.719645], [69.765648, -28.727907], [69.772903, -28.736149], [69.780281, -28.744371], [69.787781, -28.752571], [69.795395, -28.76075], [69.803032, -28.768816], [69.810699, -28.776775], [69.818382, -28.784626], [69.826096, -28.792372], [69.833832, -28.800009], [69.841599, -28.807541], [69.84938, -28.814966], [69.857201, -28.822287], [69.865036, -28.8295], [69.872902, -28.836611], [69.880798, -28.843616], [69.888718, -28.850519], [69.89666, -28.857319], [69.90464, -28.864014], [69.912643, -28.870607], [69.920677, -28.877098], [69.928734, -28.883488], [69.936829, -28.889774], [69.944946, -28.895962], [69.953094, -28.902046], [69.961273, -28.908033], [69.969482, -28.913919], [69.97773, -28.919704], [69.986, -28.925392], [69.994308, -28.930981], [70.002647, -28.936472], [70.011017, -28.941864], [70.019417, -28.947159], [70.027855, -28.952356], [70.036324, -28.957458], [70.044823, -28.962463], [70.05336, -28.967373], [70.061935, -28.972187], [70.070541, -28.976906], [70.079178, -28.981529], [70.08786, -28.986061], [70.096573, -28.990496], [70.105316, -28.994839], [70.114105, -28.999088], [70.122925, -29.003246], [70.13179, -29.007311], [70.140686, -29.011284], [70.14962, -29.015165], [70.158592, -29.018955], [70.16761, -29.022655], [70.176659, -29.026266], [70.185753, -29.029785], [70.194885, -29.033216], [70.204056, -29.036556], [70.213264, -29.03981], [70.222519, -29.042974], [70.231812, -29.046051], [70.241142, -29.04904], [70.250519, -29.051943], [70.259941, -29.054758], [70.269402, -29.057487], [70.278908, -29.060131], [70.288452, -29.062689], [70.298042, -29.065163], [70.307678, -29.067551], [70.31736, -29.069855], [70.32708, -29.072077], [70.336853, -29.074213], [70.346664, -29.076267], [70.356522, -29.078238], [70.366432, -29.080128], [70.376381, -29.081936], [70.386383, -29.08366], [70.396423, -29.085306], [70.406517, -29.08687], [70.416664, -29.088354], [70.426849, -29.089758], [70.437088, -29.091084], [70.447372, -29.092329], [70.45771, -29.093496], [70.468094, -29.094585], [70.478531, -29.095596], [70.489014, -29.096531], [70.49955, -29.097387], [70.510132, -29.098167], [70.520775, -29.098871], [70.531464, -29.099501], [70.542206, -29.100054], [70.552994, -29.100531], [70.563843, -29.100933], [70.574738, -29.101263], [70.585693, -29.101519], [70.596703, -29.1017], [70.607758, -29.101809], [70.618874, -29.101845], [70.629982, -29.101803], [70.641022, -29.101675], [70.652, -29.101465], [70.66291, -29.10117], [70.673759, -29.100788], [70.684547, -29.100325], [70.695267, -29.099775], [70.705933, -29.099142], [70.71653, -29.098423], [70.727066, -29.09762], [70.737549, -29.096733], [70.747971, -29.095762], [70.758339, -29.094707], [70.768639, -29.093567], [70.778893, -29.092342], [70.789085, -29.091034], [70.799225, -29.08964], [70.809311, -29.088163], [70.819344, -29.086601], [70.829323, -29.084955], [70.839256, -29.083225], [70.849129, -29.081409], [70.858955, -29.07951], [70.868736, -29.077526], [70.878464, -29.075459], [70.888145, -29.073307], [70.897781, -29.071072], [70.907364, -29.06875], [70.916908, -29.066345], [70.926399, -29.063856], [70.935852, -29.061283], [70.945259, -29.058626], [70.954628, -29.055885], [70.963951, -29.053059], [70.973236, -29.05015], [70.982475, -29.047155], [70.991676, -29.044077], [71.000839, -29.040915], [71.009964, -29.037668], [71.019051, -29.034338], [71.028099, -29.030922], [71.037117, -29.027424], [71.046097, -29.02384], [71.055038, -29.020174], [71.06395, -29.016422], [71.07283, -29.012587], [71.08168, -29.008667], [71.090492, -29.004663], [71.099274, -29.000576], [71.108032, -28.996405], [71.116753, -28.992149], [71.12545, -28.98781], [71.134125, -28.983387], [71.142761, -28.978878], [71.151382, -28.974287], [71.159973, -28.969612], [71.168533, -28.964853], [71.177078, -28.960009], [71.1856, -28.955082], [71.194092, -28.950071], [71.202568, -28.944975], [71.211021, -28.939796], [71.21946, -28.934532], [71.227875, -28.929186], [71.236267, -28.923756], [71.244644, -28.918242], [71.253006, -28.912642], [71.261353, -28.90696], [71.269684, -28.901194], [71.278, -28.895344], [71.286301, -28.88941], [71.294586, -28.883392], [71.302864, -28.877291], [71.311127, -28.871105], [71.319374, -28.864836], [71.327621, -28.858482], [71.335854, -28.852045], [71.344078, -28.845526], [71.352287, -28.838921], [71.360497, -28.832233], [71.368698, -28.82546], [71.3769, -28.818605], [71.385086, -28.811666], [71.393272, -28.804644], [71.401459, -28.797537], [71.409637, -28.790348], [71.417816, -28.783073], [71.425995, -28.775715], [71.434174, -28.768274], [71.442352, -28.76075], [71.4505, -28.75318], [71.45858, -28.745607], [71.466591, -28.738033], [71.474533, -28.730457], [71.482399, -28.722876], [71.490204, -28.715292], [71.49794, -28.707703], [71.5056, -28.700106], [71.513191, -28.692505], [71.520714, -28.684895], [71.528168, -28.677277], [71.535545, -28.669649], [71.542854, -28.66201], [71.550095, -28.654364], [71.557259, -28.646704], [71.564354, -28.63903], [71.571373, -28.631346], [71.578323, -28.623648], [71.585197, -28.615934], [71.592003, -28.608204], [71.598732, -28.600458], [71.605392, -28.592697], [71.611977, -28.584915], [71.618484, -28.577116], [71.624924, -28.569298], [71.631287, -28.561459], [71.637573, -28.553598], [71.643791, -28.545717], [71.649933, -28.537813], [71.655991, -28.529884], [71.66198, -28.521933], [71.667892, -28.513954], [71.673729, -28.505951], [71.679497, -28.497923], [71.685181, -28.489864], [71.690788, -28.481779], [71.69632, -28.473665], [71.701775, -28.465521], [71.707153, -28.457346], [71.712456, -28.449139], [71.717682, -28.440901], [71.722824, -28.432629], [71.72789, -28.424324], [71.73288, -28.415983], [71.737793, -28.407608], [71.742622, -28.399197], [71.747375, -28.390747], [71.752052, -28.382261], [71.756645, -28.373735], [71.761162, -28.365171], [71.765594, -28.356567], [71.769951, -28.347921], [71.774223, -28.339235], [71.778419, -28.330505], [71.782532, -28.321732], [71.786568, -28.312914], [71.79052, -28.304052], [71.794388, -28.295143], [71.79818, -28.28619], [71.801888, -28.277187], [71.805511, -28.268137], [71.809052, -28.259039], [71.812508, -28.249889], [71.815887, -28.24069], [71.819183, -28.23144], [71.822388, -28.222137], [71.825516, -28.212782], [71.82856, -28.203371], [71.83152, -28.193909], [71.834396, -28.184389], [71.837181, -28.174814], [71.83989, -28.165182], [71.842514, -28.155493], [71.845047, -28.145744], [71.847496, -28.135937], [71.849861, -28.126068], [71.852142, -28.11614], [71.85434, -28.10615], [71.856445, -28.096098], [71.858467, -28.085981], [71.860397, -28.075802], [71.862244, -28.065557], [71.864006, -28.055246], [71.865677, -28.04487], [71.867264, -28.034426], [71.868759, -28.023914], [71.870171, -28.013332], [71.87149, -28.002682], [71.872719, -27.991962], [71.873863, -27.981169], [71.874924, -27.970306], [71.875885, -27.959368], [71.876762, -27.948359], [71.877548, -27.937273], [71.878265, -27.926142], [71.878914, -27.915047], [71.879509, -27.903988], [71.880043, -27.892963], [71.880516, -27.881977], [71.88092, -27.871025], [71.881271, -27.860111], [71.881554, -27.849232], [71.881775, -27.838387], [71.881927, -27.827579], [71.882019, -27.816807], [71.88205, -27.80607], [71.882004, -27.79537], [71.881897, -27.784704], [71.881721, -27.774075], [71.881485, -27.763479], [71.881172, -27.75292], [71.880791, -27.742397], [71.880341, -27.731909], [71.879822, -27.721457], [71.879234, -27.711039], [71.878571, -27.700657], [71.877838, -27.69031], [71.877037, -27.679998], [71.87616, -27.669722], [71.875206, -27.659481], [71.874176, -27.649273], [71.873077, -27.639103], [71.871902, -27.628965], [71.870651, -27.618864], [71.869324, -27.608797], [71.86792, -27.598766], [71.866432, -27.58877], [71.864876, -27.578808], [71.863235, -27.56888], [71.861511, -27.558987], [71.859718, -27.549129], [71.857834, -27.539305], [71.855873, -27.529516], [71.853836, -27.519762], [71.851707, -27.510042], [71.849503, -27.500357], [71.847206, -27.490705], [71.844833, -27.481089], [71.842377, -27.471506], [71.839828, -27.461958], [71.837204, -27.452444], [71.834488, -27.442965], [71.83168, -27.433519], [71.828789, -27.424109], [71.825813, -27.414732], [71.822746, -27.405388], [71.819588, -27.39608], [71.816345, -27.386805], [71.813004, -27.377563], [71.809578, -27.368355], [71.806061, -27.359182], [71.802452, -27.350042], [71.798744, -27.340937], [71.794945, -27.331863], [71.791054, -27.322826], [71.787071, -27.31382], [71.78299, -27.30485], [71.778816, -27.295912], [71.774544, -27.287006], [71.77018, -27.278137], [71.765709, -27.269299], [71.761147, -27.260494], [71.756485, -27.251724], [71.751724, -27.242987], [71.746864, -27.234283], [71.741905, -27.225613], [71.736839, -27.216974], [71.731682, -27.20837], [71.726418, -27.199799], [71.721046, -27.191261], [71.715576, -27.182756], [71.710007, -27.174284], [71.704323, -27.165844], [71.69854, -27.157438], [71.692657, -27.149063], [71.686661, -27.140724], [71.680557, -27.132416], [71.674355, -27.12414], [71.668037, -27.115898], [71.661613, -27.107687], [71.655083, -27.09951], [71.648438, -27.091366], [71.641685, -27.083254], [71.634827, -27.075174], [71.627853, -27.067127], [71.620766, -27.059113], [71.613564, -27.05113], [71.606255, -27.04318], [71.598831, -27.035263], [71.591293, -27.027376], [71.583641, -27.019524], [71.575874, -27.011702], [71.567993, -27.003914], [71.55999, -26.996157]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"50kt\", \"ne\": 38, \"se\": 39, \"sw\": 39, \"nw\": 36, \"validDateTime\": \"2024-01-30T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 65.0, \"forecastHour\": 120}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.089432, -27.466715], [71.089432, -27.466715], [71.081093, -27.45927], [71.072716, -27.452042], [71.064293, -27.445026], [71.055824, -27.438225], [71.04731, -27.431635], [71.038742, -27.425257], [71.030136, -27.419088], [71.021484, -27.413126], [71.012779, -27.407373], [71.004028, -27.401825], [70.995224, -27.396481], [70.986374, -27.39134], [70.977478, -27.386402], [70.968529, -27.381664], [70.959526, -27.377127], [70.95047, -27.372787], [70.94136, -27.368647], [70.932205, -27.364698], [70.922989, -27.360947], [70.913727, -27.357389], [70.904404, -27.354023], [70.895027, -27.350847], [70.88559, -27.347862], [70.876106, -27.345064], [70.866554, -27.342455], [70.856956, -27.340031], [70.84729, -27.337791], [70.83757, -27.335735], [70.827789, -27.33386], [70.817947, -27.332169], [70.808052, -27.330654], [70.798088, -27.329321], [70.788071, -27.328163], [70.777985, -27.327183], [70.767838, -27.326376], [70.757622, -27.325743], [70.747353, -27.325281], [70.737015, -27.324993], [70.726608, -27.324873], [70.716141, -27.324921], [70.705605, -27.325138], [70.695, -27.32552], [70.684334, -27.326067], [70.673599, -27.326778], [70.662788, -27.327652], [70.651917, -27.328686], [70.640968, -27.32988], [70.629959, -27.331232], [70.618874, -27.332743], [70.608032, -27.33445], [70.597443, -27.336432], [70.58709, -27.33868], [70.576981, -27.341194], [70.567085, -27.343962], [70.557419, -27.346979], [70.547951, -27.350241], [70.538689, -27.353739], [70.529617, -27.357468], [70.520729, -27.361422], [70.512009, -27.365593], [70.503464, -27.369976], [70.495064, -27.374563], [70.486824, -27.379353], [70.478714, -27.384333], [70.470741, -27.3895], [70.462891, -27.394848], [70.455154, -27.40037], [70.447525, -27.406059], [70.439987, -27.411909], [70.432541, -27.417915], [70.425171, -27.424068], [70.417877, -27.430367], [70.410645, -27.4368], [70.403465, -27.443363], [70.396332, -27.450048], [70.389236, -27.456854], [70.382172, -27.463768], [70.375122, -27.470787], [70.368088, -27.477905], [70.361053, -27.485115], [70.354012, -27.492411], [70.346954, -27.499786], [70.339882, -27.507235], [70.332771, -27.51475], [70.325623, -27.522326], [70.31842, -27.529955], [70.311165, -27.537634], [70.303848, -27.545353], [70.296448, -27.553108], [70.288971, -27.560892], [70.281403, -27.568699], [70.273735, -27.576521], [70.265953, -27.584354], [70.258118, -27.592133], [70.250298, -27.599804], [70.242493, -27.607374], [70.234703, -27.614853], [70.226952, -27.622248], [70.219231, -27.629568], [70.211555, -27.636824], [70.203926, -27.644022], [70.19635, -27.651171], [70.188835, -27.658279], [70.181389, -27.665358], [70.174011, -27.672411], [70.166718, -27.679451], [70.159508, -27.686485], [70.15239, -27.693521], [70.14537, -27.700571], [70.138451, -27.707638], [70.131645, -27.714735], [70.124962, -27.721867], [70.118401, -27.729046], [70.111969, -27.736279], [70.105667, -27.743574], [70.099518, -27.75094], [70.093506, -27.758387], [70.087662, -27.765923], [70.08197, -27.773554], [70.076447, -27.781292], [70.071098, -27.789143], [70.065933, -27.797117], [70.060951, -27.805222], [70.056168, -27.813467], [70.051575, -27.821861], [70.047195, -27.830412], [70.043022, -27.839127], [70.03907, -27.848017], [70.035339, -27.85709], [70.031837, -27.866354], [70.02858, -27.875816], [70.025558, -27.885489], [70.022797, -27.895378], [70.020279, -27.905491], [70.018028, -27.91584], [70.016052, -27.926432], [70.014343, -27.937273], [70.012833, -27.948357], [70.011482, -27.959372], [70.010284, -27.970316], [70.009254, -27.98119], [70.008377, -27.991995], [70.007668, -28.002731], [70.007118, -28.013401], [70.006737, -28.024004], [70.006523, -28.034538], [70.00647, -28.045008], [70.006592, -28.055412], [70.006882, -28.06575], [70.007347, -28.076025], [70.007973, -28.086235], [70.008781, -28.096382], [70.009766, -28.106466], [70.010918, -28.116489], [70.012253, -28.12645], [70.013771, -28.136351], [70.015465, -28.146191], [70.017334, -28.15597], [70.019394, -28.165691], [70.021629, -28.175352], [70.024055, -28.184956], [70.026665, -28.194502], [70.029465, -28.203991], [70.032448, -28.213425], [70.035622, -28.222801], [70.038986, -28.232122], [70.042549, -28.24139], [70.046303, -28.250603], [70.050247, -28.259762], [70.05439, -28.268869], [70.058731, -28.277924], [70.063263, -28.286924], [70.068001, -28.295876], [70.072945, -28.304777], [70.078079, -28.313627], [70.083427, -28.322428], [70.088974, -28.331179], [70.094727, -28.339882], [70.100685, -28.348537], [70.106857, -28.357145], [70.113235, -28.365705], [70.119827, -28.374222], [70.126625, -28.38269], [70.133644, -28.391115], [70.140869, -28.399494], [70.148315, -28.407831], [70.155899, -28.416046], [70.163528, -28.424061], [70.171219, -28.431875], [70.178963, -28.439491], [70.18676, -28.446911], [70.194611, -28.454136], [70.202522, -28.461168], [70.210495, -28.468008], [70.218521, -28.474659], [70.226608, -28.481119], [70.234756, -28.487394], [70.242966, -28.493483], [70.251236, -28.499388], [70.259567, -28.50511], [70.26796, -28.510651], [70.276421, -28.516012], [70.28495, -28.521196], [70.293533, -28.526205], [70.302193, -28.531038], [70.310913, -28.535698], [70.31971, -28.540186], [70.328568, -28.544504], [70.337502, -28.548655], [70.346497, -28.552637], [70.355568, -28.556456], [70.364708, -28.560108], [70.373924, -28.563601], [70.383217, -28.566931], [70.392578, -28.570103], [70.402016, -28.573116], [70.41153, -28.575974], [70.42112, -28.578678], [70.430786, -28.581228], [70.440529, -28.583628], [70.450356, -28.585876], [70.460258, -28.587976], [70.470238, -28.58993], [70.480301, -28.59174], [70.490448, -28.593405], [70.500679, -28.594927], [70.510994, -28.59631], [70.521385, -28.597553], [70.531868, -28.59866], [70.542435, -28.599628], [70.553093, -28.600464], [70.563828, -28.601168], [70.574661, -28.601738], [70.585579, -28.60218], [70.596588, -28.602493], [70.607681, -28.60268], [70.618874, -28.602743], [70.630058, -28.602674], [70.641129, -28.602467], [70.652107, -28.602119], [70.662971, -28.601631], [70.673744, -28.601004], [70.684418, -28.600233], [70.694984, -28.599321], [70.705467, -28.598265], [70.715851, -28.597067], [70.726143, -28.595724], [70.736343, -28.594236], [70.74646, -28.592602], [70.756485, -28.590822], [70.766418, -28.588894], [70.776276, -28.586819], [70.786049, -28.584597], [70.795746, -28.582224], [70.805359, -28.5797], [70.814896, -28.577026], [70.824364, -28.574203], [70.833748, -28.571226], [70.843063, -28.568098], [70.85231, -28.564816], [70.861488, -28.561378], [70.870598, -28.557787], [70.879646, -28.554041], [70.888626, -28.550138], [70.897545, -28.546078], [70.906403, -28.541861], [70.915207, -28.537485], [70.92395, -28.532951], [70.93264, -28.528257], [70.941269, -28.523403], [70.949852, -28.518389], [70.958389, -28.513212], [70.966873, -28.507874], [70.975304, -28.502371], [70.983696, -28.496706], [70.99205, -28.490875], [71.000351, -28.48488], [71.008621, -28.478718], [71.016846, -28.472391], [71.025032, -28.465895], [71.033188, -28.459232], [71.041313, -28.4524], [71.0494, -28.4454], [71.057465, -28.438229], [71.065491, -28.430887], [71.073494, -28.423374], [71.081474, -28.415689], [71.089432, -28.407831], [71.09729, -28.399876], [71.104973, -28.391897], [71.112488, -28.383892], [71.119827, -28.37586], [71.126999, -28.367802], [71.134003, -28.359713], [71.140831, -28.351589], [71.147491, -28.343435], [71.153992, -28.335245], [71.160316, -28.327017], [71.166481, -28.318752], [71.172478, -28.310446], [71.178307, -28.302097], [71.183968, -28.293707], [71.189476, -28.285269], [71.194809, -28.276787], [71.199989, -28.268253], [71.205002, -28.25967], [71.209854, -28.251036], [71.214554, -28.242348], [71.219086, -28.233604], [71.223457, -28.224804], [71.227676, -28.215946], [71.231735, -28.207026], [71.235641, -28.198044], [71.239388, -28.188999], [71.242973, -28.17989], [71.246414, -28.170712], [71.249695, -28.161465], [71.252823, -28.152149], [71.255798, -28.142759], [71.258621, -28.133297], [71.261299, -28.12376], [71.263817, -28.114145], [71.26619, -28.104452], [71.268417, -28.094677], [71.270493, -28.084822], [71.272415, -28.074881], [71.2742, -28.064856], [71.275833, -28.054743], [71.277321, -28.04454], [71.278664, -28.03425], [71.279861, -28.023865], [71.280914, -28.013388], [71.28183, -28.002813], [71.2826, -27.992144], [71.283226, -27.981373], [71.283714, -27.970503], [71.284065, -27.959532], [71.284271, -27.948454], [71.28434, -27.937273], [71.284279, -27.926085], [71.284088, -27.914986], [71.283775, -27.903978], [71.283333, -27.893061], [71.282761, -27.882231], [71.282059, -27.871489], [71.281227, -27.860836], [71.280258, -27.850267], [71.279152, -27.839787], [71.277908, -27.82939], [71.276527, -27.819078], [71.275002, -27.808849], [71.273338, -27.798702], [71.27153, -27.788637], [71.269577, -27.778654], [71.267471, -27.768751], [71.265221, -27.758928], [71.262825, -27.749184], [71.260277, -27.739517], [71.257576, -27.729927], [71.254715, -27.720413], [71.251701, -27.710978], [71.248528, -27.701614], [71.245201, -27.692326], [71.241707, -27.683111], [71.238052, -27.673967], [71.234238, -27.664898], [71.230255, -27.655897], [71.226105, -27.646969], [71.221786, -27.638107], [71.2173, -27.629316], [71.212639, -27.620592], [71.207802, -27.611937], [71.202797, -27.603346], [71.197609, -27.594822], [71.192253, -27.586363], [71.186707, -27.577967], [71.180984, -27.569633], [71.175079, -27.561365], [71.168991, -27.553156], [71.16272, -27.54501], [71.156258, -27.536922], [71.149612, -27.528894], [71.142769, -27.520924], [71.135735, -27.513014], [71.12851, -27.505159], [71.121094, -27.49736], [71.113472, -27.489618], [71.105659, -27.48193], [71.097649, -27.474297], [71.089432, -27.466715]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 19, \"se\": 19, \"sw\": 19, \"nw\": 19, \"validDateTime\": \"2024-01-30T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 65.0, \"forecastHour\": 120}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[70.854149, -27.701994], [70.854149, -27.701994], [70.846336, -27.694368], [70.83847, -27.687075], [70.830559, -27.680109], [70.822578, -27.67347], [70.814537, -27.667152], [70.806419, -27.661158], [70.798218, -27.655479], [70.789932, -27.650116], [70.781555, -27.645067], [70.773087, -27.640327], [70.764503, -27.635895], [70.755814, -27.631767], [70.747002, -27.627943], [70.738068, -27.624418], [70.729004, -27.621189], [70.719803, -27.618256], [70.710457, -27.615614], [70.700966, -27.613262], [70.691315, -27.611197], [70.681503, -27.609413], [70.671524, -27.607912], [70.661369, -27.606691], [70.651031, -27.605745], [70.640511, -27.605072], [70.629791, -27.604671], [70.618874, -27.604538], [70.607956, -27.604671], [70.597237, -27.605072], [70.586716, -27.605745], [70.576378, -27.606691], [70.566223, -27.607912], [70.556244, -27.609413], [70.546432, -27.611197], [70.536781, -27.613262], [70.52729, -27.615614], [70.517944, -27.618256], [70.508743, -27.621189], [70.49968, -27.624418], [70.490746, -27.627943], [70.481934, -27.631767], [70.473244, -27.635895], [70.464661, -27.640327], [70.456192, -27.645067], [70.447815, -27.650116], [70.439529, -27.655479], [70.431328, -27.661158], [70.42321, -27.667152], [70.415169, -27.67347], [70.407188, -27.680109], [70.399277, -27.687075], [70.391411, -27.694368], [70.383598, -27.701994], [70.375977, -27.709808], [70.368675, -27.71767], [70.36171, -27.725586], [70.355072, -27.733564], [70.348755, -27.741608], [70.342758, -27.749727], [70.337082, -27.757925], [70.331718, -27.766209], [70.326668, -27.774586], [70.32193, -27.783062], [70.317497, -27.791641], [70.31337, -27.800335], [70.309547, -27.809145], [70.306023, -27.818079], [70.302795, -27.827143], [70.299858, -27.836344], [70.297218, -27.84569], [70.294861, -27.855183], [70.292801, -27.864832], [70.291016, -27.874645], [70.289513, -27.884624], [70.288292, -27.894779], [70.287346, -27.905115], [70.286674, -27.91564], [70.28627, -27.926355], [70.28614, -27.937273], [70.28627, -27.948191], [70.286674, -27.958906], [70.287346, -27.969431], [70.288292, -27.979767], [70.289513, -27.989922], [70.291016, -27.999901], [70.292801, -28.009714], [70.294861, -28.019363], [70.297218, -28.028856], [70.299858, -28.038202], [70.302795, -28.047403], [70.306023, -28.056467], [70.309547, -28.065401], [70.31337, -28.074211], [70.317497, -28.082905], [70.32193, -28.091484], [70.326668, -28.09996], [70.331718, -28.108337], [70.337082, -28.116621], [70.342758, -28.124819], [70.348755, -28.132938], [70.355072, -28.140982], [70.36171, -28.14896], [70.368675, -28.156876], [70.375977, -28.164738], [70.383598, -28.172552], [70.391411, -28.180178], [70.399277, -28.187471], [70.407188, -28.194437], [70.415169, -28.201077], [70.42321, -28.207394], [70.431328, -28.213388], [70.439529, -28.219067], [70.447815, -28.22443], [70.456192, -28.229479], [70.464661, -28.234219], [70.473244, -28.238651], [70.481934, -28.242779], [70.490746, -28.246603], [70.49968, -28.250128], [70.508743, -28.253357], [70.517944, -28.25629], [70.52729, -28.258932], [70.536781, -28.261284], [70.546432, -28.26335], [70.556244, -28.265133], [70.566223, -28.266634], [70.576378, -28.267855], [70.586716, -28.268801], [70.597237, -28.269474], [70.607956, -28.269875], [70.618874, -28.270008], [70.629791, -28.269875], [70.640511, -28.269474], [70.651031, -28.268801], [70.661369, -28.267855], [70.671524, -28.266634], [70.681503, -28.265133], [70.691315, -28.26335], [70.700966, -28.261284], [70.710457, -28.258932], [70.719803, -28.25629], [70.729004, -28.253357], [70.738068, -28.250128], [70.747002, -28.246603], [70.755814, -28.242779], [70.764503, -28.238651], [70.773087, -28.234219], [70.781555, -28.229479], [70.789932, -28.22443], [70.798218, -28.219067], [70.806419, -28.213388], [70.814537, -28.207394], [70.822578, -28.201077], [70.830559, -28.194437], [70.83847, -28.187471], [70.846336, -28.180178], [70.854149, -28.172552], [70.861771, -28.164738], [70.869072, -28.156876], [70.876038, -28.14896], [70.882675, -28.140982], [70.888992, -28.132938], [70.894989, -28.124819], [70.900665, -28.116621], [70.906029, -28.108337], [70.911079, -28.09996], [70.915817, -28.091484], [70.92025, -28.082905], [70.924377, -28.074211], [70.9282, -28.065401], [70.931725, -28.056467], [70.934952, -28.047403], [70.937889, -28.038202], [70.940529, -28.028856], [70.942886, -28.019363], [70.944946, -28.009714], [70.946732, -27.999901], [70.948235, -27.989922], [70.949455, -27.979767], [70.950401, -27.969431], [70.951073, -27.958906], [70.951477, -27.948191], [70.951607, -27.937273], [70.951477, -27.926355], [70.951073, -27.91564], [70.950401, -27.905115], [70.949455, -27.894779], [70.948235, -27.884624], [70.946732, -27.874645], [70.944946, -27.864832], [70.942886, -27.855183], [70.940529, -27.84569], [70.937889, -27.836344], [70.934952, -27.827143], [70.931725, -27.818079], [70.9282, -27.809145], [70.924377, -27.800335], [70.92025, -27.791641], [70.915817, -27.783062], [70.911079, -27.774586], [70.906029, -27.766209], [70.900665, -27.757925], [70.894989, -27.749727], [70.888992, -27.741608], [70.882675, -27.733564], [70.876038, -27.725586], [70.869072, -27.71767], [70.861771, -27.709808], [70.854149, -27.701994]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-26T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 24}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[87.167961, -16.384733], [87.167961, -16.384733], [87.159363, -16.377663], [87.150787, -16.370667], [87.142235, -16.363747], [87.133698, -16.356899], [87.125175, -16.350126], [87.116676, -16.343431], [87.108185, -16.336811], [87.099709, -16.330269], [87.09124, -16.323803], [87.082779, -16.317415], [87.074333, -16.311106], [87.065895, -16.304874], [87.057457, -16.298723], [87.049026, -16.29265], [87.040596, -16.286659], [87.032166, -16.280748], [87.023735, -16.274918], [87.015305, -16.269171], [87.006866, -16.263504], [86.998428, -16.257921], [86.989983, -16.25242], [86.981529, -16.247004], [86.973068, -16.241673], [86.964592, -16.236423], [86.956108, -16.231262], [86.947609, -16.226185], [86.939095, -16.221193], [86.930565, -16.21629], [86.922012, -16.211472], [86.913445, -16.206743], [86.904854, -16.202101], [86.896248, -16.197548], [86.887611, -16.193085], [86.878952, -16.188711], [86.870262, -16.184427], [86.861549, -16.180233], [86.852806, -16.17613], [86.844032, -16.172119], [86.83522, -16.168201], [86.826385, -16.164375], [86.817505, -16.160641], [86.808594, -16.157001], [86.799637, -16.153456], [86.790649, -16.150005], [86.781616, -16.146648], [86.772537, -16.143389], [86.76342, -16.140223], [86.754257, -16.137156], [86.745041, -16.134184], [86.735786, -16.13131], [86.726471, -16.128534], [86.71711, -16.125856], [86.707695, -16.123278], [86.698227, -16.1208], [86.688705, -16.118422], [86.679123, -16.116142], [86.669479, -16.113964], [86.659782, -16.111889], [86.650017, -16.109915], [86.64019, -16.108042], [86.630302, -16.106274], [86.620346, -16.104607], [86.610329, -16.103046], [86.600235, -16.101587], [86.590073, -16.100235], [86.579842, -16.098988], [86.569534, -16.097847], [86.559151, -16.096813], [86.548698, -16.095884], [86.538162, -16.095064], [86.52755, -16.094351], [86.516853, -16.093746], [86.506081, -16.09325], [86.495216, -16.092863], [86.484276, -16.092587], [86.473244, -16.092421], [86.462128, -16.092365], [86.451012, -16.092421], [86.43998, -16.092587], [86.429039, -16.092863], [86.418175, -16.09325], [86.407402, -16.093746], [86.396706, -16.094351], [86.386093, -16.095064], [86.375557, -16.095884], [86.365105, -16.096813], [86.354721, -16.097847], [86.344414, -16.098988], [86.334183, -16.100235], [86.32402, -16.101587], [86.313927, -16.103046], [86.303909, -16.104607], [86.293953, -16.106274], [86.284058, -16.108042], [86.274239, -16.109915], [86.264473, -16.111889], [86.254776, -16.113964], [86.245132, -16.116142], [86.23555, -16.118422], [86.226028, -16.1208], [86.21656, -16.123278], [86.207146, -16.125856], [86.197784, -16.128534], [86.188469, -16.13131], [86.179214, -16.134184], [86.169998, -16.137156], [86.160835, -16.140223], [86.151718, -16.143389], [86.142639, -16.146648], [86.133606, -16.150005], [86.124619, -16.153456], [86.115662, -16.157001], [86.10675, -16.160641], [86.09787, -16.164375], [86.089035, -16.168201], [86.080223, -16.172119], [86.071449, -16.17613], [86.062706, -16.180233], [86.053993, -16.184427], [86.045303, -16.188711], [86.036644, -16.193085], [86.028008, -16.197548], [86.019402, -16.202101], [86.010811, -16.206743], [86.002243, -16.211472], [85.99369, -16.21629], [85.985161, -16.221193], [85.976646, -16.226185], [85.968147, -16.231262], [85.959663, -16.236423], [85.951187, -16.241673], [85.942726, -16.247004], [85.934273, -16.25242], [85.925827, -16.257921], [85.917389, -16.263504], [85.908951, -16.269171], [85.90052, -16.274918], [85.89209, -16.280748], [85.883659, -16.286659], [85.875229, -16.29265], [85.866798, -16.298723], [85.85836, -16.304874], [85.849922, -16.311106], [85.841476, -16.317415], [85.833015, -16.323803], [85.824547, -16.330269], [85.816071, -16.336811], [85.807579, -16.343431], [85.79908, -16.350126], [85.790558, -16.356899], [85.782021, -16.363747], [85.773468, -16.370667], [85.764893, -16.377663], [85.756294, -16.384733], [85.747665, -16.391859], [85.739075, -16.39896], [85.730522, -16.406044], [85.722008, -16.413107], [85.713531, -16.420153], [85.705101, -16.427183], [85.696701, -16.4342], [85.688354, -16.441204], [85.680046, -16.448196], [85.671776, -16.455179], [85.663559, -16.462154], [85.655388, -16.469124], [85.647263, -16.476089], [85.639191, -16.483051], [85.631165, -16.490011], [85.623192, -16.496971], [85.615265, -16.503935], [85.607399, -16.5109], [85.599579, -16.51787], [85.59182, -16.524847], [85.584114, -16.531832], [85.576469, -16.538828], [85.568878, -16.545834], [85.561348, -16.552853], [85.553879, -16.559887], [85.546478, -16.566936], [85.539131, -16.574003], [85.531845, -16.581091], [85.524635, -16.588198], [85.517479, -16.595327], [85.510399, -16.602482], [85.50338, -16.609661], [85.496437, -16.616869], [85.489555, -16.624105], [85.48275, -16.631371], [85.476013, -16.638668], [85.469353, -16.646], [85.462769, -16.653368], [85.456261, -16.66077], [85.449821, -16.668213], [85.443466, -16.675695], [85.437187, -16.683218], [85.430984, -16.690784], [85.424866, -16.698397], [85.418831, -16.706055], [85.412872, -16.71376], [85.407005, -16.721516], [85.401222, -16.729321], [85.395515, -16.737181], [85.389908, -16.745092], [85.384384, -16.753061], [85.378944, -16.761087], [85.373596, -16.769175], [85.368347, -16.777321], [85.363182, -16.785528], [85.358116, -16.7938], [85.353142, -16.802137], [85.348259, -16.810543], [85.343475, -16.819016], [85.338791, -16.827559], [85.334206, -16.836174], [85.32972, -16.844862], [85.325333, -16.853626], [85.321053, -16.862465], [85.316872, -16.871384], [85.31279, -16.880383], [85.308823, -16.889462], [85.304955, -16.898623], [85.301193, -16.907869], [85.297546, -16.917202], [85.294006, -16.926622], [85.290573, -16.936132], [85.287254, -16.945732], [85.284042, -16.955425], [85.280952, -16.965212], [85.277969, -16.975096], [85.275108, -16.985075], [85.272362, -16.995153], [85.26973, -17.005333], [85.26722, -17.015614], [85.264832, -17.025997], [85.262566, -17.036488], [85.260414, -17.047085], [85.258392, -17.057789], [85.256493, -17.068604], [85.254715, -17.079531], [85.253067, -17.09057], [85.251518, -17.101673], [85.250046, -17.11274], [85.248657, -17.123772], [85.247337, -17.134768], [85.246109, -17.145729], [85.244949, -17.156654], [85.243881, -17.167547], [85.242882, -17.178404], [85.241966, -17.189226], [85.241135, -17.200014], [85.240387, -17.210768], [85.239716, -17.221489], [85.239128, -17.232174], [85.238625, -17.242826], [85.238197, -17.253445], [85.237854, -17.26403], [85.237602, -17.274582], [85.237427, -17.285101], [85.237335, -17.295588], [85.237328, -17.30604], [85.237404, -17.31646], [85.237564, -17.326847], [85.237816, -17.337202], [85.238144, -17.347525], [85.238564, -17.357815], [85.239067, -17.368073], [85.239655, -17.3783], [85.240334, -17.388494], [85.241096, -17.398657], [85.241943, -17.408789], [85.242882, -17.41889], [85.243904, -17.428959], [85.245018, -17.438995], [85.246223, -17.449003], [85.247513, -17.458979], [85.248894, -17.468925], [85.250359, -17.47884], [85.251915, -17.488726], [85.253563, -17.498579], [85.255302, -17.508404], [85.257133, -17.5182], [85.259048, -17.527964], [85.261063, -17.537699], [85.263161, -17.547405], [85.265358, -17.557081], [85.267639, -17.566729], [85.27002, -17.576347], [85.272491, -17.585938], [85.275055, -17.595497], [85.27771, -17.60503], [85.280464, -17.614532], [85.283302, -17.624008], [85.28624, -17.633455], [85.289276, -17.642874], [85.292404, -17.652264], [85.295624, -17.661627], [85.298943, -17.670963], [85.302361, -17.680271], [85.30587, -17.689552], [85.309479, -17.698805], [85.313179, -17.708031], [85.316978, -17.717232], [85.320877, -17.726404], [85.324875, -17.73555], [85.328964, -17.744669], [85.33316, -17.753763], [85.337448, -17.762829], [85.341835, -17.77187], [85.346321, -17.780886], [85.350914, -17.789875], [85.355598, -17.798838], [85.36039, -17.807777], [85.365273, -17.816689], [85.370262, -17.825577], [85.375351, -17.83444], [85.380547, -17.843277], [85.385834, -17.852091], [85.391228, -17.860878], [85.396729, -17.869642], [85.402328, -17.878382], [85.408028, -17.887096], [85.413834, -17.895788], [85.419746, -17.904455], [85.425758, -17.913097], [85.431877, -17.921717], [85.438095, -17.930313], [85.44442, -17.938887], [85.450851, -17.947435], [85.45739, -17.955963], [85.464035, -17.964466], [85.470779, -17.972946], [85.477631, -17.981405], [85.484596, -17.989841], [85.491661, -17.998255], [85.49884, -18.006645], [85.506119, -18.015015], [85.513512, -18.023361], [85.521011, -18.031687], [85.52858, -18.039953], [85.536171, -18.048117], [85.543793, -18.056181], [85.551445, -18.064144], [85.559113, -18.072008], [85.566818, -18.079773], [85.574547, -18.08744], [85.582306, -18.095007], [85.590088, -18.102476], [85.5979, -18.109846], [85.605736, -18.117121], [85.613609, -18.124298], [85.621506, -18.131378], [85.629433, -18.138361], [85.637383, -18.145248], [85.64537, -18.152042], [85.653381, -18.158739], [85.661423, -18.16534], [85.669495, -18.17185], [85.677597, -18.178265], [85.68573, -18.184586], [85.693893, -18.190813], [85.702087, -18.196947], [85.710312, -18.20299], [85.718567, -18.208941], [85.726852, -18.214798], [85.735168, -18.220566], [85.743515, -18.226242], [85.751892, -18.231829], [85.760307, -18.237326], [85.768753, -18.242731], [85.777229, -18.248049], [85.785736, -18.253277], [85.794273, -18.258417], [85.802849, -18.26347], [85.811455, -18.268433], [85.820091, -18.27331], [85.828766, -18.278099], [85.837471, -18.282803], [85.846214, -18.28742], [85.854988, -18.29195], [85.8638, -18.296396], [85.872643, -18.300756], [85.881516, -18.305033], [85.890427, -18.309225], [85.899376, -18.313334], [85.908356, -18.317358], [85.917374, -18.321299], [85.92643, -18.325157], [85.935516, -18.328934], [85.944641, -18.332628], [85.953804, -18.336241], [85.962997, -18.339773], [85.972229, -18.343224], [85.981506, -18.346594], [85.990807, -18.349886], [86.000153, -18.353096], [86.009537, -18.356228], [86.018951, -18.359282], [86.028412, -18.362257], [86.037903, -18.365152], [86.047432, -18.367971], [86.057007, -18.370714], [86.066612, -18.373379], [86.076263, -18.375967], [86.085945, -18.378479], [86.095673, -18.380915], [86.105438, -18.383276], [86.115242, -18.385563], [86.125084, -18.387775], [86.134964, -18.389912], [86.14489, -18.391975], [86.154854, -18.393967], [86.164856, -18.395884], [86.174904, -18.397728], [86.18499, -18.399502], [86.195114, -18.401201], [86.205276, -18.402832], [86.215485, -18.40439], [86.225739, -18.405876], [86.236031, -18.407295], [86.246361, -18.408642], [86.256737, -18.40992], [86.267159, -18.411129], [86.277618, -18.412268], [86.288116, -18.41334], [86.29866, -18.414343], [86.30925, -18.415279], [86.319885, -18.416149], [86.330559, -18.41695], [86.341278, -18.417686], [86.352043, -18.418356], [86.362846, -18.418961], [86.373703, -18.4195], [86.384598, -18.419973], [86.395538, -18.420383], [86.406525, -18.420729], [86.417549, -18.421011], [86.428627, -18.421228], [86.439751, -18.421385], [86.450912, -18.421478], [86.462128, -18.421509], [86.473343, -18.421478], [86.484505, -18.421385], [86.495628, -18.421228], [86.506706, -18.421011], [86.517731, -18.420729], [86.528717, -18.420383], [86.539658, -18.419973], [86.550552, -18.4195], [86.561409, -18.418961], [86.572212, -18.418356], [86.582977, -18.417686], [86.593697, -18.41695], [86.60437, -18.416149], [86.615005, -18.415279], [86.625595, -18.414343], [86.636139, -18.41334], [86.646637, -18.412268], [86.657097, -18.411129], [86.667519, -18.40992], [86.677895, -18.408642], [86.688225, -18.407295], [86.698517, -18.405876], [86.708771, -18.40439], [86.718979, -18.402832], [86.729141, -18.401201], [86.739265, -18.399502], [86.749352, -18.397728], [86.759399, -18.395884], [86.769402, -18.393967], [86.779366, -18.391975], [86.789291, -18.389912], [86.799171, -18.387775], [86.809013, -18.385563], [86.818817, -18.383276], [86.828583, -18.380915], [86.83831, -18.378479], [86.847992, -18.375967], [86.857643, -18.373379], [86.867249, -18.370714], [86.876823, -18.367971], [86.886353, -18.365152], [86.895844, -18.362257], [86.905304, -18.359282], [86.914719, -18.356228], [86.924103, -18.353096], [86.933449, -18.349886], [86.942749, -18.346594], [86.952026, -18.343224], [86.961258, -18.339773], [86.970451, -18.336241], [86.979614, -18.332628], [86.988739, -18.328934], [86.997826, -18.325157], [87.006882, -18.321299], [87.0159, -18.317358], [87.024879, -18.313334], [87.033829, -18.309225], [87.04274, -18.305033], [87.051613, -18.300756], [87.060455, -18.296396], [87.069267, -18.29195], [87.078041, -18.28742], [87.086784, -18.282803], [87.09549, -18.278099], [87.104164, -18.27331], [87.112801, -18.268433], [87.121407, -18.26347], [87.129982, -18.258417], [87.138519, -18.253277], [87.147026, -18.248049], [87.155502, -18.242731], [87.163948, -18.237326], [87.172363, -18.231829], [87.18074, -18.226242], [87.189087, -18.220566], [87.197403, -18.214798], [87.205688, -18.208941], [87.213943, -18.20299], [87.222168, -18.196947], [87.230362, -18.190813], [87.238525, -18.184586], [87.246658, -18.178265], [87.254761, -18.17185], [87.262833, -18.16534], [87.270874, -18.158739], [87.278885, -18.152042], [87.286873, -18.145248], [87.294823, -18.138361], [87.30275, -18.131378], [87.310646, -18.124298], [87.31852, -18.117121], [87.326355, -18.109846], [87.334167, -18.102476], [87.341949, -18.095007], [87.349709, -18.08744], [87.357437, -18.079773], [87.365143, -18.072008], [87.37281, -18.064144], [87.380463, -18.056181], [87.388084, -18.048117], [87.395676, -18.039953], [87.403244, -18.031687], [87.410744, -18.023361], [87.418137, -18.015015], [87.425415, -18.006645], [87.432594, -17.998255], [87.439659, -17.989841], [87.446625, -17.981405], [87.453476, -17.972946], [87.46022, -17.964466], [87.466866, -17.955963], [87.473404, -17.947435], [87.479836, -17.938887], [87.48616, -17.930313], [87.492378, -17.921717], [87.498497, -17.913097], [87.504509, -17.904455], [87.510422, -17.895788], [87.516228, -17.887096], [87.521927, -17.878382], [87.527527, -17.869642], [87.533028, -17.860878], [87.538422, -17.852091], [87.543709, -17.843277], [87.548904, -17.83444], [87.553993, -17.825577], [87.558983, -17.816689], [87.563866, -17.807777], [87.568657, -17.798838], [87.573341, -17.789875], [87.577934, -17.780886], [87.58242, -17.77187], [87.586807, -17.762829], [87.591095, -17.753763], [87.595291, -17.744669], [87.59938, -17.73555], [87.603378, -17.726404], [87.607277, -17.717232], [87.611076, -17.708031], [87.614777, -17.698805], [87.618385, -17.689552], [87.621895, -17.680271], [87.625313, -17.670963], [87.628632, -17.661627], [87.631851, -17.652264], [87.634979, -17.642874], [87.638016, -17.633455], [87.640953, -17.624008], [87.643791, -17.614532], [87.646545, -17.60503], [87.6492, -17.595497], [87.651764, -17.585938], [87.654236, -17.576347], [87.656616, -17.566729], [87.658897, -17.557081], [87.661095, -17.547405], [87.663193, -17.537699], [87.665207, -17.527964], [87.667122, -17.5182], [87.668953, -17.508404], [87.670692, -17.498579], [87.67234, -17.488726], [87.673897, -17.47884], [87.675362, -17.468925], [87.676743, -17.458979], [87.678032, -17.449003], [87.679237, -17.438995], [87.680351, -17.428959], [87.681374, -17.41889], [87.682312, -17.408789], [87.683159, -17.398657], [87.683922, -17.388494], [87.684601, -17.3783], [87.685188, -17.368073], [87.685692, -17.357815], [87.686111, -17.347525], [87.68644, -17.337202], [87.686691, -17.326847], [87.686852, -17.31646], [87.686928, -17.30604], [87.68692, -17.295588], [87.686829, -17.285101], [87.686653, -17.274582], [87.686401, -17.26403], [87.686058, -17.253445], [87.685631, -17.242826], [87.685127, -17.232174], [87.68454, -17.221489], [87.683868, -17.210768], [87.683121, -17.200014], [87.682289, -17.189226], [87.681374, -17.178404], [87.680374, -17.167547], [87.679306, -17.156654], [87.678146, -17.145729], [87.676918, -17.134768], [87.675598, -17.123772], [87.67421, -17.11274], [87.672737, -17.101673], [87.671188, -17.09057], [87.66954, -17.079531], [87.667763, -17.068604], [87.665863, -17.057789], [87.663841, -17.047085], [87.66169, -17.036488], [87.659424, -17.025997], [87.657036, -17.015614], [87.654526, -17.005333], [87.651894, -16.995153], [87.649147, -16.985075], [87.646286, -16.975096], [87.643303, -16.965212], [87.640213, -16.955425], [87.637001, -16.945732], [87.633682, -16.936132], [87.630249, -16.926622], [87.626709, -16.917202], [87.623062, -16.907869], [87.619301, -16.898623], [87.615433, -16.889462], [87.611465, -16.880383], [87.607384, -16.871384], [87.603203, -16.862465], [87.598923, -16.853626], [87.594536, -16.844862], [87.59005, -16.836174], [87.585464, -16.827559], [87.58078, -16.819016], [87.575996, -16.810543], [87.571114, -16.802137], [87.566139, -16.7938], [87.561073, -16.785528], [87.555908, -16.777319], [87.550659, -16.769175], [87.545311, -16.761087], [87.539871, -16.753061], [87.534348, -16.745092], [87.52874, -16.737181], [87.523033, -16.729321], [87.51725, -16.721516], [87.511383, -16.71376], [87.505424, -16.706055], [87.49939, -16.698397], [87.493271, -16.690784], [87.487068, -16.683218], [87.480789, -16.675695], [87.474434, -16.668213], [87.467995, -16.66077], [87.461487, -16.653368], [87.454903, -16.646], [87.448242, -16.638668], [87.441505, -16.631371], [87.4347, -16.624105], [87.427818, -16.616869], [87.420876, -16.609661], [87.413857, -16.602482], [87.406776, -16.595327], [87.39962, -16.588198], [87.39241, -16.581091], [87.385124, -16.574003], [87.377777, -16.566936], [87.370377, -16.559887], [87.362907, -16.552853], [87.355377, -16.545834], [87.347786, -16.538828], [87.340141, -16.531832], [87.332436, -16.524847], [87.324677, -16.51787], [87.316856, -16.5109], [87.30899, -16.503935], [87.301064, -16.496971], [87.293091, -16.490011], [87.285065, -16.483051], [87.276993, -16.476089], [87.268867, -16.469124], [87.260696, -16.462154], [87.25248, -16.455179], [87.244209, -16.448196], [87.235901, -16.441204], [87.227554, -16.4342], [87.219154, -16.427183], [87.210724, -16.420153], [87.202248, -16.413107], [87.193733, -16.406044], [87.185181, -16.39896], [87.17659, -16.391859], [87.167961, -16.384733]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"50kt\", \"ne\": 34, \"se\": 39, \"sw\": 39, \"nw\": 34, \"validDateTime\": \"2024-01-26T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 24}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[86.815048, -16.737652], [86.815048, -16.737652], [86.806572, -16.730709], [86.798134, -16.723909], [86.789734, -16.717257], [86.781357, -16.710752], [86.773003, -16.704399], [86.764664, -16.698198], [86.756332, -16.692152], [86.748016, -16.686262], [86.739693, -16.680531], [86.731361, -16.674957], [86.723022, -16.669546], [86.714668, -16.664299], [86.706291, -16.659218], [86.697884, -16.654305], [86.689438, -16.649561], [86.680954, -16.644989], [86.672432, -16.640589], [86.663857, -16.636364], [86.65522, -16.632317], [86.646523, -16.628448], [86.637764, -16.62476], [86.628929, -16.621256], [86.62001, -16.617935], [86.611015, -16.614801], [86.601929, -16.611856], [86.592743, -16.6091], [86.583458, -16.606539], [86.574066, -16.60417], [86.564568, -16.601997], [86.554947, -16.600023], [86.545197, -16.598248], [86.535324, -16.596674], [86.525314, -16.595304], [86.515167, -16.594141], [86.504875, -16.593184], [86.494431, -16.592436], [86.483826, -16.5919], [86.473061, -16.591578], [86.462128, -16.591469], [86.451195, -16.591578], [86.44043, -16.5919], [86.429825, -16.592436], [86.41938, -16.593184], [86.409088, -16.594141], [86.398941, -16.595304], [86.388931, -16.596674], [86.379059, -16.598248], [86.369308, -16.600023], [86.359688, -16.601997], [86.350189, -16.60417], [86.340797, -16.606539], [86.331512, -16.6091], [86.322327, -16.611856], [86.31324, -16.614801], [86.304245, -16.617935], [86.295326, -16.621256], [86.286491, -16.62476], [86.277733, -16.628448], [86.269035, -16.632317], [86.260399, -16.636364], [86.251823, -16.640589], [86.243301, -16.644989], [86.234818, -16.649561], [86.226372, -16.654305], [86.217964, -16.659218], [86.209587, -16.664299], [86.201233, -16.669546], [86.192894, -16.674957], [86.184563, -16.680531], [86.176239, -16.686262], [86.167923, -16.692152], [86.159592, -16.698198], [86.151253, -16.704399], [86.142899, -16.710752], [86.134521, -16.717257], [86.126122, -16.723909], [86.117683, -16.730709], [86.109207, -16.737652], [86.100693, -16.744684], [86.092255, -16.751678], [86.083893, -16.758636], [86.075615, -16.765568], [86.067421, -16.772478], [86.059311, -16.779371], [86.051292, -16.786257], [86.043381, -16.793139], [86.035561, -16.800022], [86.027847, -16.806915], [86.020248, -16.813824], [86.012756, -16.820753], [86.005386, -16.827711], [85.998138, -16.834702], [85.99102, -16.841732], [85.984024, -16.848808], [85.977165, -16.855938], [85.970444, -16.863125], [85.96386, -16.870377], [85.957428, -16.877699], [85.951149, -16.885096], [85.945023, -16.892578], [85.939049, -16.900148], [85.933243, -16.907814], [85.927605, -16.915581], [85.922134, -16.923454], [85.91684, -16.931442], [85.911728, -16.93955], [85.906792, -16.947783], [85.902054, -16.956148], [85.897499, -16.964653], [85.893143, -16.973299], [85.888985, -16.982098], [85.885025, -16.991053], [85.881279, -17.000172], [85.877747, -17.009459], [85.874428, -17.018919], [85.87133, -17.028563], [85.868462, -17.038393], [85.865814, -17.048416], [85.863403, -17.05864], [85.861221, -17.069069], [85.859291, -17.079712], [85.857597, -17.09057], [85.856087, -17.101654], [85.854736, -17.112669], [85.853539, -17.123613], [85.852509, -17.134487], [85.851631, -17.145292], [85.850922, -17.156029], [85.850372, -17.166698], [85.849991, -17.177301], [85.849777, -17.187836], [85.849724, -17.198305], [85.849846, -17.20871], [85.850136, -17.219048], [85.850601, -17.229322], [85.851227, -17.239532], [85.852036, -17.24968], [85.85302, -17.259764], [85.854172, -17.269787], [85.855507, -17.279747], [85.857025, -17.289648], [85.858719, -17.299488], [85.860588, -17.309267], [85.862648, -17.318989], [85.864883, -17.32865], [85.86731, -17.338253], [85.869919, -17.347799], [85.872719, -17.357288], [85.875702, -17.366722], [85.878876, -17.376099], [85.88224, -17.38542], [85.885803, -17.394688], [85.889557, -17.4039], [85.893501, -17.413059], [85.897644, -17.422167], [85.901985, -17.431221], [85.906517, -17.440222], [85.911255, -17.449173], [85.916199, -17.458075], [85.921333, -17.466925], [85.926682, -17.475725], [85.932228, -17.484476], [85.937981, -17.493179], [85.943939, -17.501835], [85.950111, -17.510443], [85.95649, -17.519003], [85.963081, -17.527519], [85.969879, -17.535988], [85.976898, -17.544413], [85.984123, -17.552792], [85.99157, -17.561129], [85.999153, -17.569344], [86.006783, -17.577358], [86.014473, -17.585173], [86.022217, -17.592789], [86.030014, -17.600208], [86.037865, -17.607433], [86.045776, -17.614466], [86.053749, -17.621305], [86.061775, -17.627956], [86.069862, -17.634417], [86.078011, -17.640692], [86.08622, -17.64678], [86.09449, -17.652685], [86.102821, -17.658407], [86.111214, -17.663948], [86.119675, -17.66931], [86.128204, -17.674494], [86.136787, -17.679502], [86.145447, -17.684336], [86.154167, -17.688995], [86.162964, -17.693483], [86.171822, -17.697802], [86.180756, -17.701952], [86.189751, -17.705935], [86.198822, -17.709753], [86.207962, -17.713406], [86.217178, -17.716898], [86.226471, -17.720228], [86.235832, -17.7234], [86.24527, -17.726414], [86.254784, -17.729271], [86.264374, -17.731976], [86.27404, -17.734526], [86.283783, -17.736925], [86.29361, -17.739174], [86.303513, -17.741274], [86.313492, -17.743227], [86.323555, -17.745037], [86.333702, -17.746702], [86.343933, -17.748224], [86.354248, -17.749607], [86.364639, -17.750851], [86.375122, -17.751957], [86.385689, -17.752926], [86.396347, -17.753761], [86.407082, -17.754465], [86.417915, -17.755035], [86.428833, -17.755478], [86.439842, -17.755791], [86.450935, -17.755978], [86.462128, -17.756041], [86.47332, -17.755978], [86.484413, -17.755791], [86.495422, -17.755478], [86.50634, -17.755035], [86.517174, -17.754465], [86.527908, -17.753761], [86.538567, -17.752926], [86.549133, -17.751957], [86.559616, -17.750851], [86.570007, -17.749607], [86.580322, -17.748224], [86.590553, -17.746702], [86.6007, -17.745037], [86.610764, -17.743227], [86.620743, -17.741274], [86.630646, -17.739174], [86.640472, -17.736925], [86.650215, -17.734526], [86.659882, -17.731976], [86.669472, -17.729271], [86.678986, -17.726414], [86.688423, -17.7234], [86.697784, -17.720228], [86.707077, -17.716898], [86.716293, -17.713406], [86.725433, -17.709753], [86.734505, -17.705935], [86.7435, -17.701952], [86.752434, -17.697802], [86.761292, -17.693483], [86.770088, -17.688995], [86.778809, -17.684336], [86.787468, -17.679502], [86.796051, -17.674494], [86.804581, -17.66931], [86.813042, -17.663948], [86.821434, -17.658407], [86.829765, -17.652685], [86.838036, -17.64678], [86.846245, -17.640692], [86.854393, -17.634417], [86.86248, -17.627956], [86.870506, -17.621305], [86.878479, -17.614466], [86.886391, -17.607433], [86.894241, -17.600208], [86.902039, -17.592789], [86.909782, -17.585173], [86.917473, -17.577358], [86.925102, -17.569344], [86.932686, -17.561129], [86.940132, -17.552792], [86.947357, -17.544413], [86.954376, -17.535988], [86.961174, -17.527519], [86.967766, -17.519003], [86.974144, -17.510443], [86.980316, -17.501835], [86.986275, -17.493179], [86.992027, -17.484476], [86.997574, -17.475725], [87.002922, -17.466925], [87.008057, -17.458075], [87.013, -17.449173], [87.017738, -17.440222], [87.02227, -17.431221], [87.026611, -17.422167], [87.030754, -17.413059], [87.034698, -17.4039], [87.038452, -17.394688], [87.042015, -17.38542], [87.04538, -17.376099], [87.048553, -17.366722], [87.051537, -17.357288], [87.054337, -17.347799], [87.056946, -17.338253], [87.059372, -17.32865], [87.061607, -17.318989], [87.063667, -17.309267], [87.065536, -17.299488], [87.06723, -17.289648], [87.068748, -17.279747], [87.070084, -17.269787], [87.071236, -17.259764], [87.07222, -17.24968], [87.073029, -17.239532], [87.073654, -17.229322], [87.07412, -17.219048], [87.074409, -17.20871], [87.074532, -17.198305], [87.074478, -17.187836], [87.074265, -17.177301], [87.073883, -17.166698], [87.073334, -17.156029], [87.072624, -17.145292], [87.071747, -17.134487], [87.070717, -17.123613], [87.069519, -17.112669], [87.068169, -17.101656], [87.066658, -17.09057], [87.064964, -17.079712], [87.063034, -17.069069], [87.060852, -17.05864], [87.058441, -17.048416], [87.055794, -17.038393], [87.052925, -17.028563], [87.049828, -17.018919], [87.046509, -17.009459], [87.042976, -17.000172], [87.03923, -16.991053], [87.035271, -16.982098], [87.031113, -16.973301], [87.026756, -16.964653], [87.022202, -16.956148], [87.017464, -16.947783], [87.012527, -16.93955], [87.007416, -16.931442], [87.002121, -16.923454], [86.996651, -16.915581], [86.991013, -16.907814], [86.985207, -16.900148], [86.979233, -16.892578], [86.973106, -16.885096], [86.966827, -16.877699], [86.960396, -16.870377], [86.953812, -16.863125], [86.94709, -16.855938], [86.940231, -16.848808], [86.933235, -16.841732], [86.926117, -16.834702], [86.918869, -16.827711], [86.911499, -16.820753], [86.904007, -16.813824], [86.896408, -16.806915], [86.888695, -16.800022], [86.880875, -16.793139], [86.872963, -16.786257], [86.864944, -16.779371], [86.856834, -16.772478], [86.84864, -16.765568], [86.840363, -16.758636], [86.832001, -16.751678], [86.823563, -16.744684], [86.815048, -16.737652]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 24, \"se\": 24, \"sw\": 24, \"nw\": 24, \"validDateTime\": \"2024-01-26T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 24}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[86.756226, -16.796473], [86.756226, -16.796473], [86.748291, -16.788696], [86.740326, -16.781195], [86.732307, -16.773964], [86.724251, -16.767004], [86.716141, -16.760311], [86.70797, -16.753885], [86.699745, -16.747725], [86.691452, -16.741827], [86.68309, -16.736191], [86.674652, -16.730814], [86.666145, -16.725697], [86.657555, -16.720833], [86.648872, -16.716225], [86.640106, -16.71187], [86.631248, -16.707764], [86.622292, -16.703909], [86.613228, -16.7003], [86.604057, -16.696938], [86.59478, -16.693817], [86.585388, -16.690941], [86.575874, -16.688303], [86.566231, -16.685905], [86.556465, -16.683743], [86.54657, -16.681816], [86.536537, -16.680122], [86.52636, -16.678661], [86.516045, -16.677429], [86.505577, -16.676424], [86.494957, -16.675646], [86.484177, -16.675093], [86.473236, -16.674763], [86.462128, -16.674652], [86.451019, -16.674763], [86.440079, -16.675093], [86.429298, -16.675646], [86.418678, -16.676424], [86.408211, -16.677429], [86.397896, -16.678661], [86.387718, -16.680122], [86.377686, -16.681816], [86.36779, -16.683743], [86.358025, -16.685905], [86.348381, -16.688303], [86.338867, -16.690941], [86.329475, -16.693817], [86.320198, -16.696938], [86.311028, -16.7003], [86.301964, -16.703909], [86.293007, -16.707764], [86.284149, -16.71187], [86.275383, -16.716225], [86.266701, -16.720833], [86.25811, -16.725697], [86.249603, -16.730814], [86.241165, -16.736191], [86.232803, -16.741827], [86.22451, -16.747725], [86.216286, -16.753885], [86.208115, -16.760311], [86.200005, -16.767004], [86.191948, -16.773964], [86.183929, -16.781195], [86.175964, -16.788696], [86.16803, -16.796473], [86.160255, -16.804403], [86.152748, -16.812374], [86.145523, -16.820387], [86.138557, -16.828447], [86.131866, -16.836561], [86.125443, -16.844728], [86.119286, -16.852957], [86.113388, -16.861248], [86.10775, -16.86961], [86.102371, -16.878044], [86.097252, -16.886555], [86.092392, -16.895145], [86.087784, -16.903824], [86.083427, -16.91259], [86.079323, -16.921452], [86.07547, -16.93041], [86.071861, -16.939472], [86.068497, -16.948641], [86.065376, -16.95792], [86.0625, -16.967314], [86.05986, -16.976828], [86.057465, -16.986465], [86.055305, -16.996229], [86.053375, -17.006126], [86.051682, -17.016161], [86.050217, -17.026335], [86.048988, -17.036654], [86.047981, -17.047123], [86.047203, -17.057743], [86.046654, -17.068523], [86.046318, -17.079464], [86.046211, -17.09057], [86.046318, -17.101677], [86.046654, -17.112617], [86.047203, -17.123398], [86.047981, -17.134018], [86.048988, -17.144487], [86.050217, -17.154806], [86.051682, -17.16498], [86.053375, -17.175014], [86.055305, -17.184912], [86.057465, -17.194675], [86.05986, -17.204313], [86.0625, -17.213827], [86.065376, -17.223221], [86.068497, -17.2325], [86.071861, -17.241669], [86.07547, -17.250731], [86.079323, -17.259689], [86.083427, -17.268551], [86.087784, -17.277317], [86.092392, -17.285995], [86.097252, -17.294586], [86.102371, -17.303097], [86.10775, -17.311531], [86.113388, -17.319893], [86.119286, -17.328184], [86.125443, -17.336412], [86.131866, -17.34458], [86.138557, -17.352694], [86.145523, -17.360754], [86.152748, -17.368767], [86.160255, -17.376738], [86.16803, -17.384668], [86.175964, -17.392445], [86.183929, -17.399946], [86.191948, -17.407177], [86.200005, -17.414137], [86.208115, -17.42083], [86.216286, -17.427256], [86.22451, -17.433416], [86.232803, -17.439314], [86.241165, -17.44495], [86.249603, -17.450327], [86.25811, -17.455444], [86.266701, -17.460308], [86.275383, -17.464916], [86.284149, -17.469271], [86.293007, -17.473377], [86.301964, -17.477232], [86.311028, -17.480841], [86.320198, -17.484203], [86.329475, -17.487324], [86.338867, -17.4902], [86.348381, -17.492838], [86.358025, -17.495235], [86.36779, -17.497398], [86.377686, -17.499325], [86.387718, -17.501019], [86.397896, -17.50248], [86.408211, -17.503712], [86.418678, -17.504717], [86.429298, -17.505495], [86.440079, -17.506048], [86.451019, -17.506378], [86.462128, -17.506489], [86.473236, -17.506378], [86.484177, -17.506048], [86.494957, -17.505495], [86.505577, -17.504717], [86.516045, -17.503712], [86.52636, -17.50248], [86.536537, -17.501019], [86.54657, -17.499325], [86.556465, -17.497398], [86.566231, -17.495235], [86.575874, -17.492838], [86.585388, -17.4902], [86.59478, -17.487324], [86.604057, -17.484203], [86.613228, -17.480841], [86.622292, -17.477232], [86.631248, -17.473377], [86.640106, -17.469271], [86.648872, -17.464916], [86.657555, -17.460308], [86.666145, -17.455444], [86.674652, -17.450327], [86.68309, -17.44495], [86.691452, -17.439314], [86.699745, -17.433416], [86.70797, -17.427256], [86.716141, -17.42083], [86.724251, -17.414137], [86.732307, -17.407177], [86.740326, -17.399946], [86.748291, -17.392445], [86.756226, -17.384668], [86.764, -17.376738], [86.771507, -17.368767], [86.778732, -17.360754], [86.785698, -17.352694], [86.792389, -17.34458], [86.798813, -17.336412], [86.80497, -17.328184], [86.810867, -17.319893], [86.816505, -17.311531], [86.821884, -17.303097], [86.827003, -17.294586], [86.831863, -17.285995], [86.836472, -17.277317], [86.840828, -17.268551], [86.844933, -17.259689], [86.848785, -17.250731], [86.852394, -17.241669], [86.855759, -17.2325], [86.858879, -17.223221], [86.861755, -17.213827], [86.864395, -17.204313], [86.866791, -17.194675], [86.86895, -17.184912], [86.87088, -17.175014], [86.872574, -17.16498], [86.874039, -17.154806], [86.875267, -17.144487], [86.876274, -17.134018], [86.877052, -17.123398], [86.877602, -17.112617], [86.877937, -17.101677], [86.878044, -17.09057], [86.877937, -17.079464], [86.877602, -17.068523], [86.877052, -17.057743], [86.876274, -17.047123], [86.875267, -17.036654], [86.874039, -17.026335], [86.872574, -17.016161], [86.87088, -17.006126], [86.86895, -16.996229], [86.866791, -16.986465], [86.864395, -16.976828], [86.861755, -16.967314], [86.858879, -16.95792], [86.855759, -16.948641], [86.852394, -16.939472], [86.848785, -16.93041], [86.844933, -16.921452], [86.840828, -16.91259], [86.836472, -16.903824], [86.831863, -16.895145], [86.827003, -16.886555], [86.821884, -16.878044], [86.816505, -16.86961], [86.810867, -16.861248], [86.80497, -16.852957], [86.798813, -16.844728], [86.792389, -16.836561], [86.785698, -16.828447], [86.778732, -16.820387], [86.771507, -16.812374], [86.764, -16.804403], [86.756226, -16.796473]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-27T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 48}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[82.802452, -18.499147], [82.802452, -18.499147], [82.793701, -18.492233], [82.784981, -18.485397], [82.776299, -18.478642], [82.767639, -18.471966], [82.75901, -18.46537], [82.750404, -18.45886], [82.741821, -18.452431], [82.733261, -18.446089], [82.724716, -18.439831], [82.716187, -18.433659], [82.707672, -18.427574], [82.699165, -18.421577], [82.690666, -18.41567], [82.682175, -18.409855], [82.673683, -18.404129], [82.665199, -18.398497], [82.656715, -18.392958], [82.648224, -18.387512], [82.639725, -18.38216], [82.631226, -18.376907], [82.622711, -18.37175], [82.614182, -18.36669], [82.605644, -18.361729], [82.597084, -18.356869], [82.588509, -18.35211], [82.57991, -18.347452], [82.571289, -18.342897], [82.562637, -18.338446], [82.553963, -18.334101], [82.54525, -18.329859], [82.536514, -18.325726], [82.527733, -18.321699], [82.518921, -18.317781], [82.510063, -18.313974], [82.501167, -18.310278], [82.492226, -18.306692], [82.483231, -18.303219], [82.474197, -18.299858], [82.465103, -18.296614], [82.455956, -18.293484], [82.446754, -18.29047], [82.4375, -18.287575], [82.428177, -18.284796], [82.418793, -18.282139], [82.40934, -18.2796], [82.399826, -18.277184], [82.390236, -18.274887], [82.380577, -18.272717], [82.370842, -18.270668], [82.361031, -18.268747], [82.351135, -18.266951], [82.341164, -18.265282], [82.331108, -18.263739], [82.320961, -18.262327], [82.31073, -18.261045], [82.300407, -18.259893], [82.289986, -18.258873], [82.279472, -18.257986], [82.26886, -18.257233], [82.258148, -18.256615], [82.247337, -18.256132], [82.23642, -18.255787], [82.225395, -18.255579], [82.214256, -18.255508], [82.203117, -18.255579], [82.192093, -18.255787], [82.181175, -18.256132], [82.170364, -18.256615], [82.159653, -18.257233], [82.14904, -18.257986], [82.138527, -18.258873], [82.128105, -18.259893], [82.117783, -18.261045], [82.107552, -18.262327], [82.097404, -18.263739], [82.087349, -18.265282], [82.077377, -18.266951], [82.067482, -18.268747], [82.057671, -18.270668], [82.047935, -18.272717], [82.038277, -18.274887], [82.028687, -18.277184], [82.019173, -18.2796], [82.00972, -18.282139], [82.000336, -18.284796], [81.991013, -18.287575], [81.981758, -18.29047], [81.972557, -18.293484], [81.963409, -18.296614], [81.954315, -18.299858], [81.945282, -18.303219], [81.936287, -18.306692], [81.927345, -18.310278], [81.918449, -18.313974], [81.909592, -18.317781], [81.90078, -18.321699], [81.891998, -18.325726], [81.883263, -18.329859], [81.87455, -18.334101], [81.865875, -18.338446], [81.857224, -18.342897], [81.848602, -18.347452], [81.840004, -18.35211], [81.831429, -18.356869], [81.822868, -18.361729], [81.814331, -18.36669], [81.805801, -18.37175], [81.797287, -18.376907], [81.788788, -18.38216], [81.780289, -18.387512], [81.771797, -18.392958], [81.763313, -18.398497], [81.754829, -18.404129], [81.746338, -18.409855], [81.737846, -18.41567], [81.729347, -18.421577], [81.72084, -18.427574], [81.712326, -18.433659], [81.703796, -18.439831], [81.695251, -18.446089], [81.686691, -18.452431], [81.678108, -18.45886], [81.669502, -18.46537], [81.660873, -18.471966], [81.652214, -18.478642], [81.643532, -18.485397], [81.634811, -18.492233], [81.62606, -18.499147], [81.617294, -18.506092], [81.608551, -18.513], [81.599838, -18.519876], [81.591156, -18.52672], [81.582512, -18.533533], [81.573898, -18.540321], [81.565323, -18.547087], [81.556786, -18.553829], [81.548294, -18.560555], [81.539833, -18.567261], [81.531425, -18.573956], [81.523056, -18.580637], [81.51474, -18.587311], [81.50647, -18.593977], [81.498253, -18.600641], [81.490089, -18.607302], [81.481972, -18.613964], [81.473923, -18.62063], [81.465919, -18.627302], [81.457985, -18.633984], [81.450111, -18.640675], [81.442291, -18.647381], [81.434547, -18.6541], [81.426865, -18.660841], [81.41925, -18.667601], [81.411713, -18.674385], [81.404243, -18.681194], [81.396843, -18.688032], [81.389526, -18.694902], [81.382278, -18.701803], [81.375114, -18.708742], [81.368034, -18.715719], [81.361031, -18.722736], [81.354118, -18.729797], [81.34729, -18.736904], [81.340546, -18.744059], [81.333893, -18.751265], [81.327339, -18.758524], [81.320869, -18.765839], [81.314499, -18.773212], [81.30822, -18.780647], [81.302048, -18.788143], [81.295975, -18.795708], [81.290001, -18.803339], [81.284134, -18.811041], [81.278366, -18.818815], [81.272713, -18.826666], [81.267166, -18.834597], [81.261734, -18.842606], [81.256409, -18.850698], [81.251205, -18.858877], [81.246117, -18.867144], [81.241142, -18.875502], [81.23629, -18.883953], [81.23156, -18.8925], [81.226952, -18.901144], [81.222473, -18.909889], [81.218117, -18.918737], [81.21389, -18.927691], [81.209793, -18.936752], [81.205833, -18.945925], [81.202003, -18.955212], [81.198311, -18.964611], [81.194756, -18.974131], [81.191345, -18.98377], [81.188072, -18.993534], [81.184937, -19.003422], [81.181953, -19.013437], [81.179115, -19.023584], [81.176422, -19.033865], [81.173882, -19.044279], [81.171494, -19.054832], [81.169258, -19.065527], [81.167183, -19.076363], [81.16526, -19.087345], [81.163475, -19.098343], [81.161774, -19.109304], [81.160179, -19.120228], [81.158676, -19.131115], [81.157265, -19.141966], [81.155952, -19.152779], [81.154739, -19.163555], [81.153625, -19.174295], [81.152603, -19.185001], [81.15168, -19.195669], [81.150848, -19.206301], [81.150124, -19.216896], [81.14949, -19.227457], [81.148964, -19.237982], [81.148529, -19.24847], [81.148201, -19.258924], [81.147964, -19.269344], [81.147835, -19.279728], [81.147797, -19.290075], [81.147865, -19.30039], [81.148033, -19.310669], [81.148308, -19.320913], [81.148674, -19.331123], [81.149147, -19.341299], [81.149727, -19.35144], [81.150406, -19.361549], [81.151184, -19.371622], [81.152069, -19.381662], [81.153053, -19.391668], [81.154144, -19.401642], [81.155342, -19.411581], [81.156639, -19.421488], [81.158043, -19.431362], [81.159554, -19.441202], [81.161171, -19.45101], [81.162895, -19.460785], [81.164719, -19.470528], [81.166649, -19.480236], [81.168694, -19.489914], [81.170837, -19.499559], [81.173088, -19.509172], [81.175453, -19.518755], [81.177925, -19.528305], [81.180504, -19.537823], [81.183189, -19.54731], [81.185982, -19.556765], [81.188889, -19.566191], [81.191902, -19.575583], [81.195023, -19.584946], [81.198257, -19.594276], [81.201607, -19.603577], [81.205063, -19.612848], [81.208626, -19.622087], [81.212303, -19.631298], [81.216095, -19.640476], [81.220001, -19.649626], [81.224014, -19.658745], [81.228142, -19.667835], [81.232376, -19.676895], [81.236732, -19.685926], [81.241203, -19.694927], [81.245781, -19.703899], [81.250481, -19.712843], [81.255287, -19.721758], [81.260216, -19.730642], [81.265251, -19.7395], [81.270409, -19.748327], [81.275681, -19.757128], [81.281075, -19.7659], [81.286575, -19.774643], [81.292198, -19.783358], [81.297935, -19.792046], [81.303795, -19.800707], [81.309769, -19.809338], [81.315865, -19.817944], [81.322075, -19.826521], [81.328407, -19.835072], [81.334854, -19.843594], [81.341423, -19.852091], [81.348114, -19.860559], [81.354919, -19.869003], [81.361847, -19.877419], [81.368896, -19.885809], [81.376068, -19.894173], [81.383362, -19.90251], [81.390778, -19.910822], [81.398247, -19.919043], [81.405754, -19.927149], [81.413292, -19.935141], [81.420853, -19.943018], [81.428452, -19.950783], [81.436081, -19.958435], [81.443748, -19.965977], [81.451439, -19.973404], [81.459167, -19.980722], [81.466934, -19.987928], [81.474724, -19.995026], [81.482552, -20.002012], [81.490417, -20.00889], [81.498306, -20.015659], [81.506241, -20.022322], [81.514206, -20.028875], [81.522202, -20.035322], [81.530235, -20.041662], [81.5383, -20.047897], [81.546402, -20.054026], [81.554543, -20.060051], [81.562714, -20.065969], [81.57093, -20.071787], [81.57917, -20.077499], [81.587456, -20.083109], [81.595772, -20.088615], [81.604126, -20.094021], [81.612518, -20.099325], [81.620949, -20.104528], [81.629417, -20.109632], [81.637924, -20.114635], [81.646469, -20.119539], [81.655045, -20.124346], [81.663666, -20.129053], [81.672325, -20.133663], [81.681015, -20.138174], [81.689751, -20.142591], [81.698524, -20.14691], [81.707344, -20.151134], [81.716194, -20.155264], [81.72509, -20.159298], [81.734024, -20.163239], [81.742996, -20.167086], [81.752007, -20.170839], [81.761063, -20.174501], [81.770157, -20.17807], [81.779297, -20.181549], [81.788475, -20.184935], [81.797691, -20.188232], [81.806953, -20.191439], [81.816261, -20.194555], [81.825607, -20.197584], [81.834991, -20.200523], [81.844421, -20.203377], [81.853897, -20.206141], [81.863411, -20.208818], [81.872978, -20.211411], [81.882576, -20.213917], [81.892227, -20.216337], [81.901917, -20.218674], [81.911659, -20.220926], [81.921432, -20.223093], [81.931259, -20.225178], [81.941132, -20.22718], [81.95105, -20.229101], [81.961006, -20.23094], [81.971016, -20.232697], [81.981064, -20.234373], [81.991165, -20.23597], [82.001312, -20.237488], [82.011497, -20.238926], [82.021736, -20.240284], [82.032021, -20.241566], [82.042358, -20.242769], [82.052734, -20.243896], [82.063164, -20.244947], [82.073639, -20.245922], [82.08416, -20.246822], [82.094727, -20.247646], [82.105347, -20.248396], [82.11602, -20.249071], [82.126732, -20.249674], [82.137497, -20.250204], [82.148315, -20.250662], [82.15918, -20.251047], [82.170097, -20.251362], [82.181061, -20.251606], [82.192078, -20.25178], [82.20314, -20.251883], [82.214256, -20.251917], [82.225372, -20.251883], [82.236435, -20.25178], [82.247452, -20.251606], [82.258415, -20.251362], [82.269333, -20.251047], [82.280197, -20.250662], [82.291016, -20.250204], [82.301781, -20.249674], [82.312492, -20.249071], [82.323166, -20.248396], [82.333786, -20.247646], [82.344353, -20.246822], [82.354874, -20.245922], [82.365349, -20.244947], [82.375778, -20.243896], [82.386154, -20.242769], [82.396492, -20.241566], [82.406776, -20.240284], [82.417015, -20.238926], [82.4272, -20.237488], [82.437347, -20.23597], [82.447449, -20.234373], [82.457497, -20.232697], [82.467506, -20.23094], [82.477463, -20.229101], [82.487381, -20.22718], [82.497253, -20.225178], [82.507072, -20.223093], [82.516853, -20.220926], [82.526596, -20.218674], [82.536285, -20.216337], [82.545937, -20.213917], [82.555534, -20.211411], [82.565102, -20.208818], [82.574615, -20.206141], [82.584091, -20.203377], [82.593521, -20.200523], [82.602905, -20.197584], [82.612251, -20.194555], [82.621559, -20.191439], [82.630821, -20.188232], [82.640038, -20.184935], [82.649216, -20.181549], [82.658356, -20.17807], [82.66745, -20.174501], [82.676506, -20.170839], [82.685516, -20.167086], [82.694489, -20.163239], [82.703423, -20.159298], [82.712318, -20.155264], [82.721169, -20.151134], [82.729988, -20.14691], [82.738762, -20.142591], [82.747498, -20.138174], [82.756187, -20.133663], [82.764847, -20.129053], [82.773468, -20.124346], [82.782043, -20.119539], [82.790588, -20.114635], [82.799095, -20.109632], [82.807564, -20.104528], [82.815994, -20.099325], [82.824387, -20.094021], [82.832741, -20.088615], [82.841057, -20.083109], [82.849342, -20.077499], [82.857582, -20.071787], [82.865799, -20.065969], [82.87397, -20.060051], [82.882111, -20.054026], [82.890213, -20.047897], [82.898277, -20.041662], [82.906311, -20.035322], [82.914307, -20.028875], [82.922272, -20.022322], [82.930206, -20.015659], [82.938095, -20.00889], [82.945961, -20.002012], [82.953789, -19.995026], [82.961578, -19.987928], [82.969345, -19.980722], [82.977074, -19.973404], [82.984764, -19.965977], [82.992432, -19.958435], [83.000061, -19.950783], [83.00766, -19.943018], [83.015221, -19.935141], [83.022758, -19.927149], [83.030266, -19.919043], [83.037735, -19.910822], [83.045151, -19.90251], [83.052444, -19.894173], [83.059616, -19.885809], [83.066666, -19.877419], [83.073593, -19.869003], [83.080399, -19.860559], [83.08709, -19.852091], [83.093658, -19.843594], [83.100105, -19.835072], [83.106438, -19.826521], [83.112648, -19.817944], [83.118744, -19.809338], [83.124718, -19.800705], [83.130577, -19.792046], [83.136314, -19.783358], [83.141937, -19.774643], [83.147438, -19.7659], [83.152832, -19.757128], [83.158104, -19.748327], [83.163261, -19.7395], [83.168297, -19.730642], [83.173225, -19.721758], [83.178032, -19.712843], [83.182732, -19.703899], [83.187309, -19.694927], [83.19178, -19.685926], [83.196136, -19.676895], [83.200371, -19.667835], [83.204498, -19.658745], [83.208511, -19.649626], [83.212418, -19.640476], [83.216209, -19.631298], [83.219887, -19.622087], [83.22345, -19.612848], [83.226906, -19.603577], [83.230255, -19.594276], [83.23349, -19.584946], [83.23661, -19.575583], [83.239624, -19.566191], [83.242531, -19.556765], [83.245323, -19.54731], [83.248009, -19.537823], [83.250587, -19.528305], [83.253059, -19.518755], [83.255424, -19.509172], [83.257675, -19.499559], [83.259819, -19.489914], [83.261864, -19.480236], [83.263794, -19.470526], [83.265617, -19.460785], [83.267342, -19.45101], [83.268959, -19.441202], [83.27047, -19.431362], [83.271873, -19.421488], [83.27317, -19.411581], [83.274368, -19.401642], [83.275459, -19.391668], [83.276443, -19.381662], [83.277328, -19.371622], [83.278107, -19.361549], [83.278786, -19.35144], [83.279366, -19.341299], [83.279839, -19.331123], [83.280205, -19.320913], [83.280479, -19.310669], [83.280647, -19.30039], [83.280716, -19.290075], [83.280678, -19.279728], [83.280548, -19.269344], [83.280312, -19.258924], [83.279984, -19.24847], [83.279549, -19.237982], [83.279022, -19.227457], [83.278389, -19.216896], [83.277664, -19.206301], [83.276833, -19.195669], [83.275909, -19.185001], [83.274887, -19.174295], [83.273773, -19.163555], [83.27256, -19.152779], [83.271248, -19.141966], [83.269836, -19.131115], [83.268333, -19.120228], [83.266739, -19.109304], [83.265038, -19.098343], [83.263252, -19.087345], [83.26133, -19.076363], [83.259254, -19.065527], [83.257019, -19.054832], [83.254631, -19.044279], [83.25209, -19.033865], [83.249397, -19.023584], [83.246559, -19.013437], [83.243576, -19.003422], [83.24044, -18.993534], [83.237167, -18.98377], [83.233757, -18.974131], [83.230202, -18.964611], [83.226509, -18.955212], [83.222679, -18.945925], [83.218719, -18.936752], [83.214622, -18.927691], [83.210396, -18.918737], [83.206039, -18.909889], [83.201561, -18.901144], [83.196953, -18.8925], [83.192223, -18.883953], [83.18737, -18.875502], [83.182396, -18.867144], [83.177307, -18.858877], [83.172104, -18.850698], [83.166779, -18.842606], [83.161346, -18.834597], [83.1558, -18.826666], [83.150146, -18.818815], [83.144379, -18.811041], [83.138512, -18.803339], [83.132538, -18.795708], [83.126465, -18.788143], [83.120293, -18.780647], [83.114014, -18.773212], [83.107643, -18.765839], [83.101173, -18.758524], [83.09462, -18.751265], [83.087967, -18.744059], [83.081223, -18.736904], [83.074394, -18.729797], [83.067482, -18.722736], [83.060478, -18.715719], [83.053398, -18.708742], [83.046234, -18.701803], [83.038986, -18.694902], [83.03167, -18.688032], [83.024269, -18.681194], [83.0168, -18.674385], [83.009262, -18.667601], [83.001648, -18.660841], [82.993965, -18.6541], [82.986221, -18.647381], [82.978401, -18.640675], [82.970528, -18.633984], [82.962593, -18.627302], [82.95459, -18.62063], [82.946541, -18.613964], [82.938423, -18.607302], [82.93026, -18.600641], [82.922043, -18.593977], [82.913773, -18.587311], [82.905457, -18.580637], [82.897087, -18.573956], [82.88868, -18.567261], [82.880219, -18.560555], [82.871727, -18.553829], [82.86319, -18.547087], [82.854614, -18.540321], [82.846001, -18.533533], [82.837357, -18.52672], [82.828674, -18.519876], [82.819962, -18.513], [82.811218, -18.506092], [82.802452, -18.499147]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"50kt\", \"ne\": 34, \"se\": 39, \"sw\": 39, \"nw\": 34, \"validDateTime\": \"2024-01-27T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 48}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[82.567177, -18.734426], [82.567177, -18.734426], [82.558701, -18.727484], [82.550262, -18.720684], [82.541862, -18.714031], [82.533485, -18.707527], [82.525131, -18.701174], [82.516792, -18.694973], [82.508461, -18.688927], [82.500145, -18.683037], [82.491821, -18.677305], [82.48349, -18.671732], [82.475151, -18.666321], [82.466797, -18.661074], [82.45842, -18.655993], [82.450012, -18.651079], [82.441566, -18.646336], [82.433083, -18.641764], [82.424561, -18.637363], [82.415985, -18.633139], [82.407349, -18.629091], [82.398651, -18.625223], [82.389893, -18.621534], [82.381058, -18.618031], [82.372139, -18.61471], [82.363144, -18.611576], [82.354057, -18.608631], [82.344872, -18.605875], [82.335587, -18.603313], [82.326195, -18.600945], [82.316696, -18.598772], [82.307076, -18.596798], [82.297325, -18.595022], [82.287453, -18.593449], [82.277443, -18.592079], [82.267296, -18.590916], [82.257004, -18.589958], [82.246559, -18.589211], [82.235954, -18.588675], [82.225189, -18.588352], [82.214256, -18.588243], [82.203323, -18.588352], [82.192558, -18.588675], [82.181953, -18.589211], [82.171509, -18.589958], [82.161217, -18.590916], [82.15107, -18.592079], [82.14106, -18.593449], [82.131187, -18.595022], [82.121437, -18.596798], [82.111816, -18.598772], [82.102318, -18.600945], [82.092926, -18.603313], [82.083641, -18.605875], [82.074455, -18.608631], [82.065369, -18.611576], [82.056374, -18.61471], [82.047455, -18.618031], [82.03862, -18.621534], [82.029861, -18.625223], [82.021164, -18.629091], [82.012527, -18.633139], [82.003952, -18.637363], [81.99543, -18.641764], [81.986946, -18.646336], [81.9785, -18.651079], [81.970093, -18.655993], [81.961716, -18.661074], [81.953362, -18.666321], [81.945023, -18.671732], [81.936691, -18.677305], [81.928368, -18.683037], [81.920052, -18.688927], [81.91172, -18.694973], [81.903381, -18.701174], [81.895027, -18.707527], [81.88665, -18.714031], [81.87825, -18.720684], [81.869812, -18.727484], [81.861336, -18.734426], [81.852821, -18.741459], [81.844383, -18.748453], [81.836021, -18.755411], [81.827744, -18.762342], [81.81955, -18.769253], [81.81144, -18.776146], [81.803421, -18.783031], [81.795509, -18.789913], [81.787689, -18.796797], [81.779976, -18.80369], [81.772377, -18.810598], [81.764885, -18.817528], [81.757515, -18.824486], [81.750267, -18.831476], [81.743149, -18.838507], [81.736153, -18.845583], [81.729294, -18.852713], [81.722572, -18.8599], [81.715988, -18.867151], [81.709557, -18.874474], [81.703278, -18.88187], [81.697151, -18.889353], [81.691177, -18.896923], [81.685371, -18.904589], [81.679733, -18.912355], [81.674263, -18.920229], [81.668968, -18.928217], [81.663857, -18.936325], [81.65892, -18.944557], [81.654182, -18.952923], [81.649628, -18.961428], [81.645271, -18.970074], [81.641113, -18.978872], [81.637154, -18.987827], [81.633408, -18.996946], [81.629875, -19.006233], [81.626556, -19.015694], [81.623459, -19.025337], [81.62059, -19.035168], [81.617943, -19.045191], [81.615532, -19.055414], [81.61335, -19.065844], [81.61142, -19.076487], [81.609726, -19.087345], [81.608215, -19.098429], [81.606865, -19.109444], [81.605667, -19.120388], [81.604637, -19.131262], [81.60376, -19.142067], [81.60305, -19.152803], [81.602501, -19.163473], [81.602119, -19.174076], [81.601906, -19.18461], [81.601852, -19.19508], [81.601974, -19.205484], [81.602264, -19.215822], [81.60273, -19.226097], [81.603355, -19.236307], [81.604164, -19.246454], [81.605148, -19.256538], [81.6063, -19.266562], [81.607635, -19.276522], [81.609154, -19.286423], [81.610847, -19.296263], [81.612717, -19.306042], [81.614777, -19.315763], [81.617012, -19.325424], [81.619438, -19.335028], [81.622047, -19.344574], [81.624847, -19.354063], [81.627831, -19.363497], [81.631004, -19.372873], [81.634369, -19.382195], [81.637932, -19.391462], [81.641685, -19.400675], [81.64563, -19.409834], [81.649773, -19.418941], [81.654114, -19.427996], [81.658646, -19.436996], [81.663383, -19.445948], [81.668327, -19.454849], [81.673462, -19.463699], [81.67881, -19.4725], [81.684357, -19.481251], [81.690109, -19.489954], [81.696068, -19.49861], [81.70224, -19.507217], [81.708618, -19.515778], [81.71521, -19.524294], [81.722008, -19.532763], [81.729027, -19.541187], [81.736252, -19.549566], [81.743698, -19.557903], [81.751282, -19.566118], [81.758911, -19.574133], [81.766602, -19.581947], [81.774345, -19.589563], [81.782143, -19.596983], [81.789993, -19.604208], [81.797905, -19.61124], [81.805878, -19.61808], [81.813904, -19.624731], [81.821991, -19.631191], [81.830139, -19.637466], [81.838348, -19.643555], [81.846619, -19.64946], [81.85495, -19.655182], [81.863342, -19.660723], [81.871803, -19.666084], [81.880333, -19.671268], [81.888916, -19.676277], [81.897575, -19.68111], [81.906296, -19.68577], [81.915092, -19.690258], [81.92395, -19.694576], [81.932884, -19.698727], [81.941879, -19.702709], [81.950951, -19.706528], [81.960091, -19.71018], [81.969307, -19.713673], [81.9786, -19.717003], [81.987961, -19.720175], [81.997398, -19.723188], [82.006912, -19.726046], [82.016502, -19.72875], [82.026169, -19.7313], [82.035912, -19.7337], [82.045738, -19.735949], [82.055641, -19.738049], [82.06562, -19.740002], [82.075684, -19.741812], [82.085831, -19.743477], [82.096062, -19.744999], [82.106377, -19.746382], [82.116768, -19.747625], [82.127251, -19.748732], [82.137817, -19.749701], [82.148476, -19.750536], [82.15921, -19.75124], [82.170044, -19.75181], [82.180962, -19.752253], [82.191971, -19.752565], [82.203064, -19.752752], [82.214256, -19.752815], [82.225449, -19.752752], [82.236542, -19.752565], [82.247551, -19.752253], [82.258469, -19.75181], [82.269302, -19.75124], [82.280037, -19.750536], [82.290695, -19.749701], [82.301262, -19.748732], [82.311745, -19.747625], [82.322136, -19.746382], [82.332451, -19.744999], [82.342682, -19.743477], [82.352829, -19.741812], [82.362892, -19.740002], [82.372871, -19.738049], [82.382774, -19.735949], [82.392601, -19.7337], [82.402344, -19.7313], [82.41201, -19.72875], [82.4216, -19.726046], [82.431114, -19.723188], [82.440552, -19.720175], [82.449913, -19.717003], [82.459206, -19.713673], [82.468422, -19.71018], [82.477562, -19.706528], [82.486633, -19.702709], [82.495628, -19.698727], [82.504562, -19.694576], [82.51342, -19.690258], [82.522217, -19.68577], [82.530937, -19.68111], [82.539597, -19.676277], [82.54818, -19.671268], [82.556709, -19.666084], [82.56517, -19.660723], [82.573563, -19.655182], [82.581894, -19.64946], [82.590164, -19.643555], [82.598373, -19.637466], [82.606522, -19.631191], [82.614609, -19.624731], [82.622635, -19.61808], [82.630608, -19.61124], [82.638519, -19.604208], [82.64637, -19.596983], [82.654167, -19.589563], [82.661911, -19.581947], [82.669601, -19.574133], [82.677231, -19.566118], [82.684814, -19.557903], [82.692261, -19.549566], [82.699486, -19.541187], [82.706505, -19.532763], [82.713303, -19.524294], [82.719894, -19.515778], [82.726273, -19.507217], [82.732445, -19.49861], [82.738403, -19.489954], [82.744156, -19.481251], [82.749702, -19.4725], [82.755051, -19.463699], [82.760185, -19.454849], [82.765129, -19.445948], [82.769867, -19.436996], [82.774399, -19.427996], [82.77874, -19.418941], [82.782883, -19.409834], [82.786827, -19.400675], [82.790581, -19.391462], [82.794144, -19.382195], [82.797508, -19.372873], [82.800682, -19.363497], [82.803665, -19.354063], [82.806465, -19.344574], [82.809074, -19.335028], [82.811501, -19.325424], [82.813736, -19.315763], [82.815796, -19.306042], [82.817665, -19.296263], [82.819359, -19.286423], [82.820877, -19.276522], [82.822212, -19.266562], [82.823364, -19.256538], [82.824348, -19.246454], [82.825157, -19.236307], [82.825783, -19.226097], [82.826248, -19.215822], [82.826538, -19.205484], [82.82666, -19.19508], [82.826607, -19.18461], [82.826393, -19.174076], [82.826012, -19.163473], [82.825462, -19.152803], [82.824753, -19.142067], [82.823875, -19.131262], [82.822845, -19.120388], [82.821648, -19.109444], [82.820297, -19.098431], [82.818787, -19.087345], [82.817093, -19.076487], [82.815163, -19.065844], [82.812981, -19.055414], [82.81057, -19.045191], [82.807922, -19.035168], [82.805054, -19.025337], [82.801956, -19.015694], [82.798637, -19.006233], [82.795105, -18.996946], [82.791359, -18.987827], [82.787399, -18.978872], [82.783241, -18.970076], [82.778885, -18.961428], [82.77433, -18.952923], [82.769592, -18.944557], [82.764656, -18.936325], [82.759544, -18.928217], [82.75425, -18.920229], [82.748779, -18.912355], [82.743141, -18.904589], [82.737335, -18.896923], [82.731361, -18.889353], [82.725235, -18.88187], [82.718956, -18.874474], [82.712524, -18.867151], [82.70594, -18.8599], [82.699219, -18.852713], [82.69236, -18.845583], [82.685364, -18.838507], [82.678246, -18.831476], [82.670998, -18.824486], [82.663628, -18.817528], [82.656136, -18.810598], [82.648537, -18.80369], [82.640823, -18.796797], [82.633003, -18.789913], [82.625092, -18.783031], [82.617073, -18.776146], [82.608963, -18.769253], [82.600769, -18.762342], [82.592491, -18.755411], [82.584129, -18.748453], [82.575691, -18.741459], [82.567177, -18.734426]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 24, \"se\": 24, \"sw\": 24, \"nw\": 24, \"validDateTime\": \"2024-01-27T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 48}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[82.508354, -18.793247], [82.508354, -18.793247], [82.50042, -18.785471], [82.492455, -18.777969], [82.484436, -18.770739], [82.476379, -18.763779], [82.468269, -18.757086], [82.460098, -18.75066], [82.451874, -18.744499], [82.443581, -18.738602], [82.435219, -18.732965], [82.426781, -18.727589], [82.418274, -18.722471], [82.409683, -18.717607], [82.401001, -18.712999], [82.392235, -18.708645], [82.383377, -18.704538], [82.37442, -18.700684], [82.365356, -18.697075], [82.356186, -18.693712], [82.346909, -18.690592], [82.337517, -18.687716], [82.328003, -18.685078], [82.318359, -18.68268], [82.308594, -18.680517], [82.298698, -18.678591], [82.288666, -18.676897], [82.278488, -18.675436], [82.268173, -18.674204], [82.257706, -18.673199], [82.247086, -18.672421], [82.236305, -18.671867], [82.225365, -18.671537], [82.214256, -18.671427], [82.203148, -18.671537], [82.192207, -18.671867], [82.181427, -18.672421], [82.170807, -18.673199], [82.160339, -18.674204], [82.150024, -18.675436], [82.139847, -18.676897], [82.129814, -18.678591], [82.119919, -18.680517], [82.110153, -18.68268], [82.10051, -18.685078], [82.090996, -18.687716], [82.081604, -18.690592], [82.072327, -18.693712], [82.063156, -18.697075], [82.054092, -18.700684], [82.045135, -18.704538], [82.036278, -18.708645], [82.027512, -18.712999], [82.018829, -18.717607], [82.010239, -18.722471], [82.001732, -18.727589], [81.993294, -18.732965], [81.984932, -18.738602], [81.976639, -18.744499], [81.968414, -18.75066], [81.960243, -18.757086], [81.952133, -18.763779], [81.944077, -18.770739], [81.936058, -18.777969], [81.928093, -18.785471], [81.920158, -18.793247], [81.912384, -18.801178], [81.904877, -18.809149], [81.897652, -18.817162], [81.890686, -18.825222], [81.883995, -18.833336], [81.877571, -18.841503], [81.871414, -18.849731], [81.865517, -18.858023], [81.859879, -18.866385], [81.8545, -18.874819], [81.84938, -18.883329], [81.844521, -18.89192], [81.839912, -18.900599], [81.835556, -18.909365], [81.831451, -18.918226], [81.827599, -18.927185], [81.82399, -18.936247], [81.820625, -18.945415], [81.817505, -18.954695], [81.814629, -18.964088], [81.811989, -18.973602], [81.809593, -18.98324], [81.807434, -18.993004], [81.805504, -19.002901], [81.80381, -19.012936], [81.802345, -19.023109], [81.801117, -19.033428], [81.80011, -19.043898], [81.799332, -19.054518], [81.798782, -19.065298], [81.798447, -19.076239], [81.79834, -19.087345], [81.798447, -19.098452], [81.798782, -19.109392], [81.799332, -19.120173], [81.80011, -19.130793], [81.801117, -19.141262], [81.802345, -19.151581], [81.80381, -19.161755], [81.805504, -19.171789], [81.807434, -19.181686], [81.809593, -19.19145], [81.811989, -19.201088], [81.814629, -19.210602], [81.817505, -19.219995], [81.820625, -19.229275], [81.82399, -19.238443], [81.827599, -19.247505], [81.831451, -19.256464], [81.835556, -19.265326], [81.839912, -19.274092], [81.844521, -19.28277], [81.84938, -19.291361], [81.8545, -19.299871], [81.859879, -19.308306], [81.865517, -19.316668], [81.871414, -19.324959], [81.877571, -19.333187], [81.883995, -19.341354], [81.890686, -19.349468], [81.897652, -19.357529], [81.904877, -19.365541], [81.912384, -19.373512], [81.920158, -19.381443], [81.928093, -19.389219], [81.936058, -19.396721], [81.944077, -19.403952], [81.952133, -19.410912], [81.960243, -19.417604], [81.968414, -19.42403], [81.976639, -19.430191], [81.984932, -19.436089], [81.993294, -19.441725], [82.001732, -19.447102], [82.010239, -19.452219], [82.018829, -19.457083], [82.027512, -19.461691], [82.036278, -19.466045], [82.045135, -19.470152], [82.054092, -19.474007], [82.063156, -19.477615], [82.072327, -19.480978], [82.081604, -19.484098], [82.090996, -19.486975], [82.10051, -19.489613], [82.110153, -19.49201], [82.119919, -19.494173], [82.129814, -19.496099], [82.139847, -19.497793], [82.150024, -19.499254], [82.160339, -19.500486], [82.170807, -19.501492], [82.181427, -19.50227], [82.192207, -19.502823], [82.203148, -19.503153], [82.214256, -19.503263], [82.225365, -19.503153], [82.236305, -19.502823], [82.247086, -19.50227], [82.257706, -19.501492], [82.268173, -19.500486], [82.278488, -19.499254], [82.288666, -19.497793], [82.298698, -19.496099], [82.308594, -19.494173], [82.318359, -19.49201], [82.328003, -19.489613], [82.337517, -19.486975], [82.346909, -19.484098], [82.356186, -19.480978], [82.365356, -19.477615], [82.37442, -19.474007], [82.383377, -19.470152], [82.392235, -19.466045], [82.401001, -19.461691], [82.409683, -19.457083], [82.418274, -19.452219], [82.426781, -19.447102], [82.435219, -19.441725], [82.443581, -19.436089], [82.451874, -19.430191], [82.460098, -19.42403], [82.468269, -19.417604], [82.476379, -19.410912], [82.484436, -19.403952], [82.492455, -19.396721], [82.50042, -19.389219], [82.508354, -19.381443], [82.516129, -19.373512], [82.523636, -19.365541], [82.530861, -19.357529], [82.537827, -19.349468], [82.544518, -19.341354], [82.550941, -19.333187], [82.557098, -19.324959], [82.562996, -19.316668], [82.568634, -19.308306], [82.574013, -19.299871], [82.579132, -19.291361], [82.583992, -19.28277], [82.5886, -19.274092], [82.592957, -19.265326], [82.597061, -19.256464], [82.600914, -19.247505], [82.604523, -19.238443], [82.607887, -19.229275], [82.611008, -19.219995], [82.613884, -19.210602], [82.616524, -19.201088], [82.618919, -19.19145], [82.621078, -19.181686], [82.623009, -19.171789], [82.624702, -19.161755], [82.626167, -19.151581], [82.627396, -19.141262], [82.628403, -19.130793], [82.629181, -19.120173], [82.62973, -19.109392], [82.630066, -19.098452], [82.630173, -19.087345], [82.630066, -19.076239], [82.62973, -19.065298], [82.629181, -19.054518], [82.628403, -19.043898], [82.627396, -19.033428], [82.626167, -19.023109], [82.624702, -19.012936], [82.623009, -19.002901], [82.621078, -18.993004], [82.618919, -18.98324], [82.616524, -18.973602], [82.613884, -18.964088], [82.611008, -18.954695], [82.607887, -18.945415], [82.604523, -18.936247], [82.600914, -18.927185], [82.597061, -18.918226], [82.592957, -18.909365], [82.5886, -18.900599], [82.583992, -18.89192], [82.579132, -18.883329], [82.574013, -18.874819], [82.568634, -18.866385], [82.562996, -18.858023], [82.557098, -18.849731], [82.550941, -18.841503], [82.544518, -18.833336], [82.537827, -18.825222], [82.530861, -18.817162], [82.523636, -18.809149], [82.516129, -18.801178], [82.508354, -18.793247]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-28T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 72}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[77.364616, -19.669989], [77.364616, -19.669989], [77.355865, -19.663074], [77.347145, -19.656239], [77.338463, -19.649483], [77.329803, -19.642807], [77.321175, -19.636211], [77.312569, -19.629702], [77.303986, -19.623272], [77.295425, -19.61693], [77.28688, -19.610672], [77.278351, -19.6045], [77.269836, -19.598415], [77.26133, -19.592419], [77.252831, -19.586512], [77.244339, -19.580696], [77.235847, -19.57497], [77.227364, -19.569338], [77.21888, -19.563799], [77.210388, -19.558353], [77.201889, -19.553001], [77.19339, -19.547749], [77.184875, -19.542591], [77.176346, -19.537531], [77.167809, -19.53257], [77.159248, -19.52771], [77.150673, -19.522951], [77.142075, -19.518293], [77.133453, -19.513739], [77.124802, -19.509287], [77.116127, -19.504942], [77.107414, -19.5007], [77.098679, -19.496567], [77.089897, -19.49254], [77.081085, -19.488623], [77.072227, -19.484816], [77.063332, -19.481119], [77.05439, -19.477533], [77.045395, -19.47406], [77.036362, -19.470699], [77.027267, -19.467455], [77.01812, -19.464325], [77.008919, -19.461311], [76.999664, -19.458416], [76.990341, -19.455637], [76.980957, -19.45298], [76.971504, -19.450441], [76.96199, -19.448025], [76.9524, -19.445728], [76.942741, -19.443558], [76.933006, -19.441509], [76.923195, -19.439589], [76.9133, -19.437792], [76.903328, -19.436123], [76.893272, -19.43458], [76.883125, -19.433168], [76.872894, -19.431887], [76.862572, -19.430735], [76.85215, -19.429714], [76.841637, -19.428827], [76.831024, -19.428074], [76.820312, -19.427456], [76.809502, -19.426973], [76.798584, -19.426628], [76.78756, -19.42642], [76.776421, -19.42635], [76.765282, -19.426411], [76.754234, -19.426598], [76.743286, -19.426905], [76.732422, -19.427338], [76.721657, -19.427891], [76.710983, -19.428568], [76.700401, -19.429367], [76.689896, -19.430288], [76.679482, -19.431332], [76.669151, -19.432497], [76.658897, -19.433784], [76.648727, -19.435192], [76.638641, -19.436722], [76.628624, -19.438372], [76.618683, -19.440142], [76.608818, -19.442032], [76.599022, -19.444042], [76.589294, -19.446173], [76.579636, -19.448423], [76.570045, -19.450794], [76.560516, -19.453283], [76.551056, -19.455891], [76.541649, -19.458618], [76.53231, -19.461464], [76.523026, -19.464428], [76.513794, -19.46751], [76.504623, -19.470711], [76.495499, -19.474028], [76.486435, -19.477463], [76.477409, -19.481016], [76.468437, -19.484686], [76.459518, -19.488472], [76.45063, -19.492374], [76.441795, -19.496395], [76.432999, -19.50053], [76.42424, -19.504782], [76.41552, -19.509148], [76.406837, -19.513632], [76.398186, -19.518229], [76.389572, -19.522942], [76.380989, -19.527769], [76.372429, -19.532713], [76.363907, -19.537769], [76.3554, -19.54294], [76.346924, -19.548225], [76.33847, -19.553623], [76.330032, -19.559135], [76.321617, -19.56476], [76.313225, -19.570499], [76.30484, -19.576349], [76.296471, -19.582314], [76.288116, -19.58839], [76.279778, -19.594578], [76.271439, -19.600878], [76.263115, -19.60729], [76.254791, -19.613813], [76.246475, -19.620449], [76.238159, -19.627195], [76.229843, -19.63405], [76.221527, -19.641018], [76.213211, -19.648096], [76.204887, -19.655283], [76.196564, -19.66258], [76.188225, -19.669989], [76.18, -19.67738], [76.171852, -19.684765], [76.163788, -19.692146], [76.1558, -19.699524], [76.147888, -19.706903], [76.140068, -19.714283], [76.132324, -19.721664], [76.124664, -19.729053], [76.117088, -19.736446], [76.109604, -19.743849], [76.102196, -19.751261], [76.094879, -19.758684], [76.087654, -19.766123], [76.080505, -19.773575], [76.073456, -19.781044], [76.06649, -19.788532], [76.059624, -19.796041], [76.052841, -19.803574], [76.04615, -19.811129], [76.039551, -19.818708], [76.033051, -19.826317], [76.026642, -19.833956], [76.020332, -19.841623], [76.014114, -19.849325], [76.007996, -19.857061], [76.001968, -19.864834], [75.996048, -19.872644], [75.990219, -19.880493], [75.984497, -19.888386], [75.978874, -19.89632], [75.973351, -19.904301], [75.967934, -19.912327], [75.962616, -19.920401], [75.957405, -19.928528], [75.952301, -19.936705], [75.947296, -19.944935], [75.942398, -19.953222], [75.937614, -19.961567], [75.93293, -19.969969], [75.92836, -19.978434], [75.923897, -19.986959], [75.919548, -19.99555], [75.915306, -20.004206], [75.911179, -20.01293], [75.907166, -20.021725], [75.903259, -20.03059], [75.899475, -20.039528], [75.895805, -20.04854], [75.892242, -20.057631], [75.888809, -20.066797], [75.885483, -20.076046], [75.882278, -20.085375], [75.879196, -20.094788], [75.876228, -20.104286], [75.87339, -20.113873], [75.870667, -20.123547], [75.868065, -20.13331], [75.865585, -20.143167], [75.863235, -20.153118], [75.861008, -20.163166], [75.858902, -20.173309], [75.856926, -20.183554], [75.85508, -20.193899], [75.853355, -20.204346], [75.851761, -20.214897], [75.850304, -20.225555], [75.848969, -20.236322], [75.847763, -20.247198], [75.846695, -20.258186], [75.845741, -20.269217], [75.844887, -20.280186], [75.844131, -20.291092], [75.843483, -20.301939], [75.842926, -20.312727], [75.842484, -20.323454], [75.842133, -20.334124], [75.841888, -20.344736], [75.841751, -20.355291], [75.841705, -20.365791], [75.841774, -20.376236], [75.841942, -20.386625], [75.842209, -20.396961], [75.842583, -20.407244], [75.843063, -20.417475], [75.843643, -20.427652], [75.84433, -20.437782], [75.845123, -20.447861], [75.846016, -20.45789], [75.847015, -20.467869], [75.848122, -20.477802], [75.849335, -20.487688], [75.850655, -20.497526], [75.852074, -20.50732], [75.853607, -20.517071], [75.85524, -20.526775], [75.856987, -20.536438], [75.858833, -20.546057], [75.860786, -20.555634], [75.862854, -20.56517], [75.865028, -20.574667], [75.867302, -20.584124], [75.86969, -20.593542], [75.872185, -20.602922], [75.874794, -20.612265], [75.877502, -20.621571], [75.880325, -20.63084], [75.883255, -20.640076], [75.886299, -20.649277], [75.88945, -20.658445], [75.892708, -20.66758], [75.89608, -20.676683], [75.899559, -20.685755], [75.903145, -20.694796], [75.906853, -20.703806], [75.91066, -20.71279], [75.914589, -20.721743], [75.918625, -20.730669], [75.922768, -20.739569], [75.927032, -20.748444], [75.931404, -20.757292], [75.935883, -20.766115], [75.940483, -20.774916], [75.94519, -20.783693], [75.950012, -20.792448], [75.954948, -20.801182], [75.959999, -20.809893], [75.965164, -20.818586], [75.970444, -20.827259], [75.975838, -20.835915], [75.981339, -20.844551], [75.986961, -20.85317], [75.992699, -20.861774], [75.99855, -20.870363], [76.004517, -20.878937], [76.010597, -20.887495], [76.0168, -20.896042], [76.023109, -20.904575], [76.029541, -20.913097], [76.036095, -20.921608], [76.042755, -20.930109], [76.049538, -20.938601], [76.056435, -20.947083], [76.063454, -20.955557], [76.070587, -20.964024], [76.077835, -20.972504], [76.085106, -20.980898], [76.092384, -20.989204], [76.099678, -20.997421], [76.106987, -21.005552], [76.114311, -21.013594], [76.121651, -21.021547], [76.129013, -21.029413], [76.136398, -21.037189], [76.143799, -21.044876], [76.151222, -21.052475], [76.158669, -21.059984], [76.166138, -21.067404], [76.17363, -21.074734], [76.181145, -21.081974], [76.188683, -21.089125], [76.196251, -21.096184], [76.20385, -21.103155], [76.211472, -21.110033], [76.219131, -21.116821], [76.226814, -21.12352], [76.234528, -21.130127], [76.242271, -21.136642], [76.250053, -21.143064], [76.257866, -21.149397], [76.265709, -21.155638], [76.273598, -21.161787], [76.281509, -21.167843], [76.289467, -21.173807], [76.297462, -21.179678], [76.305496, -21.185457], [76.313568, -21.191141], [76.321686, -21.196735], [76.329834, -21.202234], [76.338036, -21.20764], [76.346275, -21.212952], [76.354561, -21.21817], [76.362892, -21.223295], [76.371269, -21.228325], [76.379692, -21.233261], [76.388161, -21.238102], [76.396683, -21.242847], [76.405251, -21.247499], [76.413872, -21.252056], [76.422546, -21.256517], [76.431267, -21.260883], [76.440041, -21.265154], [76.448875, -21.269327], [76.457756, -21.273405], [76.466698, -21.277388], [76.4757, -21.281273], [76.484756, -21.285063], [76.493866, -21.288755], [76.503044, -21.292351], [76.512276, -21.295849], [76.521576, -21.29925], [76.53093, -21.302553], [76.540352, -21.305758], [76.549835, -21.308867], [76.55938, -21.311876], [76.568993, -21.314789], [76.578674, -21.317602], [76.588425, -21.320316], [76.598244, -21.322931], [76.608124, -21.325449], [76.61808, -21.327868], [76.628105, -21.330185], [76.638206, -21.332405], [76.648376, -21.334524], [76.658623, -21.336544], [76.668938, -21.338463], [76.679337, -21.340282], [76.689804, -21.342001], [76.700356, -21.34362], [76.710976, -21.345137], [76.72168, -21.346554], [76.732468, -21.34787], [76.743332, -21.349083], [76.75428, -21.350195], [76.765305, -21.351206], [76.776421, -21.352116], [76.787575, -21.352942], [76.798691, -21.353699], [76.809769, -21.354385], [76.820808, -21.355001], [76.831802, -21.355547], [76.842766, -21.356022], [76.853683, -21.356422], [76.864563, -21.35675], [76.875404, -21.357002], [76.8862, -21.357182], [76.896965, -21.357283], [76.907692, -21.357307], [76.918373, -21.357256], [76.929016, -21.357124], [76.939621, -21.356915], [76.950188, -21.356625], [76.960709, -21.356255], [76.971199, -21.355803], [76.981644, -21.355267], [76.99205, -21.354649], [77.002419, -21.353947], [77.012749, -21.353161], [77.023041, -21.352287], [77.033295, -21.35133], [77.043503, -21.350283], [77.053673, -21.34915], [77.063812, -21.347927], [77.073906, -21.346615], [77.083954, -21.345211], [77.093971, -21.343718], [77.103951, -21.342131], [77.113884, -21.340452], [77.123779, -21.33868], [77.133636, -21.336813], [77.143456, -21.33485], [77.153236, -21.332792], [77.162979, -21.330637], [77.172676, -21.328384], [77.182335, -21.326033], [77.191956, -21.323582], [77.201538, -21.321032], [77.211082, -21.31838], [77.220589, -21.315628], [77.230057, -21.312773], [77.239479, -21.309813], [77.248863, -21.306751], [77.258209, -21.303583], [77.267517, -21.30031], [77.276787, -21.29693], [77.286018, -21.293442], [77.295204, -21.289846], [77.304359, -21.286142], [77.313469, -21.28233], [77.32254, -21.278404], [77.331573, -21.27437], [77.340569, -21.270222], [77.349525, -21.265961], [77.358437, -21.261587], [77.36731, -21.257099], [77.376152, -21.252495], [77.384949, -21.247774], [77.393707, -21.242937], [77.40242, -21.237982], [77.411102, -21.232908], [77.419746, -21.227716], [77.428345, -21.222403], [77.436905, -21.216969], [77.445427, -21.211414], [77.453911, -21.205736], [77.462357, -21.199934], [77.470757, -21.19401], [77.479126, -21.187958], [77.48745, -21.181782], [77.495735, -21.17548], [77.50399, -21.16905], [77.512192, -21.162491], [77.520363, -21.155804], [77.528496, -21.148987], [77.536583, -21.14204], [77.54464, -21.13496], [77.55265, -21.12775], [77.560623, -21.120405], [77.568558, -21.112928], [77.576454, -21.105316], [77.584305, -21.097569], [77.592125, -21.089684], [77.599899, -21.081663], [77.607559, -21.073584], [77.615089, -21.065466], [77.62249, -21.057314], [77.629753, -21.049124], [77.636887, -21.040895], [77.64389, -21.032633], [77.650764, -21.024332], [77.657501, -21.015997], [77.664116, -21.007624], [77.670593, -20.999214], [77.676949, -20.990768], [77.683174, -20.982286], [77.68927, -20.973768], [77.695244, -20.965216], [77.701088, -20.956625], [77.706802, -20.947998], [77.712395, -20.939337], [77.717865, -20.930639], [77.723206, -20.921906], [77.728432, -20.913136], [77.733528, -20.904329], [77.738495, -20.895489], [77.743347, -20.886612], [77.748077, -20.877701], [77.752686, -20.868753], [77.757172, -20.85977], [77.761543, -20.850752], [77.765785, -20.841698], [77.769913, -20.832609], [77.773926, -20.823484], [77.777817, -20.814325], [77.781593, -20.805132], [77.785248, -20.795902], [77.788788, -20.786638], [77.792213, -20.777338], [77.795525, -20.768005], [77.798714, -20.758636], [77.801796, -20.749233], [77.804764, -20.739794], [77.807617, -20.730322], [77.810356, -20.720814], [77.812981, -20.711273], [77.815498, -20.701696], [77.817902, -20.692085], [77.820198, -20.682442], [77.82238, -20.672762], [77.824455, -20.663048], [77.826416, -20.653301], [77.82827, -20.64352], [77.830025, -20.633703], [77.831665, -20.623854], [77.833199, -20.613972], [77.834625, -20.604053], [77.835945, -20.594103], [77.837158, -20.584118], [77.838272, -20.5741], [77.839279, -20.564049], [77.840179, -20.553963], [77.840981, -20.543842], [77.841675, -20.533691], [77.84227, -20.523504], [77.842758, -20.513287], [77.843147, -20.503033], [77.843437, -20.492748], [77.843628, -20.48243], [77.843719, -20.472078], [77.843712, -20.461693], [77.843605, -20.451275], [77.843399, -20.440825], [77.843094, -20.430342], [77.842697, -20.419825], [77.842201, -20.409275], [77.841606, -20.398693], [77.840919, -20.388079], [77.840141, -20.377432], [77.839264, -20.366753], [77.838287, -20.356041], [77.837227, -20.345297], [77.836067, -20.33452], [77.834824, -20.323713], [77.833481, -20.312872], [77.832047, -20.301998], [77.830521, -20.291094], [77.828911, -20.280157], [77.827209, -20.269188], [77.825417, -20.258186], [77.823494, -20.247204], [77.821419, -20.236368], [77.819183, -20.225674], [77.816795, -20.21512], [77.814255, -20.204706], [77.811562, -20.194426], [77.808723, -20.184278], [77.80574, -20.174263], [77.802605, -20.164375], [77.799332, -20.154612], [77.795921, -20.144972], [77.792366, -20.135452], [77.788673, -20.126053], [77.784843, -20.116766], [77.780884, -20.107594], [77.776787, -20.098532], [77.77256, -20.089579], [77.768204, -20.08073], [77.763725, -20.071985], [77.759117, -20.063341], [77.754387, -20.054794], [77.749535, -20.046343], [77.74456, -20.037985], [77.739471, -20.029718], [77.734268, -20.02154], [77.728943, -20.013447], [77.723511, -20.005438], [77.717964, -19.997507], [77.712311, -19.989656], [77.706543, -19.981882], [77.700676, -19.97418], [77.694702, -19.966549], [77.688629, -19.958984], [77.682457, -19.951488], [77.676178, -19.944054], [77.669807, -19.93668], [77.663338, -19.929365], [77.656784, -19.922106], [77.650131, -19.9149], [77.643387, -19.907745], [77.636559, -19.900639], [77.629646, -19.893578], [77.622643, -19.88656], [77.615562, -19.879583], [77.608398, -19.872644], [77.601151, -19.865744], [77.593834, -19.858873], [77.586433, -19.852036], [77.578964, -19.845226], [77.571426, -19.838442], [77.563812, -19.831682], [77.556129, -19.824942], [77.548386, -19.818222], [77.540565, -19.811516], [77.532692, -19.804825], [77.524757, -19.798143], [77.516754, -19.791471], [77.508705, -19.784805], [77.500587, -19.778143], [77.492424, -19.771482], [77.484207, -19.764818], [77.475937, -19.758152], [77.467621, -19.751478], [77.459251, -19.744797], [77.450844, -19.738102], [77.442383, -19.731396], [77.433891, -19.72467], [77.425354, -19.717928], [77.416779, -19.711163], [77.408165, -19.704374], [77.399521, -19.697561], [77.390839, -19.690718], [77.382126, -19.683842], [77.373383, -19.676933], [77.364616, -19.669989]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"50kt\", \"ne\": 34, \"se\": 39, \"sw\": 39, \"nw\": 34, \"validDateTime\": \"2024-01-28T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 72}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[77.129341, -19.905268], [77.129341, -19.905268], [77.120865, -19.898325], [77.112427, -19.891525], [77.104027, -19.884872], [77.09565, -19.878368], [77.087296, -19.872015], [77.078957, -19.865814], [77.070625, -19.859768], [77.062309, -19.853878], [77.053986, -19.848146], [77.045654, -19.842573], [77.037315, -19.837162], [77.028961, -19.831915], [77.020584, -19.826834], [77.012177, -19.82192], [77.003731, -19.817177], [76.995247, -19.812605], [76.986725, -19.808205], [76.978149, -19.80398], [76.969513, -19.799932], [76.960815, -19.796064], [76.952057, -19.792376], [76.943222, -19.788872], [76.934303, -19.785551], [76.925308, -19.782417], [76.916222, -19.779472], [76.907036, -19.776716], [76.897751, -19.774155], [76.888359, -19.771786], [76.87886, -19.769613], [76.86924, -19.767639], [76.859489, -19.765863], [76.849617, -19.76429], [76.839607, -19.76292], [76.82946, -19.761757], [76.819168, -19.760799], [76.808723, -19.760052], [76.798119, -19.759516], [76.787354, -19.759193], [76.776421, -19.759085], [76.765488, -19.759193], [76.754723, -19.759516], [76.744118, -19.760052], [76.733673, -19.760799], [76.723381, -19.761757], [76.713234, -19.76292], [76.703224, -19.76429], [76.693352, -19.765863], [76.683601, -19.767639], [76.673981, -19.769613], [76.664482, -19.771786], [76.65509, -19.774155], [76.645805, -19.776716], [76.63662, -19.779472], [76.627533, -19.782417], [76.618538, -19.785551], [76.609619, -19.788872], [76.600784, -19.792376], [76.592026, -19.796064], [76.583328, -19.799932], [76.574692, -19.80398], [76.566116, -19.808205], [76.557594, -19.812605], [76.54911, -19.817177], [76.540665, -19.82192], [76.532257, -19.826834], [76.52388, -19.831915], [76.515526, -19.837162], [76.507187, -19.842573], [76.498856, -19.848146], [76.490532, -19.853878], [76.482216, -19.859768], [76.473885, -19.865814], [76.465546, -19.872015], [76.457191, -19.878368], [76.448814, -19.884872], [76.440414, -19.891525], [76.431976, -19.898325], [76.4235, -19.905268], [76.414986, -19.9123], [76.406548, -19.919294], [76.398186, -19.926252], [76.389908, -19.933184], [76.381714, -19.940094], [76.373604, -19.946987], [76.365585, -19.953873], [76.357674, -19.960754], [76.349854, -19.967638], [76.34214, -19.974531], [76.334541, -19.98144], [76.327049, -19.988369], [76.319679, -19.995327], [76.312431, -20.002317], [76.305313, -20.009348], [76.298317, -20.016424], [76.291458, -20.023554], [76.284737, -20.030741], [76.278152, -20.037992], [76.271721, -20.045315], [76.265442, -20.052711], [76.259315, -20.060194], [76.253342, -20.067764], [76.247536, -20.07543], [76.241898, -20.083197], [76.236427, -20.09107], [76.231133, -20.099058], [76.226021, -20.107166], [76.221085, -20.115398], [76.216347, -20.123764], [76.211792, -20.132269], [76.207436, -20.140915], [76.203278, -20.149714], [76.199318, -20.158669], [76.195572, -20.167788], [76.192039, -20.177074], [76.188721, -20.186535], [76.185623, -20.196178], [76.182755, -20.206009], [76.180107, -20.216032], [76.177696, -20.226255], [76.175514, -20.236685], [76.173584, -20.247328], [76.17189, -20.258186], [76.17038, -20.26927], [76.169029, -20.280285], [76.167831, -20.291229], [76.166801, -20.302103], [76.165924, -20.312908], [76.165215, -20.323645], [76.164665, -20.334314], [76.164284, -20.344917], [76.16407, -20.355452], [76.164017, -20.365921], [76.164139, -20.376326], [76.164429, -20.386663], [76.164894, -20.396938], [76.16552, -20.407148], [76.166328, -20.417295], [76.167313, -20.42738], [76.168465, -20.437403], [76.1698, -20.447363], [76.171318, -20.457264], [76.173012, -20.467104], [76.174881, -20.476883], [76.176941, -20.486605], [76.179176, -20.496265], [76.181602, -20.505869], [76.184212, -20.515415], [76.187012, -20.524904], [76.189995, -20.534338], [76.193169, -20.543715], [76.196533, -20.553036], [76.200096, -20.562304], [76.20385, -20.571516], [76.207794, -20.580675], [76.211937, -20.589783], [76.216278, -20.598837], [76.22081, -20.607838], [76.225548, -20.616789], [76.230492, -20.62569], [76.235626, -20.634541], [76.240974, -20.643341], [76.246521, -20.652092], [76.252274, -20.660795], [76.258232, -20.669451], [76.264404, -20.678059], [76.270782, -20.686619], [76.277374, -20.695135], [76.284172, -20.703604], [76.291191, -20.712029], [76.298416, -20.720407], [76.305862, -20.728745], [76.313446, -20.736959], [76.321075, -20.744974], [76.328766, -20.752789], [76.33651, -20.760405], [76.344307, -20.767824], [76.352158, -20.775049], [76.360069, -20.782082], [76.368042, -20.788921], [76.376068, -20.795572], [76.384155, -20.802032], [76.392303, -20.808308], [76.400513, -20.814396], [76.408783, -20.820301], [76.417114, -20.826023], [76.425507, -20.831564], [76.433968, -20.836926], [76.442497, -20.84211], [76.45108, -20.847118], [76.45974, -20.851952], [76.46846, -20.856611], [76.477257, -20.861099], [76.486115, -20.865417], [76.495049, -20.869568], [76.504044, -20.87355], [76.513115, -20.877369], [76.522255, -20.881021], [76.531471, -20.884514], [76.540764, -20.887844], [76.550125, -20.891016], [76.559563, -20.89403], [76.569077, -20.896887], [76.578667, -20.899591], [76.588333, -20.902142], [76.598076, -20.904541], [76.607903, -20.90679], [76.617805, -20.90889], [76.627785, -20.910843], [76.637848, -20.912653], [76.647995, -20.914318], [76.658226, -20.91584], [76.668541, -20.917223], [76.678932, -20.918467], [76.689415, -20.919573], [76.699982, -20.920542], [76.71064, -20.921377], [76.721375, -20.922081], [76.732208, -20.922651], [76.743126, -20.923094], [76.754135, -20.923407], [76.765228, -20.923594], [76.776421, -20.923656], [76.787613, -20.923594], [76.798706, -20.923407], [76.809715, -20.923094], [76.820633, -20.922651], [76.831467, -20.922081], [76.842201, -20.921377], [76.852859, -20.920542], [76.863426, -20.919573], [76.873909, -20.918467], [76.8843, -20.917223], [76.894615, -20.91584], [76.904846, -20.914318], [76.914993, -20.912653], [76.925056, -20.910843], [76.935036, -20.90889], [76.944939, -20.90679], [76.954765, -20.904541], [76.964508, -20.902142], [76.974174, -20.899591], [76.983765, -20.896887], [76.993279, -20.89403], [77.002716, -20.891016], [77.012077, -20.887844], [77.02137, -20.884514], [77.030586, -20.881021], [77.039726, -20.877369], [77.048798, -20.87355], [77.057793, -20.869568], [77.066727, -20.865417], [77.075584, -20.861099], [77.084381, -20.856611], [77.093102, -20.851952], [77.101761, -20.847118], [77.110344, -20.84211], [77.118874, -20.836926], [77.127335, -20.831564], [77.135727, -20.826023], [77.144058, -20.820301], [77.152328, -20.814396], [77.160538, -20.808308], [77.168686, -20.802032], [77.176773, -20.795572], [77.184799, -20.788921], [77.192772, -20.782082], [77.200684, -20.775049], [77.208534, -20.767824], [77.216331, -20.760405], [77.224075, -20.752789], [77.231766, -20.744974], [77.239395, -20.736959], [77.246979, -20.728745], [77.254425, -20.720407], [77.26165, -20.712029], [77.268669, -20.703604], [77.275467, -20.695135], [77.282059, -20.686619], [77.288437, -20.678059], [77.294609, -20.669451], [77.300568, -20.660795], [77.30632, -20.652092], [77.311867, -20.643341], [77.317215, -20.634541], [77.32235, -20.62569], [77.327293, -20.616789], [77.332031, -20.607838], [77.336563, -20.598837], [77.340904, -20.589783], [77.345047, -20.580675], [77.348991, -20.571516], [77.352745, -20.562304], [77.356308, -20.553036], [77.359673, -20.543715], [77.362846, -20.534338], [77.365829, -20.524904], [77.368629, -20.515415], [77.371239, -20.505869], [77.373665, -20.496265], [77.3759, -20.486605], [77.37796, -20.476883], [77.379829, -20.467104], [77.381523, -20.457264], [77.383041, -20.447363], [77.384377, -20.437403], [77.385529, -20.42738], [77.386513, -20.417295], [77.387321, -20.407148], [77.387947, -20.396938], [77.388412, -20.386663], [77.388702, -20.376326], [77.388824, -20.365921], [77.388771, -20.355452], [77.388557, -20.344917], [77.388176, -20.334314], [77.387627, -20.323645], [77.386917, -20.312908], [77.38604, -20.302103], [77.38501, -20.291229], [77.383812, -20.280285], [77.382462, -20.269272], [77.380951, -20.258186], [77.379257, -20.247328], [77.377327, -20.236685], [77.375145, -20.226255], [77.372734, -20.216032], [77.370087, -20.206009], [77.367218, -20.196178], [77.36412, -20.186535], [77.360802, -20.177074], [77.357269, -20.167788], [77.353523, -20.158669], [77.349564, -20.149714], [77.345406, -20.140917], [77.341049, -20.132269], [77.336494, -20.123764], [77.331757, -20.115398], [77.32682, -20.107166], [77.321709, -20.099058], [77.316414, -20.09107], [77.310944, -20.083197], [77.305305, -20.07543], [77.2995, -20.067764], [77.293526, -20.060194], [77.287399, -20.052711], [77.28112, -20.045315], [77.274689, -20.037992], [77.268105, -20.030741], [77.261383, -20.023554], [77.254524, -20.016424], [77.247528, -20.009348], [77.24041, -20.002317], [77.233162, -19.995327], [77.225792, -19.988369], [77.2183, -19.98144], [77.210701, -19.974531], [77.202988, -19.967638], [77.195168, -19.960754], [77.187256, -19.953873], [77.179237, -19.946987], [77.171127, -19.940094], [77.162933, -19.933184], [77.154655, -19.926252], [77.146294, -19.919294], [77.137856, -19.9123], [77.129341, -19.905268]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 24, \"se\": 24, \"sw\": 24, \"nw\": 24, \"validDateTime\": \"2024-01-28T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 72}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[77.070518, -19.964088], [77.070518, -19.964088], [77.062584, -19.956312], [77.054619, -19.948811], [77.0466, -19.94158], [77.038544, -19.93462], [77.030434, -19.927927], [77.022263, -19.921501], [77.014038, -19.91534], [77.005745, -19.909443], [76.997383, -19.903807], [76.988945, -19.89843], [76.980438, -19.893312], [76.971848, -19.888449], [76.963165, -19.883841], [76.954399, -19.879486], [76.945541, -19.87538], [76.936584, -19.871525], [76.927521, -19.867916], [76.91835, -19.864553], [76.909073, -19.861433], [76.899681, -19.858557], [76.890167, -19.855919], [76.880524, -19.853521], [76.870758, -19.851358], [76.860863, -19.849432], [76.85083, -19.847738], [76.840652, -19.846277], [76.830338, -19.845045], [76.81987, -19.84404], [76.80925, -19.843262], [76.79847, -19.842709], [76.787529, -19.842379], [76.776421, -19.842268], [76.765312, -19.842379], [76.754372, -19.842709], [76.743591, -19.843262], [76.732971, -19.84404], [76.722504, -19.845045], [76.712189, -19.846277], [76.702011, -19.847738], [76.691978, -19.849432], [76.682083, -19.851358], [76.672318, -19.853521], [76.662674, -19.855919], [76.65316, -19.858557], [76.643768, -19.861433], [76.634491, -19.864553], [76.62532, -19.867916], [76.616257, -19.871525], [76.6073, -19.87538], [76.598442, -19.879486], [76.589676, -19.883841], [76.580994, -19.888449], [76.572403, -19.893312], [76.563896, -19.89843], [76.555458, -19.903807], [76.547096, -19.909443], [76.538803, -19.91534], [76.530579, -19.921501], [76.522408, -19.927927], [76.514297, -19.93462], [76.506241, -19.94158], [76.498222, -19.948811], [76.490257, -19.956312], [76.482323, -19.964088], [76.474548, -19.972019], [76.467041, -19.97999], [76.459816, -19.988003], [76.45285, -19.996063], [76.446159, -20.004177], [76.439735, -20.012344], [76.433578, -20.020573], [76.427681, -20.028864], [76.422043, -20.037226], [76.416664, -20.04566], [76.411545, -20.054171], [76.406685, -20.062761], [76.402077, -20.07144], [76.39772, -20.080206], [76.393616, -20.089067], [76.389763, -20.098026], [76.386154, -20.107088], [76.38279, -20.116257], [76.379669, -20.125536], [76.376793, -20.13493], [76.374153, -20.144444], [76.371758, -20.154081], [76.369598, -20.163845], [76.367668, -20.173742], [76.365974, -20.183777], [76.36451, -20.193951], [76.363281, -20.204269], [76.362274, -20.214739], [76.361496, -20.225359], [76.360947, -20.236139], [76.360611, -20.24708], [76.360504, -20.258186], [76.360611, -20.269293], [76.360947, -20.280233], [76.361496, -20.291014], [76.362274, -20.301634], [76.363281, -20.312103], [76.36451, -20.322422], [76.365974, -20.332596], [76.367668, -20.34263], [76.369598, -20.352528], [76.371758, -20.362291], [76.374153, -20.371929], [76.376793, -20.381443], [76.379669, -20.390837], [76.38279, -20.400116], [76.386154, -20.409285], [76.389763, -20.418346], [76.393616, -20.427305], [76.39772, -20.436167], [76.402077, -20.444933], [76.406685, -20.453611], [76.411545, -20.462202], [76.416664, -20.470713], [76.422043, -20.479147], [76.427681, -20.487509], [76.433578, -20.4958], [76.439735, -20.504028], [76.446159, -20.512196], [76.45285, -20.520309], [76.459816, -20.52837], [76.467041, -20.536383], [76.474548, -20.544353], [76.482323, -20.552284], [76.490257, -20.560061], [76.498222, -20.567562], [76.506241, -20.574793], [76.514297, -20.581753], [76.522408, -20.588446], [76.530579, -20.594872], [76.538803, -20.601032], [76.547096, -20.60693], [76.555458, -20.612566], [76.563896, -20.617943], [76.572403, -20.62306], [76.580994, -20.627924], [76.589676, -20.632532], [76.598442, -20.636887], [76.6073, -20.640993], [76.616257, -20.644848], [76.62532, -20.648457], [76.634491, -20.651819], [76.643768, -20.65494], [76.65316, -20.657816], [76.662674, -20.660454], [76.672318, -20.662851], [76.682083, -20.665014], [76.691978, -20.666941], [76.702011, -20.668634], [76.712189, -20.670095], [76.722504, -20.671328], [76.732971, -20.672333], [76.743591, -20.673111], [76.754372, -20.673664], [76.765312, -20.673994], [76.776421, -20.674105], [76.787529, -20.673994], [76.79847, -20.673664], [76.80925, -20.673111], [76.81987, -20.672333], [76.830338, -20.671328], [76.840652, -20.670095], [76.85083, -20.668634], [76.860863, -20.666941], [76.870758, -20.665014], [76.880524, -20.662851], [76.890167, -20.660454], [76.899681, -20.657816], [76.909073, -20.65494], [76.91835, -20.651819], [76.927521, -20.648457], [76.936584, -20.644848], [76.945541, -20.640993], [76.954399, -20.636887], [76.963165, -20.632532], [76.971848, -20.627924], [76.980438, -20.62306], [76.988945, -20.617943], [76.997383, -20.612566], [77.005745, -20.60693], [77.014038, -20.601032], [77.022263, -20.594872], [77.030434, -20.588446], [77.038544, -20.581753], [77.0466, -20.574793], [77.054619, -20.567562], [77.062584, -20.560061], [77.070518, -20.552284], [77.078293, -20.544353], [77.0858, -20.536383], [77.093025, -20.52837], [77.099991, -20.520309], [77.106682, -20.512196], [77.113106, -20.504028], [77.119263, -20.4958], [77.12516, -20.487509], [77.130798, -20.479147], [77.136177, -20.470713], [77.141296, -20.462202], [77.146156, -20.453611], [77.150764, -20.444933], [77.155121, -20.436167], [77.159225, -20.427305], [77.163078, -20.418346], [77.166687, -20.409285], [77.170052, -20.400116], [77.173172, -20.390837], [77.176048, -20.381443], [77.178688, -20.371929], [77.181084, -20.362291], [77.183243, -20.352528], [77.185173, -20.34263], [77.186867, -20.332596], [77.188332, -20.322422], [77.18956, -20.312103], [77.190567, -20.301634], [77.191345, -20.291014], [77.191895, -20.280233], [77.19223, -20.269293], [77.192337, -20.258186], [77.19223, -20.24708], [77.191895, -20.236139], [77.191345, -20.225359], [77.190567, -20.214739], [77.18956, -20.204269], [77.188332, -20.193951], [77.186867, -20.183777], [77.185173, -20.173742], [77.183243, -20.163845], [77.181084, -20.154081], [77.178688, -20.144444], [77.176048, -20.13493], [77.173172, -20.125536], [77.170052, -20.116257], [77.166687, -20.107088], [77.163078, -20.098026], [77.159225, -20.089067], [77.155121, -20.080206], [77.150764, -20.07144], [77.146156, -20.062761], [77.141296, -20.054171], [77.136177, -20.04566], [77.130798, -20.037226], [77.12516, -20.028864], [77.119263, -20.020573], [77.113106, -20.012344], [77.106682, -20.004177], [77.099991, -19.996063], [77.093025, -19.988003], [77.0858, -19.97999], [77.078293, -19.972019], [77.070518, -19.964088]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-29T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 85.0, \"forecastHour\": 96}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.874977, -22.80463], [71.874977, -22.80463], [71.866226, -22.797716], [71.857506, -22.79088], [71.848824, -22.784124], [71.840164, -22.777449], [71.831535, -22.770853], [71.822929, -22.764343], [71.814346, -22.757914], [71.805786, -22.751572], [71.797241, -22.745314], [71.788712, -22.739141], [71.780197, -22.733057], [71.77169, -22.72706], [71.763191, -22.721153], [71.7547, -22.715338], [71.746208, -22.709612], [71.737724, -22.703979], [71.72924, -22.698441], [71.720749, -22.692995], [71.71225, -22.687643], [71.703751, -22.68239], [71.695236, -22.677233], [71.686707, -22.672173], [71.678169, -22.667212], [71.669609, -22.662352], [71.661034, -22.657593], [71.652435, -22.652935], [71.643814, -22.64838], [71.635162, -22.643929], [71.626488, -22.639584], [71.617775, -22.635342], [71.609039, -22.631208], [71.600258, -22.627182], [71.591446, -22.623264], [71.582588, -22.619457], [71.573692, -22.615761], [71.564751, -22.612175], [71.555756, -22.608702], [71.546722, -22.605341], [71.537628, -22.602097], [71.528481, -22.598967], [71.519279, -22.595953], [71.510025, -22.593058], [71.500702, -22.590279], [71.491318, -22.587622], [71.481865, -22.585083], [71.472351, -22.582666], [71.462761, -22.58037], [71.453102, -22.578199], [71.443367, -22.576151], [71.433556, -22.57423], [71.42366, -22.572433], [71.413689, -22.570765], [71.403633, -22.569221], [71.393486, -22.56781], [71.383255, -22.566528], [71.372932, -22.565376], [71.362511, -22.564356], [71.351997, -22.563469], [71.341385, -22.562716], [71.330673, -22.562098], [71.319862, -22.561615], [71.308945, -22.56127], [71.29792, -22.561062], [71.286781, -22.560991], [71.275642, -22.561052], [71.264595, -22.561239], [71.253647, -22.561546], [71.242783, -22.561979], [71.232018, -22.562532], [71.221344, -22.56321], [71.210762, -22.564009], [71.200256, -22.56493], [71.189842, -22.565973], [71.179512, -22.567139], [71.169258, -22.568426], [71.159088, -22.569834], [71.149002, -22.571363], [71.138985, -22.573013], [71.129044, -22.574783], [71.119179, -22.576674], [71.109383, -22.578684], [71.099655, -22.580814], [71.089996, -22.583065], [71.080406, -22.585436], [71.070877, -22.587925], [71.061417, -22.590532], [71.05201, -22.59326], [71.042671, -22.596106], [71.033386, -22.59907], [71.024155, -22.602152], [71.014984, -22.605352], [71.005859, -22.608669], [70.996796, -22.612104], [70.98777, -22.615658], [70.978798, -22.619328], [70.969879, -22.623114], [70.960991, -22.627016], [70.952156, -22.631037], [70.943359, -22.635172], [70.934601, -22.639423], [70.92588, -22.643789], [70.917198, -22.648273], [70.908546, -22.65287], [70.899933, -22.657583], [70.89135, -22.662411], [70.88279, -22.667355], [70.874268, -22.672411], [70.865761, -22.677582], [70.857285, -22.682867], [70.848831, -22.688265], [70.840393, -22.693777], [70.831978, -22.699402], [70.823586, -22.705141], [70.815201, -22.710991], [70.806831, -22.716955], [70.798477, -22.723032], [70.790138, -22.729219], [70.781799, -22.735519], [70.773476, -22.741932], [70.765152, -22.748455], [70.756836, -22.755091], [70.74852, -22.761837], [70.740204, -22.768692], [70.731888, -22.77566], [70.723572, -22.782738], [70.715248, -22.789925], [70.706924, -22.797222], [70.698586, -22.80463], [70.690361, -22.812021], [70.682213, -22.819407], [70.674149, -22.826788], [70.666161, -22.834166], [70.658249, -22.841545], [70.650429, -22.848925], [70.642685, -22.856306], [70.635025, -22.863695], [70.627449, -22.871088], [70.619965, -22.87849], [70.612556, -22.885902], [70.60524, -22.893326], [70.598015, -22.900764], [70.590866, -22.908216], [70.583817, -22.915686], [70.576851, -22.923174], [70.569984, -22.930683], [70.563202, -22.938215], [70.556511, -22.94577], [70.549911, -22.95335], [70.543411, -22.960958], [70.537003, -22.968597], [70.530693, -22.976265], [70.524475, -22.983967], [70.518356, -22.991703], [70.512329, -22.999475], [70.506409, -23.007286], [70.50058, -23.015135], [70.494858, -23.023027], [70.489235, -23.030962], [70.483711, -23.038942], [70.478294, -23.046968], [70.472977, -23.055042], [70.467766, -23.063169], [70.462662, -23.071346], [70.457657, -23.079576], [70.452759, -23.087864], [70.447975, -23.096209], [70.443291, -23.10461], [70.438721, -23.113075], [70.434258, -23.121601], [70.429909, -23.130192], [70.425667, -23.138847], [70.421539, -23.147572], [70.417526, -23.156366], [70.41362, -23.165232], [70.409836, -23.17417], [70.406166, -23.183182], [70.402603, -23.192272], [70.39917, -23.201439], [70.395844, -23.210688], [70.392639, -23.220016], [70.389557, -23.229429], [70.386589, -23.238928], [70.383751, -23.248514], [70.381027, -23.258188], [70.378426, -23.267952], [70.375946, -23.277809], [70.373596, -23.28776], [70.371368, -23.297808], [70.369263, -23.307951], [70.367287, -23.318195], [70.36544, -23.328541], [70.363716, -23.338987], [70.362122, -23.349539], [70.360664, -23.360197], [70.359329, -23.370964], [70.358124, -23.38184], [70.357056, -23.392828], [70.356102, -23.403858], [70.355247, -23.414827], [70.354492, -23.425734], [70.353844, -23.436581], [70.353287, -23.447369], [70.352844, -23.458096], [70.352493, -23.468765], [70.352249, -23.479378], [70.352112, -23.489933], [70.352066, -23.500433], [70.352135, -23.510878], [70.352303, -23.521267], [70.35257, -23.531603], [70.352943, -23.541885], [70.353424, -23.552116], [70.354004, -23.562294], [70.354691, -23.572424], [70.355484, -23.582502], [70.356377, -23.592531], [70.357376, -23.60251], [70.358482, -23.612444], [70.359695, -23.62233], [70.361015, -23.632168], [70.362434, -23.641962], [70.363968, -23.651712], [70.365601, -23.661417], [70.367348, -23.67108], [70.369194, -23.680698], [70.371147, -23.690275], [70.373215, -23.699812], [70.375389, -23.709309], [70.377663, -23.718765], [70.380051, -23.728184], [70.382545, -23.737564], [70.385155, -23.746906], [70.387863, -23.756212], [70.390686, -23.765482], [70.393616, -23.774717], [70.39666, -23.783918], [70.399811, -23.793087], [70.403069, -23.802221], [70.406441, -23.811325], [70.40992, -23.820396], [70.413506, -23.829437], [70.417213, -23.838448], [70.421021, -23.847431], [70.42495, -23.856384], [70.428986, -23.865311], [70.433128, -23.87421], [70.437393, -23.883085], [70.441765, -23.891933], [70.446243, -23.900757], [70.450844, -23.909557], [70.455551, -23.918335], [70.460373, -23.92709], [70.465309, -23.935823], [70.47036, -23.944534], [70.475525, -23.953228], [70.480804, -23.961901], [70.486198, -23.970556], [70.491699, -23.979193], [70.497322, -23.987812], [70.503059, -23.996416], [70.508911, -24.005005], [70.514877, -24.013578], [70.520958, -24.022137], [70.527161, -24.030684], [70.53347, -24.039217], [70.539902, -24.047739], [70.546455, -24.05625], [70.553116, -24.064751], [70.559898, -24.073242], [70.566795, -24.081724], [70.573814, -24.090199], [70.580948, -24.098665], [70.588196, -24.107145], [70.595467, -24.11554], [70.602745, -24.123846], [70.610039, -24.132063], [70.617348, -24.140194], [70.624672, -24.148235], [70.632011, -24.156189], [70.639374, -24.164055], [70.646759, -24.171831], [70.65416, -24.179518], [70.661583, -24.187117], [70.669029, -24.194626], [70.676498, -24.202045], [70.68399, -24.209375], [70.691505, -24.216616], [70.699043, -24.223766], [70.706612, -24.230825], [70.714211, -24.237797], [70.721832, -24.244675], [70.729492, -24.251463], [70.737175, -24.258162], [70.744888, -24.264769], [70.752632, -24.271284], [70.760414, -24.277706], [70.768227, -24.284039], [70.77607, -24.290279], [70.783958, -24.296429], [70.79187, -24.302485], [70.799828, -24.308449], [70.807823, -24.31432], [70.815857, -24.320099], [70.823929, -24.325783], [70.832047, -24.331377], [70.840195, -24.336876], [70.848396, -24.342281], [70.856636, -24.347593], [70.864922, -24.352812], [70.873253, -24.357937], [70.88163, -24.362967], [70.890053, -24.367903], [70.898521, -24.372744], [70.907043, -24.377489], [70.915611, -24.382141], [70.924232, -24.386698], [70.932907, -24.391159], [70.941628, -24.395525], [70.950401, -24.399796], [70.959236, -24.403969], [70.968117, -24.408047], [70.977058, -24.412029], [70.986061, -24.415915], [70.995117, -24.419704], [71.004227, -24.423397], [71.013405, -24.426992], [71.022636, -24.43049], [71.031937, -24.433891], [71.04129, -24.437195], [71.050713, -24.440399], [71.060196, -24.443508], [71.06974, -24.446518], [71.079353, -24.44943], [71.089035, -24.452244], [71.098785, -24.454958], [71.108604, -24.457573], [71.118484, -24.460091], [71.128441, -24.462509], [71.138466, -24.464827], [71.148567, -24.467047], [71.158737, -24.469166], [71.168983, -24.471186], [71.179298, -24.473104], [71.189697, -24.474924], [71.200165, -24.476643], [71.210716, -24.478262], [71.221336, -24.479778], [71.23204, -24.481195], [71.242828, -24.482512], [71.253693, -24.483725], [71.264641, -24.484837], [71.275665, -24.485847], [71.286781, -24.486757], [71.297935, -24.487583], [71.309052, -24.48834], [71.320129, -24.489027], [71.331169, -24.489643], [71.342163, -24.490189], [71.353127, -24.490664], [71.364044, -24.491064], [71.374924, -24.491392], [71.385765, -24.491644], [71.396561, -24.491823], [71.407326, -24.491924], [71.418053, -24.491949], [71.428734, -24.491898], [71.439377, -24.491766], [71.449982, -24.491556], [71.460548, -24.491266], [71.471069, -24.490896], [71.48156, -24.490444], [71.492004, -24.489908], [71.502411, -24.48929], [71.512779, -24.488588], [71.523109, -24.487803], [71.533401, -24.486929], [71.543655, -24.485971], [71.553864, -24.484924], [71.564034, -24.483791], [71.574173, -24.482569], [71.584267, -24.481256], [71.594315, -24.479853], [71.604332, -24.478359], [71.614311, -24.476772], [71.624245, -24.475094], [71.63414, -24.473322], [71.643997, -24.471455], [71.653816, -24.469492], [71.663597, -24.467434], [71.67334, -24.465279], [71.683037, -24.463026], [71.692696, -24.460674], [71.702316, -24.458223], [71.711899, -24.455673], [71.721443, -24.453022], [71.730949, -24.45027], [71.740417, -24.447414], [71.74984, -24.444454], [71.759224, -24.441393], [71.76857, -24.438225], [71.777878, -24.434952], [71.787148, -24.431572], [71.796379, -24.428083], [71.805565, -24.424488], [71.81472, -24.420784], [71.82383, -24.416971], [71.832901, -24.413046], [71.841934, -24.409012], [71.850929, -24.404863], [71.859886, -24.400602], [71.868797, -24.396229], [71.87767, -24.391741], [71.886513, -24.387136], [71.895309, -24.382416], [71.904068, -24.377579], [71.912781, -24.372623], [71.921463, -24.36755], [71.930107, -24.362358], [71.938705, -24.357044], [71.947266, -24.35161], [71.955788, -24.346056], [71.964272, -24.340378], [71.972717, -24.334576], [71.981117, -24.328651], [71.989487, -24.322599], [71.99781, -24.316423], [72.006096, -24.310122], [72.014351, -24.303692], [72.022552, -24.297132], [72.030724, -24.290445], [72.038857, -24.283628], [72.046944, -24.276682], [72.055, -24.269602], [72.063011, -24.262392], [72.070984, -24.255047], [72.078918, -24.24757], [72.086815, -24.239958], [72.094666, -24.23221], [72.102486, -24.224325], [72.11026, -24.216305], [72.11792, -24.208225], [72.12545, -24.200108], [72.132851, -24.191956], [72.140114, -24.183765], [72.147247, -24.175537], [72.154251, -24.167274], [72.161125, -24.158974], [72.167862, -24.150639], [72.174477, -24.142265], [72.180954, -24.133856], [72.187309, -24.12541], [72.193535, -24.116928], [72.199631, -24.10841], [72.205605, -24.099857], [72.211449, -24.091267], [72.217163, -24.08264], [72.222755, -24.073978], [72.228226, -24.065281], [72.233566, -24.056547], [72.238792, -24.047777], [72.243889, -24.038971], [72.248856, -24.03013], [72.253708, -24.021254], [72.258438, -24.012342], [72.263046, -24.003395], [72.267532, -23.994411], [72.271904, -23.985394], [72.276146, -23.976339], [72.280273, -23.967251], [72.284286, -23.958126], [72.288177, -23.948967], [72.291954, -23.939774], [72.295609, -23.930544], [72.299149, -23.92128], [72.302574, -23.91198], [72.305885, -23.902647], [72.309074, -23.893278], [72.312157, -23.883875], [72.315125, -23.874435], [72.317978, -23.864964], [72.320717, -23.855455], [72.323341, -23.845915], [72.325859, -23.836338], [72.328262, -23.826727], [72.330559, -23.817083], [72.332741, -23.807404], [72.334816, -23.797689], [72.336777, -23.787943], [72.338631, -23.778162], [72.340385, -23.768345], [72.342026, -23.758495], [72.343559, -23.748613], [72.344986, -23.738695], [72.346306, -23.728745], [72.347519, -23.71876], [72.348633, -23.708742], [72.34964, -23.69869], [72.35054, -23.688604], [72.351341, -23.678484], [72.352036, -23.668333], [72.352631, -23.658146], [72.353119, -23.647928], [72.353508, -23.637674], [72.353798, -23.62739], [72.353989, -23.617071], [72.35408, -23.60672], [72.354073, -23.596334], [72.353966, -23.585917], [72.35376, -23.575466], [72.353455, -23.564983], [72.353058, -23.554466], [72.352562, -23.543917], [72.351967, -23.533335], [72.35128, -23.52272], [72.350502, -23.512074], [72.349625, -23.501394], [72.348648, -23.490683], [72.347588, -23.479939], [72.346428, -23.469162], [72.345184, -23.458355], [72.343842, -23.447514], [72.342407, -23.43664], [72.340881, -23.425735], [72.339272, -23.414799], [72.33757, -23.40383], [72.335777, -23.392828], [72.333855, -23.381845], [72.331779, -23.37101], [72.329544, -23.360315], [72.327156, -23.349762], [72.324615, -23.339348], [72.321922, -23.329067], [72.319084, -23.31892], [72.316101, -23.308905], [72.312965, -23.299017], [72.309692, -23.289253], [72.306282, -23.279613], [72.302727, -23.270094], [72.299034, -23.260695], [72.295204, -23.251408], [72.291245, -23.242235], [72.287148, -23.233173], [72.282921, -23.22422], [72.278564, -23.215372], [72.274086, -23.206627], [72.269478, -23.197983], [72.264748, -23.189436], [72.259895, -23.180984], [72.254921, -23.172626], [72.249832, -23.16436], [72.244629, -23.156181], [72.239304, -23.148088], [72.233871, -23.140079], [72.228325, -23.132149], [72.222672, -23.124298], [72.216904, -23.116524], [72.211037, -23.108822], [72.205063, -23.101191], [72.19899, -23.093626], [72.192818, -23.08613], [72.186539, -23.078695], [72.180168, -23.071321], [72.173698, -23.064007], [72.167145, -23.056747], [72.160492, -23.049541], [72.153748, -23.042387], [72.146919, -23.03528], [72.140007, -23.028219], [72.133003, -23.021202], [72.125923, -23.014225], [72.118759, -23.007286], [72.111511, -23.000385], [72.104195, -22.993515], [72.096794, -22.986677], [72.089325, -22.979868], [72.081787, -22.973083], [72.074173, -22.966324], [72.06649, -22.959583], [72.058746, -22.952864], [72.050926, -22.946157], [72.043053, -22.939466], [72.035118, -22.932785], [72.027115, -22.926113], [72.019066, -22.919447], [72.010948, -22.912785], [72.002785, -22.906124], [71.994568, -22.89946], [71.986298, -22.892794], [71.977982, -22.88612], [71.969612, -22.879438], [71.961205, -22.872744], [71.952744, -22.866037], [71.944252, -22.859312], [71.935715, -22.85257], [71.927139, -22.845804], [71.918526, -22.839016], [71.909882, -22.832203], [71.901199, -22.825359], [71.892487, -22.818483], [71.883743, -22.811575], [71.874977, -22.80463]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"50kt\", \"ne\": 36, \"se\": 39, \"sw\": 39, \"nw\": 38, \"validDateTime\": \"2024-01-29T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 85.0, \"forecastHour\": 96}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.639702, -23.039909], [71.639702, -23.039909], [71.63192, -23.032076], [71.624252, -23.024254], [71.616684, -23.016447], [71.609207, -23.008663], [71.601807, -23.000908], [71.59449, -22.993189], [71.587234, -22.98551], [71.580032, -22.97788], [71.572884, -22.970304], [71.565773, -22.96279], [71.558701, -22.955341], [71.551643, -22.947966], [71.544601, -22.94067], [71.537567, -22.93346], [71.530533, -22.926342], [71.523483, -22.919323], [71.516418, -22.912409], [71.509323, -22.905603], [71.50219, -22.898918], [71.49501, -22.892355], [71.487778, -22.885921], [71.480484, -22.879623], [71.473114, -22.87347], [71.465668, -22.867464], [71.45813, -22.861614], [71.4505, -22.855925], [71.442764, -22.850403], [71.434914, -22.845055], [71.426941, -22.839888], [71.418831, -22.834908], [71.410591, -22.830118], [71.402191, -22.825531], [71.393646, -22.821148], [71.384926, -22.816977], [71.376038, -22.813023], [71.366966, -22.809294], [71.357704, -22.805796], [71.348236, -22.802534], [71.33857, -22.799517], [71.328674, -22.796749], [71.318565, -22.794235], [71.308212, -22.791986], [71.297623, -22.790005], [71.286781, -22.788298], [71.275696, -22.786787], [71.264687, -22.785435], [71.253738, -22.784241], [71.242867, -22.783207], [71.232056, -22.782333], [71.221321, -22.781622], [71.210655, -22.781075], [71.20005, -22.780693], [71.189514, -22.780476], [71.179047, -22.780428], [71.16864, -22.780548], [71.158302, -22.780836], [71.148033, -22.781298], [71.137817, -22.781931], [71.12767, -22.782738], [71.117584, -22.783718], [71.107567, -22.784876], [71.097603, -22.786209], [71.087708, -22.787724], [71.077866, -22.789415], [71.068085, -22.79129], [71.058365, -22.793346], [71.048698, -22.795586], [71.039101, -22.79801], [71.029549, -22.800619], [71.020065, -22.803417], [71.010628, -22.806402], [71.001251, -22.809578], [70.991928, -22.812944], [70.982666, -22.816502], [70.97345, -22.820253], [70.964294, -22.824202], [70.955185, -22.828342], [70.946129, -22.832682], [70.937126, -22.837219], [70.928177, -22.841957], [70.919281, -22.846895], [70.910431, -22.852036], [70.901627, -22.85738], [70.892876, -22.862928], [70.884171, -22.868681], [70.875519, -22.874643], [70.866913, -22.880812], [70.858345, -22.88719], [70.849831, -22.89378], [70.841362, -22.900581], [70.832939, -22.907597], [70.824562, -22.914825], [70.816223, -22.92227], [70.808006, -22.929852], [70.799995, -22.937485], [70.792183, -22.945173], [70.784561, -22.952915], [70.777145, -22.960714], [70.76992, -22.968569], [70.762886, -22.976479], [70.756042, -22.984449], [70.749397, -22.992477], [70.742935, -23.000565], [70.736664, -23.008711], [70.730576, -23.01692], [70.72467, -23.025188], [70.718948, -23.033522], [70.713402, -23.041918], [70.708046, -23.050377], [70.702858, -23.058901], [70.697853, -23.067492], [70.693016, -23.076147], [70.688354, -23.084871], [70.683868, -23.093662], [70.67955, -23.102524], [70.6754, -23.111452], [70.671417, -23.120453], [70.667603, -23.129522], [70.663948, -23.138666], [70.660454, -23.147881], [70.657127, -23.157169], [70.653954, -23.166533], [70.65094, -23.175968], [70.648079, -23.185482], [70.645378, -23.195072], [70.64283, -23.204739], [70.640434, -23.214483], [70.638184, -23.224306], [70.636078, -23.234209], [70.634125, -23.244192], [70.632317, -23.254257], [70.630653, -23.264404], [70.629128, -23.274633], [70.627747, -23.284945], [70.626503, -23.295341], [70.625397, -23.305822], [70.624428, -23.316391], [70.623596, -23.327044], [70.622894, -23.337786], [70.622322, -23.348616], [70.62188, -23.359533], [70.621567, -23.370541], [70.621376, -23.381639], [70.621315, -23.392828], [70.621384, -23.404009], [70.62159, -23.415087], [70.621941, -23.426058], [70.622429, -23.436928], [70.623055, -23.447699], [70.623825, -23.458368], [70.624741, -23.468943], [70.625793, -23.47942], [70.626991, -23.489805], [70.628334, -23.500095], [70.629822, -23.510298], [70.631454, -23.520411], [70.63324, -23.530436], [70.635162, -23.540377], [70.637238, -23.550232], [70.639465, -23.560007], [70.641838, -23.5697], [70.644356, -23.579315], [70.647034, -23.588852], [70.649857, -23.598314], [70.652832, -23.607704], [70.65596, -23.61702], [70.659241, -23.626266], [70.662682, -23.635445], [70.666267, -23.644554], [70.670013, -23.653599], [70.67392, -23.66258], [70.677979, -23.671501], [70.682198, -23.680359], [70.686569, -23.689159], [70.691101, -23.697903], [70.695801, -23.706591], [70.700653, -23.715225], [70.705666, -23.723808], [70.710846, -23.732342], [70.716179, -23.740824], [70.721687, -23.749262], [70.727348, -23.757652], [70.733177, -23.766001], [70.739174, -23.774307], [70.745338, -23.782572], [70.751663, -23.7908], [70.758163, -23.79899], [70.764824, -23.807144], [70.771652, -23.815268], [70.778656, -23.823357], [70.785828, -23.831415], [70.793167, -23.839447], [70.800682, -23.847452], [70.808365, -23.855431], [70.816223, -23.863386], [70.824181, -23.871244], [70.832161, -23.878929], [70.840164, -23.886442], [70.84819, -23.893784], [70.856255, -23.900955], [70.864342, -23.907955], [70.872467, -23.914787], [70.880623, -23.92145], [70.888809, -23.927946], [70.897034, -23.934273], [70.905304, -23.940434], [70.913605, -23.94643], [70.921959, -23.952261], [70.930351, -23.957926], [70.938782, -23.963428], [70.947266, -23.968767], [70.955803, -23.973944], [70.964386, -23.978958], [70.973015, -23.983812], [70.981705, -23.988506], [70.990448, -23.99304], [70.999252, -23.997416], [71.00811, -24.001633], [71.017029, -24.005693], [71.026009, -24.009596], [71.035057, -24.013342], [71.044167, -24.016933], [71.053345, -24.02037], [71.062592, -24.023653], [71.071907, -24.026781], [71.081291, -24.029758], [71.090759, -24.032581], [71.100296, -24.035255], [71.109909, -24.037779], [71.119606, -24.040152], [71.129379, -24.042374], [71.139236, -24.044449], [71.14917, -24.046377], [71.159195, -24.048157], [71.169312, -24.049791], [71.179512, -24.051279], [71.189804, -24.052622], [71.200188, -24.05382], [71.21067, -24.054876], [71.221237, -24.055788], [71.231911, -24.056559], [71.242683, -24.057186], [71.253548, -24.057674], [71.264526, -24.058022], [71.275597, -24.058229], [71.286781, -24.058298], [71.297974, -24.058235], [71.309067, -24.058048], [71.320076, -24.057735], [71.330994, -24.057293], [71.341827, -24.056723], [71.352562, -24.056019], [71.36322, -24.055183], [71.373787, -24.054214], [71.38427, -24.053108], [71.394661, -24.051865], [71.404976, -24.050482], [71.415207, -24.04896], [71.425354, -24.047295], [71.435417, -24.045485], [71.445396, -24.043531], [71.455299, -24.041431], [71.465126, -24.039183], [71.474869, -24.036783], [71.484535, -24.034233], [71.494125, -24.031528], [71.503639, -24.028671], [71.513077, -24.025658], [71.522438, -24.022486], [71.531731, -24.019156], [71.540947, -24.015663], [71.550087, -24.012011], [71.559158, -24.008192], [71.568153, -24.00421], [71.577087, -24.000059], [71.585945, -23.995741], [71.594742, -23.991253], [71.603462, -23.986593], [71.612122, -23.98176], [71.620705, -23.976751], [71.629234, -23.971567], [71.637695, -23.966206], [71.646088, -23.960665], [71.654419, -23.954943], [71.662689, -23.949038], [71.670898, -23.942949], [71.679047, -23.936674], [71.687134, -23.930214], [71.69516, -23.923563], [71.703133, -23.916723], [71.711044, -23.909691], [71.718895, -23.902466], [71.726692, -23.895046], [71.734436, -23.88743], [71.742126, -23.879616], [71.749756, -23.871601], [71.757339, -23.863386], [71.764786, -23.855049], [71.772011, -23.84667], [71.77903, -23.838245], [71.785828, -23.829777], [71.792419, -23.82126], [71.798798, -23.8127], [71.80497, -23.804092], [71.810928, -23.795437], [71.816681, -23.786734], [71.822227, -23.777983], [71.827576, -23.769182], [71.83271, -23.760332], [71.837654, -23.751431], [71.842392, -23.742479], [71.846924, -23.733479], [71.851265, -23.724424], [71.855408, -23.715317], [71.859352, -23.706158], [71.863106, -23.696945], [71.866669, -23.687677], [71.870033, -23.678356], [71.873207, -23.66898], [71.87619, -23.659546], [71.87899, -23.650057], [71.881599, -23.640511], [71.884026, -23.630907], [71.886261, -23.621246], [71.888321, -23.611525], [71.89019, -23.601746], [71.891884, -23.591906], [71.893402, -23.582005], [71.894737, -23.572044], [71.895889, -23.562021], [71.896873, -23.551937], [71.897682, -23.54179], [71.898308, -23.53158], [71.898773, -23.521305], [71.899063, -23.510967], [71.899185, -23.500563], [71.899132, -23.490093], [71.898918, -23.479559], [71.898537, -23.468956], [71.897987, -23.458286], [71.897278, -23.44755], [71.8964, -23.436745], [71.89537, -23.425871], [71.894173, -23.414927], [71.892822, -23.403913], [71.891312, -23.392828], [71.889603, -23.381987], [71.887627, -23.371395], [71.885376, -23.361046], [71.882858, -23.350933], [71.880096, -23.341043], [71.877075, -23.331371], [71.873817, -23.321909], [71.870316, -23.312645], [71.866585, -23.303572], [71.862633, -23.294682], [71.858459, -23.285967], [71.85408, -23.277416], [71.849487, -23.269022], [71.844704, -23.260777], [71.839722, -23.252672], [71.834557, -23.244698], [71.829208, -23.236847], [71.823685, -23.229109], [71.817993, -23.221478], [71.812149, -23.213942], [71.806137, -23.206495], [71.799988, -23.199129], [71.793686, -23.191833], [71.787254, -23.184601], [71.780693, -23.177422], [71.77401, -23.17029], [71.767204, -23.163193], [71.760284, -23.156126], [71.753265, -23.149076], [71.746147, -23.14204], [71.738937, -23.135006], [71.731644, -23.127966], [71.724266, -23.120913], [71.71682, -23.113834], [71.709305, -23.106726], [71.701729, -23.099577], [71.694099, -23.092379], [71.686424, -23.085123], [71.678703, -23.077803], [71.670952, -23.070408], [71.663162, -23.062929], [71.655357, -23.055359], [71.647537, -23.047688], [71.639702, -23.039909]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 19, \"se\": 19, \"sw\": 19, \"nw\": 19, \"validDateTime\": \"2024-01-29T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 85.0, \"forecastHour\": 96}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.522057, -23.157549], [71.522057, -23.157549], [71.514244, -23.149923], [71.506378, -23.14263], [71.498466, -23.135664], [71.490486, -23.129025], [71.482445, -23.122707], [71.474327, -23.116713], [71.466125, -23.111034], [71.45784, -23.105671], [71.449463, -23.100622], [71.440994, -23.095882], [71.432411, -23.09145], [71.423721, -23.087322], [71.414909, -23.083498], [71.405975, -23.079973], [71.396912, -23.076744], [71.387711, -23.073811], [71.378365, -23.071169], [71.368874, -23.068817], [71.359222, -23.066751], [71.349411, -23.064968], [71.339432, -23.063467], [71.329277, -23.062246], [71.318939, -23.0613], [71.308418, -23.060627], [71.297699, -23.060226], [71.286781, -23.060093], [71.275864, -23.060226], [71.265144, -23.060627], [71.254623, -23.0613], [71.244286, -23.062246], [71.234131, -23.063467], [71.224152, -23.064968], [71.21434, -23.066751], [71.204689, -23.068817], [71.195198, -23.071169], [71.185852, -23.073811], [71.176651, -23.076744], [71.167587, -23.079973], [71.158653, -23.083498], [71.149841, -23.087322], [71.141151, -23.09145], [71.132568, -23.095882], [71.1241, -23.100622], [71.115723, -23.105671], [71.107437, -23.111034], [71.099236, -23.116713], [71.091118, -23.122707], [71.083076, -23.129025], [71.075096, -23.135664], [71.067184, -23.14263], [71.059319, -23.149923], [71.051506, -23.157549], [71.043884, -23.165363], [71.036583, -23.173225], [71.029617, -23.181141], [71.02298, -23.189119], [71.016663, -23.197163], [71.010666, -23.205282], [71.00499, -23.21348], [70.999626, -23.221764], [70.994576, -23.230141], [70.989838, -23.238617], [70.985405, -23.247196], [70.981277, -23.25589], [70.977455, -23.2647], [70.97393, -23.273634], [70.970703, -23.282698], [70.967766, -23.291899], [70.965126, -23.301245], [70.962769, -23.310738], [70.960709, -23.320387], [70.958923, -23.3302], [70.95742, -23.340179], [70.9562, -23.350334], [70.955254, -23.36067], [70.954582, -23.371195], [70.954178, -23.38191], [70.954048, -23.392828], [70.954178, -23.403746], [70.954582, -23.414461], [70.955254, -23.424986], [70.9562, -23.435322], [70.95742, -23.445477], [70.958923, -23.455456], [70.960709, -23.465269], [70.962769, -23.474918], [70.965126, -23.484411], [70.967766, -23.493757], [70.970703, -23.502958], [70.97393, -23.512022], [70.977455, -23.520956], [70.981277, -23.529766], [70.985405, -23.53846], [70.989838, -23.547039], [70.994576, -23.555515], [70.999626, -23.563892], [71.00499, -23.572176], [71.010666, -23.580374], [71.016663, -23.588493], [71.02298, -23.596537], [71.029617, -23.604515], [71.036583, -23.612431], [71.043884, -23.620293], [71.051506, -23.628107], [71.059319, -23.635733], [71.067184, -23.643026], [71.075096, -23.649992], [71.083076, -23.656631], [71.091118, -23.662949], [71.099236, -23.668943], [71.107437, -23.674622], [71.115723, -23.679985], [71.1241, -23.685034], [71.132568, -23.689774], [71.141151, -23.694206], [71.149841, -23.698334], [71.158653, -23.702158], [71.167587, -23.705683], [71.176651, -23.708912], [71.185852, -23.711845], [71.195198, -23.714487], [71.204689, -23.716839], [71.21434, -23.718904], [71.224152, -23.720688], [71.234131, -23.722189], [71.244286, -23.72341], [71.254623, -23.724356], [71.265144, -23.725029], [71.275864, -23.72543], [71.286781, -23.725563], [71.297699, -23.72543], [71.308418, -23.725029], [71.318939, -23.724356], [71.329277, -23.72341], [71.339432, -23.722189], [71.349411, -23.720688], [71.359222, -23.718904], [71.368874, -23.716839], [71.378365, -23.714487], [71.387711, -23.711845], [71.396912, -23.708912], [71.405975, -23.705683], [71.414909, -23.702158], [71.423721, -23.698334], [71.432411, -23.694206], [71.440994, -23.689774], [71.449463, -23.685034], [71.45784, -23.679985], [71.466125, -23.674622], [71.474327, -23.668943], [71.482445, -23.662949], [71.490486, -23.656631], [71.498466, -23.649992], [71.506378, -23.643026], [71.514244, -23.635733], [71.522057, -23.628107], [71.529678, -23.620293], [71.53698, -23.612431], [71.543945, -23.604515], [71.550583, -23.596537], [71.5569, -23.588493], [71.562897, -23.580374], [71.568573, -23.572176], [71.573936, -23.563892], [71.578987, -23.555515], [71.583725, -23.547039], [71.588158, -23.53846], [71.592285, -23.529766], [71.596107, -23.520956], [71.599632, -23.512022], [71.602859, -23.502958], [71.605797, -23.493757], [71.608437, -23.484411], [71.610794, -23.474918], [71.612854, -23.465269], [71.614639, -23.455456], [71.616142, -23.445477], [71.617363, -23.435322], [71.618309, -23.424986], [71.61898, -23.414461], [71.619385, -23.403746], [71.619514, -23.392828], [71.619385, -23.38191], [71.61898, -23.371195], [71.618309, -23.36067], [71.617363, -23.350334], [71.616142, -23.340179], [71.614639, -23.3302], [71.612854, -23.320387], [71.610794, -23.310738], [71.608437, -23.301245], [71.605797, -23.291899], [71.602859, -23.282698], [71.599632, -23.273634], [71.596107, -23.2647], [71.592285, -23.25589], [71.588158, -23.247196], [71.583725, -23.238617], [71.578987, -23.230141], [71.573936, -23.221764], [71.568573, -23.21348], [71.562897, -23.205282], [71.5569, -23.197163], [71.550583, -23.189119], [71.543945, -23.181141], [71.53698, -23.173225], [71.529678, -23.165363], [71.522057, -23.157549]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-25T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 75.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[90.805832, -14.394163], [90.805832, -14.394163], [90.797592, -14.386686], [90.789345, -14.379306], [90.781105, -14.372019], [90.772873, -14.364828], [90.764633, -14.357733], [90.756393, -14.350732], [90.748146, -14.343827], [90.739906, -14.337018], [90.731651, -14.330304], [90.723396, -14.323686], [90.715134, -14.317163], [90.706863, -14.310736], [90.698578, -14.304405], [90.690292, -14.29817], [90.681984, -14.29203], [90.673676, -14.285988], [90.665344, -14.280041], [90.657005, -14.27419], [90.648643, -14.268435], [90.640266, -14.262777], [90.631874, -14.257215], [90.623466, -14.25175], [90.615036, -14.246381], [90.606583, -14.241109], [90.598106, -14.235933], [90.589607, -14.230854], [90.581085, -14.225872], [90.57254, -14.220987], [90.563965, -14.216199], [90.555367, -14.211509], [90.546738, -14.206914], [90.538078, -14.202417], [90.529388, -14.198018], [90.52066, -14.193716], [90.511909, -14.189511], [90.50312, -14.185404], [90.494293, -14.181395], [90.485435, -14.177482], [90.47654, -14.173668], [90.467598, -14.16995], [90.458626, -14.166332], [90.449608, -14.16281], [90.440552, -14.159388], [90.43145, -14.156063], [90.422302, -14.152836], [90.413109, -14.149707], [90.403877, -14.146676], [90.394592, -14.143744], [90.385262, -14.14091], [90.375877, -14.138175], [90.366447, -14.135538], [90.356964, -14.133], [90.347435, -14.13056], [90.337845, -14.12822], [90.328201, -14.125978], [90.318504, -14.123835], [90.308746, -14.12179], [90.298927, -14.119845], [90.289055, -14.117999], [90.279121, -14.116252], [90.269127, -14.114604], [90.259071, -14.113056], [90.248955, -14.111608], [90.23877, -14.110258], [90.228516, -14.109008], [90.218201, -14.107858], [90.207817, -14.106807], [90.197357, -14.105856], [90.186836, -14.105004], [90.176239, -14.104253], [90.165573, -14.103601], [90.154839, -14.10305], [90.14402, -14.102599], [90.133133, -14.102248], [90.122162, -14.101997], [90.111122, -14.101847], [90.099998, -14.101796], [90.088875, -14.101842], [90.077812, -14.101978], [90.066826, -14.102206], [90.055908, -14.102527], [90.045052, -14.102939], [90.034271, -14.103442], [90.023552, -14.104039], [90.012894, -14.10473], [90.002312, -14.105513], [89.991783, -14.10639], [89.981323, -14.10736], [89.970924, -14.108425], [89.960587, -14.109585], [89.95031, -14.110839], [89.940094, -14.112188], [89.929939, -14.113632], [89.919846, -14.115173], [89.909805, -14.116809], [89.899818, -14.118542], [89.8899, -14.120371], [89.880028, -14.122297], [89.870216, -14.124321], [89.860458, -14.126442], [89.850746, -14.12866], [89.841095, -14.130978], [89.831497, -14.133392], [89.821953, -14.135906], [89.812454, -14.138519], [89.803001, -14.141232], [89.79361, -14.144044], [89.784256, -14.146955], [89.774956, -14.149968], [89.765701, -14.153081], [89.756493, -14.156294], [89.74733, -14.159609], [89.738213, -14.163025], [89.729141, -14.166543], [89.720116, -14.170163], [89.711128, -14.173885], [89.702179, -14.17771], [89.693283, -14.181638], [89.684418, -14.185669], [89.675598, -14.189804], [89.666809, -14.194042], [89.658066, -14.198385], [89.649361, -14.202832], [89.640694, -14.207384], [89.632057, -14.212041], [89.623459, -14.216804], [89.614899, -14.221672], [89.606369, -14.226645], [89.59787, -14.231727], [89.589409, -14.236913], [89.580978, -14.242207], [89.572571, -14.247608], [89.564201, -14.253117], [89.555862, -14.258733], [89.547554, -14.264458], [89.539268, -14.27029], [89.531013, -14.276232], [89.522781, -14.282282], [89.51458, -14.288443], [89.506401, -14.294712], [89.498253, -14.301091], [89.49012, -14.307581], [89.482018, -14.31418], [89.47393, -14.320891], [89.465874, -14.327714], [89.457832, -14.334647], [89.449806, -14.341693], [89.441803, -14.34885], [89.433823, -14.356119], [89.425858, -14.363502], [89.417908, -14.370996], [89.409981, -14.378605], [89.402061, -14.386328], [89.394165, -14.394163], [89.38633, -14.402063], [89.378609, -14.409979], [89.371002, -14.41791], [89.363503, -14.425858], [89.356117, -14.433822], [89.348854, -14.441805], [89.341698, -14.449806], [89.334648, -14.457828], [89.327713, -14.465869], [89.320892, -14.473931], [89.314178, -14.482015], [89.307579, -14.490121], [89.301094, -14.49825], [89.294716, -14.506403], [89.288445, -14.514581], [89.28228, -14.522783], [89.27623, -14.531013], [89.270287, -14.539268], [89.264458, -14.547551], [89.258736, -14.555863], [89.253113, -14.564203], [89.247604, -14.572574], [89.242203, -14.580974], [89.236916, -14.589405], [89.231728, -14.597869], [89.226646, -14.606365], [89.221672, -14.614894], [89.216805, -14.623458], [89.212044, -14.632056], [89.207382, -14.64069], [89.202827, -14.64936], [89.198387, -14.658067], [89.194038, -14.666812], [89.189804, -14.675594], [89.185669, -14.684417], [89.181633, -14.693279], [89.177711, -14.702182], [89.173882, -14.711126], [89.170158, -14.720113], [89.166542, -14.729142], [89.163025, -14.738214], [89.159607, -14.747332], [89.156288, -14.756494], [89.153076, -14.765701], [89.149963, -14.774956], [89.14695, -14.784257], [89.144043, -14.793606], [89.141228, -14.803004], [89.138519, -14.812451], [89.135902, -14.821949], [89.133392, -14.831497], [89.130974, -14.841098], [89.128654, -14.85075], [89.126434, -14.860456], [89.124313, -14.870214], [89.122292, -14.880028], [89.120369, -14.889897], [89.118538, -14.899822], [89.116806, -14.909803], [89.115166, -14.919843], [89.113625, -14.929939], [89.112183, -14.940096], [89.110832, -14.950312], [89.109581, -14.960588], [89.108421, -14.970924], [89.107353, -14.981323], [89.106384, -14.991785], [89.105507, -15.00231], [89.104721, -15.012898], [89.104034, -15.023552], [89.103439, -15.034271], [89.102936, -15.045056], [89.102524, -15.055908], [89.102203, -15.066828], [89.101974, -15.077816], [89.101837, -15.088873], [89.101791, -15.1], [89.101845, -15.111123], [89.10199, -15.122167], [89.102242, -15.133133], [89.102592, -15.144023], [89.103043, -15.154838], [89.1036, -15.165578], [89.104248, -15.176245], [89.105003, -15.18684], [89.10585, -15.197364], [89.106804, -15.207817], [89.107849, -15.218203], [89.109001, -15.228519], [89.110252, -15.23877], [89.111603, -15.248956], [89.113052, -15.259076], [89.114601, -15.269133], [89.116249, -15.279127], [89.117996, -15.289061], [89.119843, -15.298934], [89.121788, -15.308748], [89.123833, -15.318504], [89.125977, -15.328203], [89.12822, -15.337847], [89.130554, -15.347436], [89.132996, -15.356971], [89.135536, -15.366453], [89.138168, -15.375884], [89.140907, -15.385265], [89.143738, -15.394596], [89.146675, -15.40388], [89.149704, -15.413116], [89.152832, -15.422306], [89.156059, -15.431451], [89.159386, -15.440552], [89.162811, -15.449611], [89.166328, -15.458627], [89.169945, -15.467604], [89.173668, -15.47654], [89.177483, -15.485438], [89.181389, -15.494299], [89.185402, -15.503123], [89.189507, -15.511913], [89.193718, -15.520668], [89.198013, -15.52939], [89.202415, -15.538081], [89.206917, -15.546741], [89.21151, -15.555371], [89.216202, -15.563972], [89.220985, -15.572546], [89.225868, -15.581093], [89.23085, -15.589615], [89.235931, -15.598113], [89.241112, -15.606587], [89.246384, -15.61504], [89.251747, -15.62347], [89.257217, -15.631882], [89.262779, -15.640274], [89.268433, -15.648649], [89.274193, -15.657007], [89.280045, -15.665349], [89.285988, -15.673677], [89.29203, -15.681992], [89.298172, -15.690294], [89.304405, -15.698585], [89.310738, -15.706865], [89.317162, -15.715137], [89.323685, -15.723401], [89.330307, -15.731658], [89.337021, -15.739908], [89.343826, -15.748155], [89.350731, -15.756397], [89.357735, -15.764638], [89.36483, -15.772876], [89.372025, -15.781115], [89.379311, -15.789353], [89.386688, -15.797594], [89.394165, -15.805838], [89.401703, -15.814064], [89.409241, -15.822216], [89.416779, -15.830293], [89.424324, -15.838294], [89.431862, -15.846219], [89.439407, -15.854068], [89.44696, -15.861839], [89.454514, -15.869534], [89.462082, -15.87715], [89.46965, -15.884688], [89.477234, -15.892148], [89.484825, -15.899529], [89.492424, -15.906831], [89.500038, -15.914052], [89.507668, -15.921193], [89.515312, -15.928253], [89.522972, -15.935233], [89.530647, -15.942131], [89.538345, -15.948947], [89.546059, -15.955681], [89.553802, -15.962331], [89.561562, -15.968899], [89.569344, -15.975383], [89.577148, -15.981783], [89.584976, -15.988098], [89.592834, -15.994328], [89.600723, -16.000473], [89.608635, -16.006533], [89.616585, -16.012506], [89.624557, -16.018393], [89.632568, -16.024193], [89.64061, -16.029905], [89.648689, -16.035528], [89.656799, -16.041065], [89.664955, -16.046513], [89.673141, -16.05187], [89.681366, -16.057138], [89.689636, -16.062319], [89.697945, -16.067406], [89.706299, -16.072405], [89.714699, -16.077311], [89.723145, -16.082125], [89.731628, -16.086847], [89.740166, -16.091478], [89.748749, -16.096016], [89.757385, -16.10046], [89.766075, -16.104809], [89.774811, -16.109066], [89.7836, -16.113228], [89.792442, -16.117294], [89.801346, -16.121264], [89.810303, -16.125139], [89.819321, -16.128918], [89.8284, -16.132601], [89.837532, -16.136187], [89.846725, -16.139673], [89.855988, -16.143063], [89.865311, -16.146355], [89.874702, -16.149546], [89.884155, -16.152639], [89.893677, -16.155634], [89.903267, -16.158527], [89.912926, -16.16132], [89.922653, -16.164011], [89.932457, -16.166603], [89.942329, -16.16909], [89.952278, -16.171478], [89.962303, -16.173761], [89.972404, -16.175943], [89.982582, -16.17802], [89.992836, -16.179995], [90.003174, -16.181866], [90.013596, -16.18363], [90.024094, -16.185289], [90.034676, -16.186844], [90.045349, -16.188292], [90.056099, -16.189634], [90.06694, -16.190868], [90.077873, -16.191998], [90.08889, -16.193018], [90.099998, -16.19393], [90.111153, -16.194754], [90.122261, -16.195505], [90.133331, -16.196182], [90.144356, -16.196787], [90.155334, -16.197317], [90.166275, -16.197773], [90.17717, -16.198151], [90.188026, -16.198454], [90.198837, -16.198679], [90.20961, -16.198828], [90.220337, -16.198896], [90.231026, -16.198887], [90.241669, -16.198797], [90.252274, -16.198627], [90.26284, -16.198378], [90.273361, -16.198044], [90.283844, -16.197628], [90.294281, -16.19713], [90.30468, -16.196548], [90.315041, -16.195881], [90.325356, -16.195129], [90.335632, -16.19429], [90.345871, -16.193367], [90.356064, -16.192354], [90.366219, -16.191256], [90.376343, -16.190067], [90.386414, -16.188791], [90.396454, -16.187424], [90.406456, -16.185966], [90.416412, -16.184418], [90.426331, -16.182775], [90.436211, -16.181044], [90.446053, -16.179216], [90.455856, -16.177296], [90.465622, -16.175282], [90.475349, -16.17317], [90.485039, -16.170965], [90.494682, -16.168661], [90.504295, -16.166262], [90.51387, -16.163763], [90.523407, -16.161167], [90.532906, -16.15847], [90.542366, -16.155674], [90.551788, -16.152779], [90.561172, -16.14978], [90.570518, -16.146681], [90.579834, -16.143478], [90.589104, -16.140173], [90.598343, -16.136763], [90.607544, -16.133247], [90.616707, -16.129627], [90.625839, -16.125902], [90.634926, -16.122068], [90.643982, -16.11813], [90.653008, -16.11408], [90.661987, -16.109924], [90.670937, -16.105658], [90.679855, -16.101282], [90.688728, -16.096796], [90.697571, -16.092197], [90.706383, -16.087486], [90.715149, -16.082664], [90.723892, -16.077726], [90.73259, -16.072676], [90.741257, -16.067511], [90.749893, -16.062231], [90.758492, -16.056833], [90.767059, -16.051319], [90.775589, -16.045689], [90.784088, -16.03994], [90.792549, -16.034071], [90.80098, -16.028084], [90.809372, -16.021976], [90.817741, -16.015747], [90.826065, -16.009398], [90.834366, -16.002926], [90.842628, -15.99633], [90.850861, -15.989613], [90.859055, -15.982769], [90.867218, -15.975802], [90.875351, -15.968709], [90.883453, -15.96149], [90.891525, -15.954144], [90.899559, -15.94667], [90.907562, -15.939068], [90.915535, -15.931337], [90.923477, -15.923477], [90.931335, -15.915536], [90.939072, -15.907563], [90.946671, -15.899559], [90.95414, -15.891522], [90.961487, -15.883454], [90.968712, -15.875354], [90.9758, -15.867221], [90.982765, -15.859056], [90.989609, -15.850858], [90.99633, -15.842628], [91.002922, -15.834364], [91.009399, -15.826067], [91.015747, -15.817738], [91.021973, -15.809375], [91.028084, -15.800979], [91.034073, -15.792549], [91.03994, -15.784086], [91.045685, -15.775589], [91.051315, -15.767057], [91.056831, -15.758492], [91.062225, -15.749893], [91.067513, -15.74126], [91.072678, -15.732592], [91.077728, -15.723889], [91.082664, -15.715152], [91.087486, -15.706379], [91.092194, -15.697572], [91.096794, -15.688729], [91.10128, -15.679852], [91.105659, -15.670938], [91.109924, -15.66199], [91.114082, -15.653006], [91.118126, -15.643986], [91.12207, -15.63493], [91.1259, -15.625837], [91.129623, -15.61671], [91.133247, -15.607545], [91.136757, -15.598344], [91.140167, -15.589106], [91.143478, -15.579831], [91.146675, -15.57052], [91.14978, -15.561172], [91.152779, -15.551786], [91.15567, -15.542363], [91.15847, -15.532903], [91.161163, -15.523405], [91.163757, -15.513869], [91.16626, -15.504296], [91.168655, -15.494685], [91.170959, -15.485036], [91.173164, -15.475348], [91.175278, -15.465622], [91.177292, -15.455857], [91.179214, -15.446054], [91.181038, -15.436213], [91.18277, -15.426332], [91.18441, -15.416412], [91.185959, -15.406453], [91.187416, -15.396455], [91.188789, -15.386417], [91.190063, -15.37634], [91.191254, -15.366223], [91.192352, -15.356067], [91.193359, -15.345869], [91.19429, -15.335632], [91.195122, -15.325356], [91.195877, -15.315038], [91.196541, -15.30468], [91.197128, -15.294281], [91.197624, -15.283842], [91.198036, -15.273361], [91.198372, -15.26284], [91.198624, -15.252277], [91.198792, -15.241673], [91.198883, -15.231028], [91.198891, -15.220341], [91.198822, -15.209612], [91.198677, -15.198841], [91.198448, -15.188029], [91.198143, -15.177175], [91.197769, -15.166277], [91.197311, -15.155338], [91.196785, -15.144356], [91.196175, -15.133331], [91.195496, -15.122264], [91.194748, -15.111154], [91.193924, -15.1], [91.193008, -15.088891], [91.191994, -15.077873], [91.190865, -15.066944], [91.189629, -15.056103], [91.188286, -15.045348], [91.186836, -15.034679], [91.18528, -15.024096], [91.183624, -15.013596], [91.181862, -15.003177], [91.179993, -14.99284], [91.178017, -14.982583], [91.175934, -14.972404], [91.173759, -14.962304], [91.171471, -14.952279], [91.169083, -14.94233], [91.166595, -14.932456], [91.164009, -14.922654], [91.161316, -14.912924], [91.158524, -14.903265], [91.155624, -14.893676], [91.152634, -14.884154], [91.149544, -14.8747], [91.146347, -14.865312], [91.143059, -14.855989], [91.139664, -14.846729], [91.136177, -14.837533], [91.132591, -14.828397], [91.128914, -14.819322], [91.12513, -14.810306], [91.121262, -14.801348], [91.117287, -14.792446], [91.11322, -14.783601], [91.109062, -14.77481], [91.104805, -14.766071], [91.100456, -14.757386], [91.096008, -14.748751], [91.091469, -14.740166], [91.086845, -14.731629], [91.082123, -14.723141], [91.077301, -14.714699], [91.072395, -14.706301], [91.067398, -14.697948], [91.062309, -14.689637], [91.057137, -14.681369], [91.051865, -14.673141], [91.046509, -14.664952], [91.041061, -14.656801], [91.035522, -14.648688], [91.0299, -14.640611], [91.024185, -14.632568], [91.018387, -14.624559], [91.012497, -14.616582], [91.006531, -14.608637], [91.000465, -14.600721], [90.994324, -14.592835], [90.988091, -14.584977], [90.981773, -14.577146], [90.97538, -14.569339], [90.968895, -14.561557], [90.962326, -14.553798], [90.955673, -14.546062], [90.948944, -14.538345], [90.942123, -14.530649], [90.935226, -14.522971], [90.928246, -14.515311], [90.921188, -14.507667], [90.914047, -14.500038], [90.906822, -14.492422], [90.899521, -14.48482], [90.892143, -14.477229], [90.884682, -14.469649], [90.877144, -14.462078], [90.86953, -14.454515], [90.861832, -14.446959], [90.854065, -14.439408], [90.846214, -14.431863], [90.838287, -14.42432], [90.830284, -14.41678], [90.822212, -14.409242], [90.814056, -14.401703], [90.805832, -14.394163]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_RADII\", \"radiiType\": \"50kt\", \"ne\": 40, \"se\": 40, \"sw\": 40, \"nw\": 40, \"validDateTime\": \"2024-01-25T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 75.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[90.570557, -14.629442], [90.570557, -14.629442], [90.562599, -14.621584], [90.554619, -14.613899], [90.546616, -14.606386], [90.538589, -14.599045], [90.530525, -14.591874], [90.522438, -14.584873], [90.514313, -14.578041], [90.506157, -14.571379], [90.497971, -14.564883], [90.489746, -14.558556], [90.481476, -14.552394], [90.473175, -14.546399], [90.464821, -14.540568], [90.456429, -14.534903], [90.447998, -14.529401], [90.439514, -14.524061], [90.430977, -14.518885], [90.422394, -14.513869], [90.413765, -14.509016], [90.405075, -14.504322], [90.396332, -14.499788], [90.387527, -14.495413], [90.37867, -14.491196], [90.369751, -14.487136], [90.360771, -14.483233], [90.351723, -14.479486], [90.342613, -14.475896], [90.333435, -14.472459], [90.324188, -14.469177], [90.314873, -14.466048], [90.305489, -14.463072], [90.296021, -14.460247], [90.286484, -14.457574], [90.276871, -14.455051], [90.267174, -14.452679], [90.257401, -14.450455], [90.247543, -14.44838], [90.23761, -14.446452], [90.227585, -14.444673], [90.217468, -14.443039], [90.207268, -14.44155], [90.196976, -14.440207], [90.186592, -14.439009], [90.176109, -14.437954], [90.165543, -14.437041], [90.154869, -14.436272], [90.144096, -14.435643], [90.133232, -14.435156], [90.122253, -14.434809], [90.111183, -14.434601], [90.099998, -14.434531], [90.088814, -14.434601], [90.077744, -14.434809], [90.066765, -14.435156], [90.055901, -14.435643], [90.045128, -14.436272], [90.034454, -14.437041], [90.023888, -14.437954], [90.013405, -14.439009], [90.003021, -14.440207], [89.992729, -14.44155], [89.982529, -14.443039], [89.972412, -14.444673], [89.962387, -14.446452], [89.952454, -14.44838], [89.942596, -14.450455], [89.932823, -14.452679], [89.923126, -14.455051], [89.913513, -14.457574], [89.903976, -14.460247], [89.894508, -14.463072], [89.885124, -14.466047], [89.875809, -14.469177], [89.866562, -14.472459], [89.857384, -14.475896], [89.848274, -14.479486], [89.839226, -14.483233], [89.830246, -14.487136], [89.821327, -14.491196], [89.812469, -14.495413], [89.803665, -14.499788], [89.794922, -14.504322], [89.786232, -14.509016], [89.777603, -14.513869], [89.76902, -14.518885], [89.760483, -14.524061], [89.751999, -14.529401], [89.743568, -14.534903], [89.735176, -14.540568], [89.726822, -14.546399], [89.718521, -14.552394], [89.710251, -14.558556], [89.702026, -14.564883], [89.69384, -14.571379], [89.685684, -14.578041], [89.677559, -14.584873], [89.669472, -14.591874], [89.661407, -14.599045], [89.653381, -14.606386], [89.645378, -14.613899], [89.637398, -14.621584], [89.62944, -14.629442], [89.621582, -14.637398], [89.613899, -14.645377], [89.606384, -14.653381], [89.599045, -14.661412], [89.591873, -14.669472], [89.584869, -14.677562], [89.578041, -14.685683], [89.571381, -14.693838], [89.56488, -14.702029], [89.558556, -14.710256], [89.552391, -14.718522], [89.546394, -14.726828], [89.540565, -14.735176], [89.534904, -14.743567], [89.529396, -14.752004], [89.524063, -14.760488], [89.518883, -14.76902], [89.51387, -14.777602], [89.509018, -14.786237], [89.504318, -14.794925], [89.499786, -14.803668], [89.495415, -14.812469], [89.491196, -14.821328], [89.487137, -14.830247], [89.483231, -14.839229], [89.479485, -14.848274], [89.475899, -14.857385], [89.472458, -14.866562], [89.469177, -14.875808], [89.466049, -14.885124], [89.463074, -14.894513], [89.460251, -14.903975], [89.457573, -14.913513], [89.455055, -14.923128], [89.452682, -14.932822], [89.450455, -14.942596], [89.44838, -14.952453], [89.446457, -14.962393], [89.444672, -14.972418], [89.443039, -14.982531], [89.441551, -14.992732], [89.440208, -15.003024], [89.439011, -15.013408], [89.437958, -15.023886], [89.437042, -15.03446], [89.436272, -15.045131], [89.435646, -15.0559], [89.435158, -15.06677], [89.434807, -15.077743], [89.434601, -15.088819], [89.434532, -15.1], [89.434601, -15.111182], [89.434807, -15.122258], [89.435158, -15.133231], [89.435646, -15.144101], [89.436272, -15.15487], [89.437042, -15.165541], [89.437958, -15.176115], [89.439011, -15.186593], [89.440208, -15.196977], [89.441551, -15.207269], [89.443039, -15.21747], [89.444672, -15.227583], [89.446457, -15.237608], [89.44838, -15.247548], [89.450455, -15.257404], [89.452682, -15.267179], [89.455055, -15.276873], [89.457573, -15.286488], [89.460251, -15.296025], [89.463074, -15.305488], [89.466049, -15.314877], [89.469177, -15.324193], [89.472458, -15.333439], [89.475899, -15.342616], [89.479485, -15.351727], [89.483231, -15.360772], [89.487137, -15.369754], [89.491196, -15.378673], [89.495415, -15.387532], [89.499786, -15.396333], [89.504318, -15.405076], [89.509018, -15.413764], [89.51387, -15.422399], [89.518883, -15.430981], [89.524063, -15.439513], [89.529396, -15.447997], [89.534904, -15.456433], [89.540565, -15.464825], [89.546394, -15.473173], [89.552391, -15.481479], [89.558556, -15.489745], [89.56488, -15.497972], [89.571381, -15.506163], [89.578041, -15.514318], [89.584869, -15.522439], [89.591873, -15.530529], [89.599045, -15.538589], [89.606384, -15.546619], [89.613899, -15.554624], [89.621582, -15.562603], [89.62944, -15.570559], [89.637398, -15.578417], [89.645378, -15.586102], [89.653381, -15.593615], [89.661407, -15.600956], [89.669472, -15.608127], [89.677559, -15.615128], [89.685684, -15.62196], [89.69384, -15.628622], [89.702026, -15.635118], [89.710251, -15.641445], [89.718521, -15.647607], [89.726822, -15.653602], [89.735176, -15.659432], [89.743568, -15.665098], [89.751999, -15.6706], [89.760483, -15.67594], [89.76902, -15.681116], [89.777603, -15.686131], [89.786232, -15.690985], [89.794922, -15.695679], [89.803665, -15.700212], [89.812469, -15.704588], [89.821327, -15.708805], [89.830246, -15.712865], [89.839226, -15.716767], [89.848274, -15.720514], [89.857384, -15.724105], [89.866562, -15.727542], [89.875809, -15.730824], [89.885124, -15.733953], [89.894508, -15.736929], [89.903976, -15.739754], [89.913513, -15.742427], [89.923126, -15.744949], [89.932823, -15.747322], [89.942596, -15.749546], [89.952454, -15.751621], [89.962387, -15.753549], [89.972412, -15.755328], [89.982529, -15.756962], [89.992729, -15.758451], [90.003021, -15.759793], [90.013405, -15.760992], [90.023888, -15.762047], [90.034454, -15.762959], [90.045128, -15.763729], [90.055901, -15.764358], [90.066765, -15.764845], [90.077744, -15.765192], [90.088814, -15.7654], [90.099998, -15.76547], [90.111183, -15.7654], [90.122253, -15.765192], [90.133232, -15.764845], [90.144096, -15.764358], [90.154869, -15.763729], [90.165543, -15.762959], [90.176109, -15.762047], [90.186592, -15.760992], [90.196976, -15.759793], [90.207268, -15.758451], [90.217468, -15.756962], [90.227585, -15.755328], [90.23761, -15.753549], [90.247543, -15.751621], [90.257401, -15.749546], [90.267174, -15.747322], [90.276871, -15.744949], [90.286484, -15.742427], [90.296021, -15.739754], [90.305489, -15.736929], [90.314873, -15.733953], [90.324188, -15.730824], [90.333435, -15.727542], [90.342613, -15.724105], [90.351723, -15.720514], [90.360771, -15.716767], [90.369751, -15.712865], [90.37867, -15.708805], [90.387527, -15.704588], [90.396332, -15.700212], [90.405075, -15.695679], [90.413765, -15.690985], [90.422394, -15.686131], [90.430977, -15.681116], [90.439514, -15.67594], [90.447998, -15.6706], [90.456429, -15.665098], [90.464821, -15.659432], [90.473175, -15.653602], [90.481476, -15.647607], [90.489746, -15.641445], [90.497971, -15.635118], [90.506157, -15.628622], [90.514313, -15.62196], [90.522438, -15.615128], [90.530525, -15.608127], [90.538589, -15.600956], [90.546616, -15.593615], [90.554619, -15.586102], [90.562599, -15.578417], [90.570557, -15.570559], [90.578415, -15.562603], [90.586098, -15.554624], [90.593613, -15.546619], [90.600952, -15.538589], [90.608124, -15.530529], [90.615128, -15.522439], [90.621956, -15.514318], [90.628616, -15.506163], [90.635117, -15.497972], [90.641441, -15.489745], [90.647606, -15.481479], [90.653603, -15.473173], [90.659431, -15.464825], [90.665092, -15.456433], [90.670601, -15.447997], [90.675934, -15.439513], [90.681114, -15.430981], [90.686127, -15.422399], [90.690979, -15.413764], [90.695679, -15.405076], [90.700211, -15.396333], [90.704582, -15.387532], [90.708801, -15.378673], [90.71286, -15.369754], [90.716766, -15.360772], [90.720512, -15.351727], [90.724098, -15.342616], [90.727539, -15.333439], [90.73082, -15.324193], [90.733948, -15.314877], [90.736923, -15.305488], [90.739746, -15.296025], [90.742424, -15.286488], [90.744942, -15.276873], [90.747314, -15.267179], [90.749542, -15.257404], [90.751617, -15.247548], [90.75354, -15.237608], [90.755325, -15.227583], [90.756958, -15.21747], [90.758446, -15.207269], [90.759789, -15.196977], [90.760986, -15.186593], [90.762039, -15.176115], [90.762955, -15.165541], [90.763725, -15.15487], [90.764351, -15.144101], [90.764839, -15.133231], [90.76519, -15.122258], [90.765396, -15.111182], [90.765465, -15.1], [90.765396, -15.088819], [90.76519, -15.077743], [90.764839, -15.06677], [90.764351, -15.0559], [90.763725, -15.045131], [90.762955, -15.03446], [90.762039, -15.023886], [90.760986, -15.013408], [90.759789, -15.003024], [90.758446, -14.992732], [90.756958, -14.982531], [90.755325, -14.972418], [90.75354, -14.962393], [90.751617, -14.952453], [90.749542, -14.942596], [90.747314, -14.932822], [90.744942, -14.923128], [90.742424, -14.913513], [90.739746, -14.903975], [90.736923, -14.894513], [90.733948, -14.885124], [90.73082, -14.875808], [90.727539, -14.866562], [90.724098, -14.857385], [90.720512, -14.848274], [90.716766, -14.839229], [90.71286, -14.830247], [90.708801, -14.821328], [90.704582, -14.812469], [90.700211, -14.803668], [90.695679, -14.794925], [90.690979, -14.786237], [90.686127, -14.777602], [90.681114, -14.76902], [90.675934, -14.760488], [90.670601, -14.752004], [90.665092, -14.743567], [90.659431, -14.735176], [90.653603, -14.726828], [90.647606, -14.718522], [90.641441, -14.710256], [90.635117, -14.702029], [90.628616, -14.693838], [90.621956, -14.685683], [90.615128, -14.677562], [90.608124, -14.669472], [90.600952, -14.661412], [90.593613, -14.653381], [90.586098, -14.645377], [90.578415, -14.637398], [90.570557, -14.629442]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_RADII\", \"radiiType\": \"64kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-25T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 75.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[90.394096, -14.805902], [90.394096, -14.805902], [90.386162, -14.798125], [90.378197, -14.790623], [90.370178, -14.783393], [90.362122, -14.776432], [90.354012, -14.76974], [90.34584, -14.763315], [90.337616, -14.757154], [90.329323, -14.751257], [90.320961, -14.745621], [90.312523, -14.740244], [90.304016, -14.735126], [90.295425, -14.730263], [90.286743, -14.725655], [90.277977, -14.721299], [90.269119, -14.717194], [90.260162, -14.713338], [90.251099, -14.709729], [90.241928, -14.706367], [90.232651, -14.703247], [90.223259, -14.70037], [90.213745, -14.697733], [90.204102, -14.695334], [90.194336, -14.693172], [90.184441, -14.691246], [90.174408, -14.689552], [90.16423, -14.68809], [90.153915, -14.686858], [90.143448, -14.685854], [90.132828, -14.685077], [90.122047, -14.684523], [90.111107, -14.684192], [90.099998, -14.684082], [90.08889, -14.684192], [90.07795, -14.684523], [90.067169, -14.685077], [90.056549, -14.685854], [90.046082, -14.686858], [90.035767, -14.68809], [90.025589, -14.689552], [90.015556, -14.691246], [90.005661, -14.693172], [89.995895, -14.695334], [89.986252, -14.697733], [89.976738, -14.70037], [89.967346, -14.703247], [89.958069, -14.706367], [89.948898, -14.709729], [89.939835, -14.713338], [89.930878, -14.717194], [89.92202, -14.721299], [89.913254, -14.725655], [89.904572, -14.730263], [89.895981, -14.735126], [89.887474, -14.740244], [89.879036, -14.745621], [89.870674, -14.751257], [89.862381, -14.757154], [89.854156, -14.763315], [89.845985, -14.76974], [89.837875, -14.776432], [89.829819, -14.783393], [89.8218, -14.790623], [89.813835, -14.798125], [89.805901, -14.805902], [89.798126, -14.813833], [89.790619, -14.821803], [89.783394, -14.829817], [89.776428, -14.837877], [89.769737, -14.845989], [89.763313, -14.854157], [89.757156, -14.862386], [89.751259, -14.870678], [89.745621, -14.879039], [89.740242, -14.887472], [89.735123, -14.895983], [89.730263, -14.904575], [89.725655, -14.913253], [89.721298, -14.922019], [89.717194, -14.930881], [89.713341, -14.939839], [89.709732, -14.948901], [89.706367, -14.95807], [89.703247, -14.967349], [89.700371, -14.976743], [89.697731, -14.986257], [89.695335, -14.995894], [89.693176, -15.005659], [89.691246, -15.015557], [89.689552, -15.025591], [89.688087, -15.035765], [89.686859, -15.046084], [89.685852, -15.056552], [89.685074, -15.067174], [89.684525, -15.077952], [89.684189, -15.088894], [89.684082, -15.1], [89.684189, -15.111107], [89.684525, -15.122048], [89.685074, -15.132827], [89.685852, -15.143449], [89.686859, -15.153916], [89.688087, -15.164236], [89.689552, -15.17441], [89.691246, -15.184443], [89.693176, -15.194342], [89.695335, -15.204106], [89.697731, -15.213744], [89.700371, -15.223258], [89.703247, -15.232652], [89.706367, -15.241931], [89.709732, -15.2511], [89.713341, -15.260161], [89.717194, -15.26912], [89.721298, -15.277982], [89.725655, -15.286748], [89.730263, -15.295425], [89.735123, -15.304018], [89.740242, -15.312529], [89.745621, -15.320962], [89.751259, -15.329323], [89.757156, -15.337615], [89.763313, -15.345843], [89.769737, -15.354012], [89.776428, -15.362123], [89.783394, -15.370184], [89.790619, -15.378198], [89.798126, -15.386168], [89.805901, -15.394099], [89.813835, -15.401875], [89.8218, -15.409378], [89.829819, -15.416608], [89.837875, -15.423569], [89.845985, -15.430261], [89.854156, -15.436686], [89.862381, -15.442846], [89.870674, -15.448744], [89.879036, -15.45438], [89.887474, -15.459757], [89.895981, -15.464875], [89.904572, -15.469738], [89.913254, -15.474346], [89.92202, -15.478702], [89.930878, -15.482807], [89.939835, -15.486663], [89.948898, -15.490272], [89.958069, -15.493634], [89.967346, -15.496754], [89.976738, -15.499631], [89.986252, -15.502268], [89.995895, -15.504666], [90.005661, -15.506828], [90.015556, -15.508755], [90.025589, -15.510448], [90.035767, -15.51191], [90.046082, -15.513143], [90.056549, -15.514147], [90.067169, -15.514924], [90.07795, -15.515478], [90.08889, -15.515809], [90.099998, -15.515919], [90.111107, -15.515809], [90.122047, -15.515478], [90.132828, -15.514924], [90.143448, -15.514147], [90.153915, -15.513143], [90.16423, -15.51191], [90.174408, -15.510448], [90.184441, -15.508755], [90.194336, -15.506828], [90.204102, -15.504666], [90.213745, -15.502268], [90.223259, -15.499631], [90.232651, -15.496754], [90.241928, -15.493634], [90.251099, -15.490272], [90.260162, -15.486663], [90.269119, -15.482807], [90.277977, -15.478702], [90.286743, -15.474346], [90.295425, -15.469738], [90.304016, -15.464875], [90.312523, -15.459757], [90.320961, -15.45438], [90.329323, -15.448744], [90.337616, -15.442846], [90.34584, -15.436686], [90.354012, -15.430261], [90.362122, -15.423569], [90.370178, -15.416608], [90.378197, -15.409378], [90.386162, -15.401875], [90.394096, -15.394099], [90.401871, -15.386168], [90.409378, -15.378198], [90.416603, -15.370184], [90.423569, -15.362123], [90.43026, -15.354012], [90.436684, -15.345843], [90.442841, -15.337615], [90.448738, -15.329323], [90.454376, -15.320962], [90.459755, -15.312529], [90.464874, -15.304018], [90.469734, -15.295425], [90.474342, -15.286748], [90.478699, -15.277982], [90.482803, -15.26912], [90.486656, -15.260161], [90.490265, -15.2511], [90.493629, -15.241931], [90.49675, -15.232652], [90.499626, -15.223258], [90.502266, -15.213744], [90.504662, -15.204106], [90.506821, -15.194342], [90.508751, -15.184443], [90.510445, -15.17441], [90.511909, -15.164236], [90.513138, -15.153916], [90.514145, -15.143449], [90.514923, -15.132827], [90.515472, -15.122048], [90.515808, -15.111107], [90.515915, -15.1], [90.515808, -15.088894], [90.515472, -15.077952], [90.514923, -15.067174], [90.514145, -15.056552], [90.513138, -15.046084], [90.511909, -15.035765], [90.510445, -15.025591], [90.508751, -15.015557], [90.506821, -15.005659], [90.504662, -14.995894], [90.502266, -14.986257], [90.499626, -14.976743], [90.49675, -14.967349], [90.493629, -14.95807], [90.490265, -14.948901], [90.486656, -14.939839], [90.482803, -14.930881], [90.478699, -14.922019], [90.474342, -14.913253], [90.469734, -14.904575], [90.464874, -14.895983], [90.459755, -14.887472], [90.454376, -14.879039], [90.448738, -14.870678], [90.442841, -14.862386], [90.436684, -14.854157], [90.43026, -14.845989], [90.423569, -14.837877], [90.416603, -14.829817], [90.409378, -14.821803], [90.401871, -14.813833], [90.394096, -14.805902]]]}}], \"metadata\": {\"stormName\": \"Anggrek\", \"source\": \"DTN\", \"advisoryDateTime\": \"2024-01-25T06:00:00Z\", \"stormNum\": \"04U\", \"stormId\": 4634}}, {\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": 110, \"se\": 280, \"sw\": 220, \"nw\": 120, \"validDateTime\": \"2025-03-16T18:00:00Z\", \"category\": 0, \"windSpeedKnots\": 40.0, \"forecastHour\": 12}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[57.4, -26.07787], [57.21532, -26.09372], [57.03309, -26.12095], [56.85363, -26.15867], [56.67697, -26.20607], [56.50293, -26.26251], [56.3311, -26.32751], [56.16092, -26.40083], [55.99171, -26.48249], [55.82277, -26.57278], [55.65356, -26.67244], [55.48438, -26.78288], [55.31607, -26.90564], [55.14985, -27.04215], [54.98735, -27.1937], [54.83052, -27.36136], [54.68166, -27.54596], [54.54331, -27.748], [54.4183, -27.96767], [54.30961, -28.20475], [54.22034, -28.45865], [54.15369, -28.72833], [54.11282, -29.01234], [54.10085, -29.30879], [54.12074, -29.61535], [54.17524, -29.92928], [54.26681, -30.24746], [54.39752, -30.56638], [54.56912, -30.88211], [54.78327, -31.18986], [55.04079, -31.48431], [55.34148, -31.75989], [55.68396, -32.01088], [56.06558, -32.23161], [56.48246, -32.41661], [56.9294, -32.56084], [57.4, -32.65978], [57.88675, -32.70972], [58.38115, -32.70784], [58.87396, -32.65239], [59.35541, -32.54279], [59.81546, -32.37974], [60.24413, -32.1653], [60.63172, -31.90282], [60.96918, -31.59704], [61.24827, -31.25395], [61.46251, -30.88119], [61.60963, -30.48885], [61.69016, -30.08723], [61.70658, -29.68598], [61.66309, -29.29389], [61.56528, -28.91868], [61.41986, -28.56685], [61.23432, -28.24353], [61.01669, -27.95243], [60.77523, -27.69578], [60.51815, -27.47434], [60.25336, -27.28741], [59.98824, -27.13291], [59.72934, -27.00747], [59.48221, -26.90657], [59.25116, -26.82471], [59.03909, -26.7556], [58.84732, -26.6924], [58.71442, -26.58537], [58.57189, -26.48901], [58.4208, -26.40402], [58.26226, -26.33104], [58.09745, -26.27058], [57.92756, -26.2231], [57.75385, -26.18893], [57.58129, -26.12928], [57.4, -26.07787]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_RADII\", \"radiiType\": \"34kt\", \"ne\": 110, \"se\": 220, \"sw\": 185, \"nw\": 75, \"validDateTime\": \"2025-03-16T06:00:00Z\", \"category\": 0, \"windSpeedKnots\": 45.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[53.4, -24.85363], [53.25624, -24.90125], [53.12225, -24.96379], [52.99934, -25.03718], [52.88761, -25.1174], [52.78598, -25.20069], [52.69227, -25.28377], [52.6033, -25.36403], [52.51244, -25.43682], [52.42303, -25.51014], [52.32267, -25.5761], [52.21217, -25.64118], [52.0912, -25.7095], [51.96039, -25.78504], [51.82127, -25.87149], [51.67617, -25.97214], [51.52818, -26.08975], [51.38096, -26.22645], [51.2387, -26.38368], [51.10588, -26.56208], [50.98725, -26.76153], [50.88758, -26.98104], [50.81155, -27.21881], [50.76361, -27.47223], [50.7478, -27.73792], [50.76761, -28.0118], [50.82581, -28.28916], [50.92435, -28.56478], [51.06405, -28.8332], [51.24417, -29.08937], [51.463, -29.32852], [51.71808, -29.5461], [52.00617, -29.73788], [52.32331, -29.90001], [52.66488, -30.02916], [53.02568, -30.12251], [53.4, -30.17791], [53.78176, -30.19387], [54.16464, -30.16964], [54.54218, -30.10521], [54.90797, -30.00134], [55.25574, -29.85957], [55.57958, -29.68216], [55.87395, -29.47209], [56.13392, -29.23301], [56.35518, -28.96916], [56.53438, -28.68545], [56.66997, -28.38773], [56.76171, -28.08195], [56.81042, -27.77382], [56.81784, -27.46867], [56.78651, -27.17138], [56.71966, -26.88627], [56.62103, -26.61699], [56.49479, -26.36653], [56.34536, -26.13714], [56.17727, -25.93032], [55.99508, -25.74683], [55.80317, -25.5867], [55.60569, -25.44928], [55.40641, -25.33327], [55.20865, -25.23679], [55.01512, -25.15749], [54.82794, -25.09261], [54.64827, -25.03932], [54.47597, -24.99555], [54.31037, -24.95965], [54.1506, -24.93027], [53.9956, -24.90633], [53.84423, -24.88702], [53.69529, -24.87189], [53.54759, -24.86073], [53.4, -24.85363]]]}}], \"metadata\": {\"stormName\": \"Jude\", \"source\": \"DTN\", \"advisoryDateTime\": \"2025-03-16T09:00:00Z\", \"stormNum\": \"25S\", \"stormId\": 4686}}]}"}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/agency-cyclone-radii":{"get":{"tags":["Agency"],"summary":"Agency Get Radii","description":"Returns Array of FeatureCollection Objects, Contain wind radii features. \n\n**Data returned from this endpoint contains data from Agency advisories ONLY**\n\nMutliple Agency sources can be specified in a single query:\n\nhttp://tropical.api.dtn.com/v1/agency-radii?source=JTWC&source=NHC\n\nGeoJSON Properties:\n\n* **stormElement** ***(string)***: Type of storm element (\"FORECAST_RADII\" in this case).\n* **radiiType** ***(string)***: Type of wind radii being provided (e.g., \"34kt\" for 34-knot winds).\n* **forecastHour** ***(integer)***: Forecast hour for which the wind radii are valid.\n* **ne** ***(integer)***: Radius of the wind field in the northeast quadrant (in nautical miles).\n* **se** ***(integer)***: Radius of the wind field in the southeast quadrant (in nautical miles).\n* **sw** ***(integer)***: Radius of the wind field in the southwest quadrant (in nautical miles).\n* **nw** ***(integer)***: Radius of the wind field in the northwest quadrant (in nautical miles).\n* **validDateTime** ***(string)***: Date and time when the forecast is valid in UTC format (YYYY-MM-DDTHH:MM:SSZ).\n* **category** ***(integer)***: Storm category (Saffir-Simpson Hurricane Wind Scale) based on the wind speed.\n* **windSpeedKnots** ***(float)***: Wind speed of the storm in knots.","operationId":"agency_get_radii_v1_agency_cyclone_radii_get","security":[{"clientCredentials":[]}],"parameters":[{"name":"stormName","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by name of storm","title":"Stormname"},"description":"Optional: Filter results by name of storm"},{"name":"stormNum","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by number of storm","title":"Stormnum"},"description":"Optional: Filter results by number of storm"},{"name":"source","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"description":"Optional: Filter results by source of weather advisories","default":["JTWC","NHC","CPHC","BOM"],"title":"Source"},"description":"Optional: Filter results by source of weather advisories"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TropicalResponse"},"example":"{\"url\": \"http://tropical.api.dtn.com/v1/agency-cyclone-radii\", \"cycloneCount\": 2, \"data\": [{\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-30T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 65.0, \"forecastHour\": 120}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.55999, -26.996157], [71.55999, -26.996157], [71.551872, -26.988434], [71.543724, -26.980829], [71.535553, -26.973339], [71.527344, -26.965967], [71.519104, -26.958712], [71.510834, -26.951571], [71.502541, -26.944546], [71.494209, -26.937635], [71.485847, -26.930838], [71.477463, -26.924154], [71.46904, -26.917585], [71.460587, -26.911129], [71.45211, -26.904783], [71.443596, -26.898552], [71.435051, -26.892431], [71.426483, -26.886421], [71.417877, -26.88052], [71.409248, -26.874731], [71.400581, -26.869051], [71.391884, -26.863482], [71.383163, -26.858019], [71.374405, -26.852665], [71.365616, -26.84742], [71.356804, -26.842281], [71.347954, -26.83725], [71.339073, -26.832325], [71.33017, -26.827507], [71.321228, -26.822794], [71.312256, -26.818186], [71.303261, -26.813681], [71.294228, -26.809282], [71.285164, -26.804987], [71.27607, -26.800795], [71.266953, -26.796705], [71.257797, -26.792719], [71.248611, -26.788834], [71.239395, -26.785049], [71.230148, -26.781368], [71.220871, -26.777786], [71.211563, -26.774303], [71.202225, -26.770922], [71.192856, -26.767639], [71.183456, -26.764456], [71.174026, -26.76137], [71.164566, -26.758381], [71.155075, -26.755491], [71.145554, -26.752699], [71.136002, -26.750002], [71.126419, -26.7474], [71.116798, -26.744896], [71.107155, -26.742485], [71.097481, -26.74017], [71.087769, -26.737949], [71.078033, -26.735821], [71.06826, -26.733788], [71.058464, -26.731846], [71.04863, -26.729998], [71.038773, -26.728241], [71.028877, -26.726576], [71.018951, -26.725002], [71.009003, -26.72352], [70.999016, -26.722126], [70.988998, -26.720823], [70.978951, -26.719608], [70.968872, -26.718483], [70.958763, -26.717447], [70.948624, -26.716497], [70.938454, -26.715635], [70.928253, -26.714861], [70.918015, -26.714174], [70.907753, -26.713572], [70.897461, -26.713055], [70.887131, -26.712624], [70.876778, -26.712278], [70.866386, -26.712017], [70.855965, -26.711838], [70.84552, -26.711742], [70.835037, -26.711731], [70.824524, -26.711802], [70.81398, -26.711954], [70.803406, -26.712189], [70.792801, -26.712505], [70.782166, -26.7129], [70.7715, -26.713377], [70.760796, -26.713932], [70.750069, -26.714569], [70.739304, -26.715282], [70.728516, -26.716076], [70.71769, -26.716946], [70.706833, -26.717894], [70.695946, -26.71892], [70.685028, -26.72002], [70.67408, -26.721199], [70.663101, -26.722452], [70.652092, -26.723782], [70.641052, -26.725185], [70.629974, -26.726662], [70.618874, -26.728214], [70.607841, -26.729866], [70.596924, -26.731653], [70.586128, -26.733572], [70.575455, -26.73562], [70.564896, -26.737799], [70.554451, -26.740107], [70.544113, -26.74254], [70.53389, -26.745102], [70.523781, -26.747786], [70.513771, -26.750593], [70.503868, -26.753523], [70.494064, -26.756571], [70.484367, -26.759739], [70.474762, -26.763025], [70.465256, -26.766428], [70.455849, -26.769947], [70.446533, -26.773577], [70.437309, -26.777321], [70.428169, -26.781176], [70.419128, -26.785141], [70.410164, -26.789215], [70.401283, -26.793394], [70.392487, -26.79768], [70.383774, -26.802071], [70.37513, -26.806564], [70.36657, -26.811161], [70.358086, -26.815857], [70.34967, -26.820652], [70.341324, -26.825544], [70.333046, -26.830534], [70.324837, -26.835619], [70.316689, -26.840797], [70.308609, -26.846069], [70.300591, -26.851431], [70.292625, -26.856884], [70.284721, -26.862425], [70.276871, -26.868053], [70.269073, -26.873766], [70.26133, -26.879566], [70.253632, -26.885447], [70.245987, -26.891411], [70.238388, -26.897455], [70.230827, -26.90358], [70.223312, -26.909782], [70.215836, -26.916059], [70.208405, -26.922415], [70.201004, -26.928843], [70.193634, -26.935343], [70.186302, -26.941914], [70.179001, -26.948557], [70.171722, -26.955267], [70.164474, -26.962046], [70.157257, -26.968889], [70.150055, -26.975798], [70.142876, -26.982771], [70.135719, -26.989805], [70.128578, -26.996899], [70.121452, -27.004053], [70.114342, -27.011267], [70.107239, -27.018536], [70.100151, -27.025862], [70.093071, -27.033239], [70.085991, -27.040672], [70.078918, -27.048155], [70.071846, -27.055689], [70.064781, -27.063271], [70.057709, -27.0709], [70.050636, -27.078577], [70.043556, -27.086298], [70.036469, -27.094063], [70.029373, -27.10187], [70.022263, -27.109716], [70.015144, -27.117603], [70.008011, -27.125528], [70.000854, -27.133492], [69.993683, -27.141489], [69.986496, -27.149521], [69.979279, -27.157587], [69.972046, -27.165684], [69.964783, -27.173809], [69.957489, -27.181965], [69.950165, -27.190149], [69.94281, -27.198359], [69.935425, -27.206594], [69.928001, -27.214853], [69.92054, -27.223133], [69.91304, -27.231436], [69.905556, -27.239712], [69.898102, -27.247952], [69.890694, -27.256153], [69.883324, -27.264322], [69.875999, -27.272459], [69.868713, -27.280565], [69.861465, -27.288643], [69.854271, -27.296692], [69.847122, -27.304718], [69.840012, -27.312721], [69.832954, -27.320704], [69.825951, -27.328667], [69.818993, -27.336613], [69.812088, -27.344542], [69.805237, -27.352457], [69.798439, -27.360361], [69.791687, -27.368256], [69.785004, -27.376143], [69.778374, -27.384022], [69.771797, -27.391897], [69.765282, -27.399769], [69.758827, -27.407642], [69.752434, -27.415514], [69.746109, -27.423389], [69.739838, -27.431271], [69.733635, -27.439157], [69.727501, -27.447054], [69.721436, -27.45496], [69.715431, -27.462877], [69.709503, -27.47081], [69.703644, -27.478758], [69.697853, -27.486725], [69.692131, -27.494709], [69.686493, -27.502716], [69.680923, -27.510746], [69.67543, -27.518801], [69.670013, -27.526884], [69.66468, -27.534994], [69.659424, -27.543137], [69.654243, -27.551311], [69.649147, -27.559519], [69.644135, -27.567764], [69.639206, -27.576048], [69.634361, -27.58437], [69.629601, -27.592733], [69.624931, -27.601143], [69.620346, -27.609596], [69.615852, -27.618097], [69.61145, -27.626646], [69.60714, -27.635248], [69.602921, -27.643902], [69.598793, -27.652611], [69.594765, -27.661375], [69.590828, -27.6702], [69.58699, -27.679083], [69.583252, -27.68803], [69.579613, -27.697039], [69.576073, -27.706116], [69.572632, -27.715258], [69.569298, -27.724472], [69.566063, -27.733755], [69.562935, -27.743113], [69.559914, -27.752546], [69.557007, -27.762054], [69.554199, -27.771643], [69.551506, -27.781311], [69.54892, -27.791063], [69.54644, -27.8009], [69.544083, -27.81082], [69.541832, -27.820829], [69.539703, -27.830929], [69.537689, -27.841122], [69.535789, -27.851406], [69.534004, -27.861786], [69.532349, -27.872263], [69.530807, -27.882839], [69.529388, -27.893517], [69.528091, -27.904297], [69.526917, -27.915182], [69.525871, -27.926174], [69.524948, -27.937273], [69.524124, -27.948423], [69.523384, -27.959526], [69.52272, -27.970579], [69.522133, -27.981586], [69.521629, -27.992544], [69.521202, -28.003456], [69.520859, -28.01432], [69.520592, -28.025139], [69.520409, -28.03591], [69.520309, -28.046637], [69.520287, -28.057318], [69.520348, -28.067953], [69.520493, -28.078543], [69.520721, -28.089088], [69.521042, -28.09959], [69.521439, -28.110048], [69.521919, -28.120462], [69.522491, -28.130833], [69.523148, -28.141161], [69.523888, -28.151447], [69.524719, -28.16169], [69.525635, -28.171892], [69.526634, -28.182051], [69.527725, -28.192169], [69.528908, -28.202248], [69.530182, -28.212284], [69.53154, -28.222281], [69.53299, -28.232237], [69.534531, -28.242155], [69.536163, -28.252031], [69.537888, -28.261871], [69.539703, -28.271671], [69.541618, -28.281433], [69.543617, -28.291157], [69.545715, -28.300842], [69.547905, -28.310492], [69.550186, -28.320103], [69.552567, -28.329678], [69.555038, -28.339216], [69.55761, -28.348719], [69.56028, -28.358187], [69.563042, -28.367619], [69.565903, -28.377014], [69.568863, -28.386375], [69.571922, -28.395704], [69.575081, -28.404997], [69.578331, -28.414257], [69.581688, -28.423483], [69.585144, -28.432676], [69.588699, -28.441837], [69.592361, -28.450964], [69.596123, -28.46006], [69.599983, -28.469126], [69.603943, -28.478157], [69.608009, -28.48716], [69.612183, -28.49613], [69.616455, -28.505072], [69.620834, -28.513981], [69.62532, -28.522861], [69.629906, -28.531713], [69.634605, -28.540535], [69.639404, -28.549328], [69.64431, -28.558092], [69.64933, -28.566828], [69.654449, -28.575537], [69.659683, -28.584219], [69.665024, -28.592873], [69.670471, -28.6015], [69.676033, -28.6101], [69.681702, -28.618675], [69.687485, -28.627222], [69.693375, -28.635746], [69.699379, -28.644243], [69.70549, -28.652716], [69.711716, -28.661165], [69.718063, -28.66959], [69.72451, -28.67799], [69.731079, -28.686365], [69.737762, -28.694719], [69.74456, -28.703051], [69.751472, -28.711357], [69.758499, -28.719645], [69.765648, -28.727907], [69.772903, -28.736149], [69.780281, -28.744371], [69.787781, -28.752571], [69.795395, -28.76075], [69.803032, -28.768816], [69.810699, -28.776775], [69.818382, -28.784626], [69.826096, -28.792372], [69.833832, -28.800009], [69.841599, -28.807541], [69.84938, -28.814966], [69.857201, -28.822287], [69.865036, -28.8295], [69.872902, -28.836611], [69.880798, -28.843616], [69.888718, -28.850519], [69.89666, -28.857319], [69.90464, -28.864014], [69.912643, -28.870607], [69.920677, -28.877098], [69.928734, -28.883488], [69.936829, -28.889774], [69.944946, -28.895962], [69.953094, -28.902046], [69.961273, -28.908033], [69.969482, -28.913919], [69.97773, -28.919704], [69.986, -28.925392], [69.994308, -28.930981], [70.002647, -28.936472], [70.011017, -28.941864], [70.019417, -28.947159], [70.027855, -28.952356], [70.036324, -28.957458], [70.044823, -28.962463], [70.05336, -28.967373], [70.061935, -28.972187], [70.070541, -28.976906], [70.079178, -28.981529], [70.08786, -28.986061], [70.096573, -28.990496], [70.105316, -28.994839], [70.114105, -28.999088], [70.122925, -29.003246], [70.13179, -29.007311], [70.140686, -29.011284], [70.14962, -29.015165], [70.158592, -29.018955], [70.16761, -29.022655], [70.176659, -29.026266], [70.185753, -29.029785], [70.194885, -29.033216], [70.204056, -29.036556], [70.213264, -29.03981], [70.222519, -29.042974], [70.231812, -29.046051], [70.241142, -29.04904], [70.250519, -29.051943], [70.259941, -29.054758], [70.269402, -29.057487], [70.278908, -29.060131], [70.288452, -29.062689], [70.298042, -29.065163], [70.307678, -29.067551], [70.31736, -29.069855], [70.32708, -29.072077], [70.336853, -29.074213], [70.346664, -29.076267], [70.356522, -29.078238], [70.366432, -29.080128], [70.376381, -29.081936], [70.386383, -29.08366], [70.396423, -29.085306], [70.406517, -29.08687], [70.416664, -29.088354], [70.426849, -29.089758], [70.437088, -29.091084], [70.447372, -29.092329], [70.45771, -29.093496], [70.468094, -29.094585], [70.478531, -29.095596], [70.489014, -29.096531], [70.49955, -29.097387], [70.510132, -29.098167], [70.520775, -29.098871], [70.531464, -29.099501], [70.542206, -29.100054], [70.552994, -29.100531], [70.563843, -29.100933], [70.574738, -29.101263], [70.585693, -29.101519], [70.596703, -29.1017], [70.607758, -29.101809], [70.618874, -29.101845], [70.629982, -29.101803], [70.641022, -29.101675], [70.652, -29.101465], [70.66291, -29.10117], [70.673759, -29.100788], [70.684547, -29.100325], [70.695267, -29.099775], [70.705933, -29.099142], [70.71653, -29.098423], [70.727066, -29.09762], [70.737549, -29.096733], [70.747971, -29.095762], [70.758339, -29.094707], [70.768639, -29.093567], [70.778893, -29.092342], [70.789085, -29.091034], [70.799225, -29.08964], [70.809311, -29.088163], [70.819344, -29.086601], [70.829323, -29.084955], [70.839256, -29.083225], [70.849129, -29.081409], [70.858955, -29.07951], [70.868736, -29.077526], [70.878464, -29.075459], [70.888145, -29.073307], [70.897781, -29.071072], [70.907364, -29.06875], [70.916908, -29.066345], [70.926399, -29.063856], [70.935852, -29.061283], [70.945259, -29.058626], [70.954628, -29.055885], [70.963951, -29.053059], [70.973236, -29.05015], [70.982475, -29.047155], [70.991676, -29.044077], [71.000839, -29.040915], [71.009964, -29.037668], [71.019051, -29.034338], [71.028099, -29.030922], [71.037117, -29.027424], [71.046097, -29.02384], [71.055038, -29.020174], [71.06395, -29.016422], [71.07283, -29.012587], [71.08168, -29.008667], [71.090492, -29.004663], [71.099274, -29.000576], [71.108032, -28.996405], [71.116753, -28.992149], [71.12545, -28.98781], [71.134125, -28.983387], [71.142761, -28.978878], [71.151382, -28.974287], [71.159973, -28.969612], [71.168533, -28.964853], [71.177078, -28.960009], [71.1856, -28.955082], [71.194092, -28.950071], [71.202568, -28.944975], [71.211021, -28.939796], [71.21946, -28.934532], [71.227875, -28.929186], [71.236267, -28.923756], [71.244644, -28.918242], [71.253006, -28.912642], [71.261353, -28.90696], [71.269684, -28.901194], [71.278, -28.895344], [71.286301, -28.88941], [71.294586, -28.883392], [71.302864, -28.877291], [71.311127, -28.871105], [71.319374, -28.864836], [71.327621, -28.858482], [71.335854, -28.852045], [71.344078, -28.845526], [71.352287, -28.838921], [71.360497, -28.832233], [71.368698, -28.82546], [71.3769, -28.818605], [71.385086, -28.811666], [71.393272, -28.804644], [71.401459, -28.797537], [71.409637, -28.790348], [71.417816, -28.783073], [71.425995, -28.775715], [71.434174, -28.768274], [71.442352, -28.76075], [71.4505, -28.75318], [71.45858, -28.745607], [71.466591, -28.738033], [71.474533, -28.730457], [71.482399, -28.722876], [71.490204, -28.715292], [71.49794, -28.707703], [71.5056, -28.700106], [71.513191, -28.692505], [71.520714, -28.684895], [71.528168, -28.677277], [71.535545, -28.669649], [71.542854, -28.66201], [71.550095, -28.654364], [71.557259, -28.646704], [71.564354, -28.63903], [71.571373, -28.631346], [71.578323, -28.623648], [71.585197, -28.615934], [71.592003, -28.608204], [71.598732, -28.600458], [71.605392, -28.592697], [71.611977, -28.584915], [71.618484, -28.577116], [71.624924, -28.569298], [71.631287, -28.561459], [71.637573, -28.553598], [71.643791, -28.545717], [71.649933, -28.537813], [71.655991, -28.529884], [71.66198, -28.521933], [71.667892, -28.513954], [71.673729, -28.505951], [71.679497, -28.497923], [71.685181, -28.489864], [71.690788, -28.481779], [71.69632, -28.473665], [71.701775, -28.465521], [71.707153, -28.457346], [71.712456, -28.449139], [71.717682, -28.440901], [71.722824, -28.432629], [71.72789, -28.424324], [71.73288, -28.415983], [71.737793, -28.407608], [71.742622, -28.399197], [71.747375, -28.390747], [71.752052, -28.382261], [71.756645, -28.373735], [71.761162, -28.365171], [71.765594, -28.356567], [71.769951, -28.347921], [71.774223, -28.339235], [71.778419, -28.330505], [71.782532, -28.321732], [71.786568, -28.312914], [71.79052, -28.304052], [71.794388, -28.295143], [71.79818, -28.28619], [71.801888, -28.277187], [71.805511, -28.268137], [71.809052, -28.259039], [71.812508, -28.249889], [71.815887, -28.24069], [71.819183, -28.23144], [71.822388, -28.222137], [71.825516, -28.212782], [71.82856, -28.203371], [71.83152, -28.193909], [71.834396, -28.184389], [71.837181, -28.174814], [71.83989, -28.165182], [71.842514, -28.155493], [71.845047, -28.145744], [71.847496, -28.135937], [71.849861, -28.126068], [71.852142, -28.11614], [71.85434, -28.10615], [71.856445, -28.096098], [71.858467, -28.085981], [71.860397, -28.075802], [71.862244, -28.065557], [71.864006, -28.055246], [71.865677, -28.04487], [71.867264, -28.034426], [71.868759, -28.023914], [71.870171, -28.013332], [71.87149, -28.002682], [71.872719, -27.991962], [71.873863, -27.981169], [71.874924, -27.970306], [71.875885, -27.959368], [71.876762, -27.948359], [71.877548, -27.937273], [71.878265, -27.926142], [71.878914, -27.915047], [71.879509, -27.903988], [71.880043, -27.892963], [71.880516, -27.881977], [71.88092, -27.871025], [71.881271, -27.860111], [71.881554, -27.849232], [71.881775, -27.838387], [71.881927, -27.827579], [71.882019, -27.816807], [71.88205, -27.80607], [71.882004, -27.79537], [71.881897, -27.784704], [71.881721, -27.774075], [71.881485, -27.763479], [71.881172, -27.75292], [71.880791, -27.742397], [71.880341, -27.731909], [71.879822, -27.721457], [71.879234, -27.711039], [71.878571, -27.700657], [71.877838, -27.69031], [71.877037, -27.679998], [71.87616, -27.669722], [71.875206, -27.659481], [71.874176, -27.649273], [71.873077, -27.639103], [71.871902, -27.628965], [71.870651, -27.618864], [71.869324, -27.608797], [71.86792, -27.598766], [71.866432, -27.58877], [71.864876, -27.578808], [71.863235, -27.56888], [71.861511, -27.558987], [71.859718, -27.549129], [71.857834, -27.539305], [71.855873, -27.529516], [71.853836, -27.519762], [71.851707, -27.510042], [71.849503, -27.500357], [71.847206, -27.490705], [71.844833, -27.481089], [71.842377, -27.471506], [71.839828, -27.461958], [71.837204, -27.452444], [71.834488, -27.442965], [71.83168, -27.433519], [71.828789, -27.424109], [71.825813, -27.414732], [71.822746, -27.405388], [71.819588, -27.39608], [71.816345, -27.386805], [71.813004, -27.377563], [71.809578, -27.368355], [71.806061, -27.359182], [71.802452, -27.350042], [71.798744, -27.340937], [71.794945, -27.331863], [71.791054, -27.322826], [71.787071, -27.31382], [71.78299, -27.30485], [71.778816, -27.295912], [71.774544, -27.287006], [71.77018, -27.278137], [71.765709, -27.269299], [71.761147, -27.260494], [71.756485, -27.251724], [71.751724, -27.242987], [71.746864, -27.234283], [71.741905, -27.225613], [71.736839, -27.216974], [71.731682, -27.20837], [71.726418, -27.199799], [71.721046, -27.191261], [71.715576, -27.182756], [71.710007, -27.174284], [71.704323, -27.165844], [71.69854, -27.157438], [71.692657, -27.149063], [71.686661, -27.140724], [71.680557, -27.132416], [71.674355, -27.12414], [71.668037, -27.115898], [71.661613, -27.107687], [71.655083, -27.09951], [71.648438, -27.091366], [71.641685, -27.083254], [71.634827, -27.075174], [71.627853, -27.067127], [71.620766, -27.059113], [71.613564, -27.05113], [71.606255, -27.04318], [71.598831, -27.035263], [71.591293, -27.027376], [71.583641, -27.019524], [71.575874, -27.011702], [71.567993, -27.003914], [71.55999, -26.996157]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"48kt\", \"ne\": 38, \"se\": 39, \"sw\": 39, \"nw\": 36, \"validDateTime\": \"2024-01-30T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 65.0, \"forecastHour\": 120}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.089432, -27.466715], [71.089432, -27.466715], [71.081093, -27.45927], [71.072716, -27.452042], [71.064293, -27.445026], [71.055824, -27.438225], [71.04731, -27.431635], [71.038742, -27.425257], [71.030136, -27.419088], [71.021484, -27.413126], [71.012779, -27.407373], [71.004028, -27.401825], [70.995224, -27.396481], [70.986374, -27.39134], [70.977478, -27.386402], [70.968529, -27.381664], [70.959526, -27.377127], [70.95047, -27.372787], [70.94136, -27.368647], [70.932205, -27.364698], [70.922989, -27.360947], [70.913727, -27.357389], [70.904404, -27.354023], [70.895027, -27.350847], [70.88559, -27.347862], [70.876106, -27.345064], [70.866554, -27.342455], [70.856956, -27.340031], [70.84729, -27.337791], [70.83757, -27.335735], [70.827789, -27.33386], [70.817947, -27.332169], [70.808052, -27.330654], [70.798088, -27.329321], [70.788071, -27.328163], [70.777985, -27.327183], [70.767838, -27.326376], [70.757622, -27.325743], [70.747353, -27.325281], [70.737015, -27.324993], [70.726608, -27.324873], [70.716141, -27.324921], [70.705605, -27.325138], [70.695, -27.32552], [70.684334, -27.326067], [70.673599, -27.326778], [70.662788, -27.327652], [70.651917, -27.328686], [70.640968, -27.32988], [70.629959, -27.331232], [70.618874, -27.332743], [70.608032, -27.33445], [70.597443, -27.336432], [70.58709, -27.33868], [70.576981, -27.341194], [70.567085, -27.343962], [70.557419, -27.346979], [70.547951, -27.350241], [70.538689, -27.353739], [70.529617, -27.357468], [70.520729, -27.361422], [70.512009, -27.365593], [70.503464, -27.369976], [70.495064, -27.374563], [70.486824, -27.379353], [70.478714, -27.384333], [70.470741, -27.3895], [70.462891, -27.394848], [70.455154, -27.40037], [70.447525, -27.406059], [70.439987, -27.411909], [70.432541, -27.417915], [70.425171, -27.424068], [70.417877, -27.430367], [70.410645, -27.4368], [70.403465, -27.443363], [70.396332, -27.450048], [70.389236, -27.456854], [70.382172, -27.463768], [70.375122, -27.470787], [70.368088, -27.477905], [70.361053, -27.485115], [70.354012, -27.492411], [70.346954, -27.499786], [70.339882, -27.507235], [70.332771, -27.51475], [70.325623, -27.522326], [70.31842, -27.529955], [70.311165, -27.537634], [70.303848, -27.545353], [70.296448, -27.553108], [70.288971, -27.560892], [70.281403, -27.568699], [70.273735, -27.576521], [70.265953, -27.584354], [70.258118, -27.592133], [70.250298, -27.599804], [70.242493, -27.607374], [70.234703, -27.614853], [70.226952, -27.622248], [70.219231, -27.629568], [70.211555, -27.636824], [70.203926, -27.644022], [70.19635, -27.651171], [70.188835, -27.658279], [70.181389, -27.665358], [70.174011, -27.672411], [70.166718, -27.679451], [70.159508, -27.686485], [70.15239, -27.693521], [70.14537, -27.700571], [70.138451, -27.707638], [70.131645, -27.714735], [70.124962, -27.721867], [70.118401, -27.729046], [70.111969, -27.736279], [70.105667, -27.743574], [70.099518, -27.75094], [70.093506, -27.758387], [70.087662, -27.765923], [70.08197, -27.773554], [70.076447, -27.781292], [70.071098, -27.789143], [70.065933, -27.797117], [70.060951, -27.805222], [70.056168, -27.813467], [70.051575, -27.821861], [70.047195, -27.830412], [70.043022, -27.839127], [70.03907, -27.848017], [70.035339, -27.85709], [70.031837, -27.866354], [70.02858, -27.875816], [70.025558, -27.885489], [70.022797, -27.895378], [70.020279, -27.905491], [70.018028, -27.91584], [70.016052, -27.926432], [70.014343, -27.937273], [70.012833, -27.948357], [70.011482, -27.959372], [70.010284, -27.970316], [70.009254, -27.98119], [70.008377, -27.991995], [70.007668, -28.002731], [70.007118, -28.013401], [70.006737, -28.024004], [70.006523, -28.034538], [70.00647, -28.045008], [70.006592, -28.055412], [70.006882, -28.06575], [70.007347, -28.076025], [70.007973, -28.086235], [70.008781, -28.096382], [70.009766, -28.106466], [70.010918, -28.116489], [70.012253, -28.12645], [70.013771, -28.136351], [70.015465, -28.146191], [70.017334, -28.15597], [70.019394, -28.165691], [70.021629, -28.175352], [70.024055, -28.184956], [70.026665, -28.194502], [70.029465, -28.203991], [70.032448, -28.213425], [70.035622, -28.222801], [70.038986, -28.232122], [70.042549, -28.24139], [70.046303, -28.250603], [70.050247, -28.259762], [70.05439, -28.268869], [70.058731, -28.277924], [70.063263, -28.286924], [70.068001, -28.295876], [70.072945, -28.304777], [70.078079, -28.313627], [70.083427, -28.322428], [70.088974, -28.331179], [70.094727, -28.339882], [70.100685, -28.348537], [70.106857, -28.357145], [70.113235, -28.365705], [70.119827, -28.374222], [70.126625, -28.38269], [70.133644, -28.391115], [70.140869, -28.399494], [70.148315, -28.407831], [70.155899, -28.416046], [70.163528, -28.424061], [70.171219, -28.431875], [70.178963, -28.439491], [70.18676, -28.446911], [70.194611, -28.454136], [70.202522, -28.461168], [70.210495, -28.468008], [70.218521, -28.474659], [70.226608, -28.481119], [70.234756, -28.487394], [70.242966, -28.493483], [70.251236, -28.499388], [70.259567, -28.50511], [70.26796, -28.510651], [70.276421, -28.516012], [70.28495, -28.521196], [70.293533, -28.526205], [70.302193, -28.531038], [70.310913, -28.535698], [70.31971, -28.540186], [70.328568, -28.544504], [70.337502, -28.548655], [70.346497, -28.552637], [70.355568, -28.556456], [70.364708, -28.560108], [70.373924, -28.563601], [70.383217, -28.566931], [70.392578, -28.570103], [70.402016, -28.573116], [70.41153, -28.575974], [70.42112, -28.578678], [70.430786, -28.581228], [70.440529, -28.583628], [70.450356, -28.585876], [70.460258, -28.587976], [70.470238, -28.58993], [70.480301, -28.59174], [70.490448, -28.593405], [70.500679, -28.594927], [70.510994, -28.59631], [70.521385, -28.597553], [70.531868, -28.59866], [70.542435, -28.599628], [70.553093, -28.600464], [70.563828, -28.601168], [70.574661, -28.601738], [70.585579, -28.60218], [70.596588, -28.602493], [70.607681, -28.60268], [70.618874, -28.602743], [70.630058, -28.602674], [70.641129, -28.602467], [70.652107, -28.602119], [70.662971, -28.601631], [70.673744, -28.601004], [70.684418, -28.600233], [70.694984, -28.599321], [70.705467, -28.598265], [70.715851, -28.597067], [70.726143, -28.595724], [70.736343, -28.594236], [70.74646, -28.592602], [70.756485, -28.590822], [70.766418, -28.588894], [70.776276, -28.586819], [70.786049, -28.584597], [70.795746, -28.582224], [70.805359, -28.5797], [70.814896, -28.577026], [70.824364, -28.574203], [70.833748, -28.571226], [70.843063, -28.568098], [70.85231, -28.564816], [70.861488, -28.561378], [70.870598, -28.557787], [70.879646, -28.554041], [70.888626, -28.550138], [70.897545, -28.546078], [70.906403, -28.541861], [70.915207, -28.537485], [70.92395, -28.532951], [70.93264, -28.528257], [70.941269, -28.523403], [70.949852, -28.518389], [70.958389, -28.513212], [70.966873, -28.507874], [70.975304, -28.502371], [70.983696, -28.496706], [70.99205, -28.490875], [71.000351, -28.48488], [71.008621, -28.478718], [71.016846, -28.472391], [71.025032, -28.465895], [71.033188, -28.459232], [71.041313, -28.4524], [71.0494, -28.4454], [71.057465, -28.438229], [71.065491, -28.430887], [71.073494, -28.423374], [71.081474, -28.415689], [71.089432, -28.407831], [71.09729, -28.399876], [71.104973, -28.391897], [71.112488, -28.383892], [71.119827, -28.37586], [71.126999, -28.367802], [71.134003, -28.359713], [71.140831, -28.351589], [71.147491, -28.343435], [71.153992, -28.335245], [71.160316, -28.327017], [71.166481, -28.318752], [71.172478, -28.310446], [71.178307, -28.302097], [71.183968, -28.293707], [71.189476, -28.285269], [71.194809, -28.276787], [71.199989, -28.268253], [71.205002, -28.25967], [71.209854, -28.251036], [71.214554, -28.242348], [71.219086, -28.233604], [71.223457, -28.224804], [71.227676, -28.215946], [71.231735, -28.207026], [71.235641, -28.198044], [71.239388, -28.188999], [71.242973, -28.17989], [71.246414, -28.170712], [71.249695, -28.161465], [71.252823, -28.152149], [71.255798, -28.142759], [71.258621, -28.133297], [71.261299, -28.12376], [71.263817, -28.114145], [71.26619, -28.104452], [71.268417, -28.094677], [71.270493, -28.084822], [71.272415, -28.074881], [71.2742, -28.064856], [71.275833, -28.054743], [71.277321, -28.04454], [71.278664, -28.03425], [71.279861, -28.023865], [71.280914, -28.013388], [71.28183, -28.002813], [71.2826, -27.992144], [71.283226, -27.981373], [71.283714, -27.970503], [71.284065, -27.959532], [71.284271, -27.948454], [71.28434, -27.937273], [71.284279, -27.926085], [71.284088, -27.914986], [71.283775, -27.903978], [71.283333, -27.893061], [71.282761, -27.882231], [71.282059, -27.871489], [71.281227, -27.860836], [71.280258, -27.850267], [71.279152, -27.839787], [71.277908, -27.82939], [71.276527, -27.819078], [71.275002, -27.808849], [71.273338, -27.798702], [71.27153, -27.788637], [71.269577, -27.778654], [71.267471, -27.768751], [71.265221, -27.758928], [71.262825, -27.749184], [71.260277, -27.739517], [71.257576, -27.729927], [71.254715, -27.720413], [71.251701, -27.710978], [71.248528, -27.701614], [71.245201, -27.692326], [71.241707, -27.683111], [71.238052, -27.673967], [71.234238, -27.664898], [71.230255, -27.655897], [71.226105, -27.646969], [71.221786, -27.638107], [71.2173, -27.629316], [71.212639, -27.620592], [71.207802, -27.611937], [71.202797, -27.603346], [71.197609, -27.594822], [71.192253, -27.586363], [71.186707, -27.577967], [71.180984, -27.569633], [71.175079, -27.561365], [71.168991, -27.553156], [71.16272, -27.54501], [71.156258, -27.536922], [71.149612, -27.528894], [71.142769, -27.520924], [71.135735, -27.513014], [71.12851, -27.505159], [71.121094, -27.49736], [71.113472, -27.489618], [71.105659, -27.48193], [71.097649, -27.474297], [71.089432, -27.466715]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 19, \"se\": 19, \"sw\": 19, \"nw\": 19, \"validDateTime\": \"2024-01-30T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 65.0, \"forecastHour\": 120}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[70.854149, -27.701994], [70.854149, -27.701994], [70.846336, -27.694368], [70.83847, -27.687075], [70.830559, -27.680109], [70.822578, -27.67347], [70.814537, -27.667152], [70.806419, -27.661158], [70.798218, -27.655479], [70.789932, -27.650116], [70.781555, -27.645067], [70.773087, -27.640327], [70.764503, -27.635895], [70.755814, -27.631767], [70.747002, -27.627943], [70.738068, -27.624418], [70.729004, -27.621189], [70.719803, -27.618256], [70.710457, -27.615614], [70.700966, -27.613262], [70.691315, -27.611197], [70.681503, -27.609413], [70.671524, -27.607912], [70.661369, -27.606691], [70.651031, -27.605745], [70.640511, -27.605072], [70.629791, -27.604671], [70.618874, -27.604538], [70.607956, -27.604671], [70.597237, -27.605072], [70.586716, -27.605745], [70.576378, -27.606691], [70.566223, -27.607912], [70.556244, -27.609413], [70.546432, -27.611197], [70.536781, -27.613262], [70.52729, -27.615614], [70.517944, -27.618256], [70.508743, -27.621189], [70.49968, -27.624418], [70.490746, -27.627943], [70.481934, -27.631767], [70.473244, -27.635895], [70.464661, -27.640327], [70.456192, -27.645067], [70.447815, -27.650116], [70.439529, -27.655479], [70.431328, -27.661158], [70.42321, -27.667152], [70.415169, -27.67347], [70.407188, -27.680109], [70.399277, -27.687075], [70.391411, -27.694368], [70.383598, -27.701994], [70.375977, -27.709808], [70.368675, -27.71767], [70.36171, -27.725586], [70.355072, -27.733564], [70.348755, -27.741608], [70.342758, -27.749727], [70.337082, -27.757925], [70.331718, -27.766209], [70.326668, -27.774586], [70.32193, -27.783062], [70.317497, -27.791641], [70.31337, -27.800335], [70.309547, -27.809145], [70.306023, -27.818079], [70.302795, -27.827143], [70.299858, -27.836344], [70.297218, -27.84569], [70.294861, -27.855183], [70.292801, -27.864832], [70.291016, -27.874645], [70.289513, -27.884624], [70.288292, -27.894779], [70.287346, -27.905115], [70.286674, -27.91564], [70.28627, -27.926355], [70.28614, -27.937273], [70.28627, -27.948191], [70.286674, -27.958906], [70.287346, -27.969431], [70.288292, -27.979767], [70.289513, -27.989922], [70.291016, -27.999901], [70.292801, -28.009714], [70.294861, -28.019363], [70.297218, -28.028856], [70.299858, -28.038202], [70.302795, -28.047403], [70.306023, -28.056467], [70.309547, -28.065401], [70.31337, -28.074211], [70.317497, -28.082905], [70.32193, -28.091484], [70.326668, -28.09996], [70.331718, -28.108337], [70.337082, -28.116621], [70.342758, -28.124819], [70.348755, -28.132938], [70.355072, -28.140982], [70.36171, -28.14896], [70.368675, -28.156876], [70.375977, -28.164738], [70.383598, -28.172552], [70.391411, -28.180178], [70.399277, -28.187471], [70.407188, -28.194437], [70.415169, -28.201077], [70.42321, -28.207394], [70.431328, -28.213388], [70.439529, -28.219067], [70.447815, -28.22443], [70.456192, -28.229479], [70.464661, -28.234219], [70.473244, -28.238651], [70.481934, -28.242779], [70.490746, -28.246603], [70.49968, -28.250128], [70.508743, -28.253357], [70.517944, -28.25629], [70.52729, -28.258932], [70.536781, -28.261284], [70.546432, -28.26335], [70.556244, -28.265133], [70.566223, -28.266634], [70.576378, -28.267855], [70.586716, -28.268801], [70.597237, -28.269474], [70.607956, -28.269875], [70.618874, -28.270008], [70.629791, -28.269875], [70.640511, -28.269474], [70.651031, -28.268801], [70.661369, -28.267855], [70.671524, -28.266634], [70.681503, -28.265133], [70.691315, -28.26335], [70.700966, -28.261284], [70.710457, -28.258932], [70.719803, -28.25629], [70.729004, -28.253357], [70.738068, -28.250128], [70.747002, -28.246603], [70.755814, -28.242779], [70.764503, -28.238651], [70.773087, -28.234219], [70.781555, -28.229479], [70.789932, -28.22443], [70.798218, -28.219067], [70.806419, -28.213388], [70.814537, -28.207394], [70.822578, -28.201077], [70.830559, -28.194437], [70.83847, -28.187471], [70.846336, -28.180178], [70.854149, -28.172552], [70.861771, -28.164738], [70.869072, -28.156876], [70.876038, -28.14896], [70.882675, -28.140982], [70.888992, -28.132938], [70.894989, -28.124819], [70.900665, -28.116621], [70.906029, -28.108337], [70.911079, -28.09996], [70.915817, -28.091484], [70.92025, -28.082905], [70.924377, -28.074211], [70.9282, -28.065401], [70.931725, -28.056467], [70.934952, -28.047403], [70.937889, -28.038202], [70.940529, -28.028856], [70.942886, -28.019363], [70.944946, -28.009714], [70.946732, -27.999901], [70.948235, -27.989922], [70.949455, -27.979767], [70.950401, -27.969431], [70.951073, -27.958906], [70.951477, -27.948191], [70.951607, -27.937273], [70.951477, -27.926355], [70.951073, -27.91564], [70.950401, -27.905115], [70.949455, -27.894779], [70.948235, -27.884624], [70.946732, -27.874645], [70.944946, -27.864832], [70.942886, -27.855183], [70.940529, -27.84569], [70.937889, -27.836344], [70.934952, -27.827143], [70.931725, -27.818079], [70.9282, -27.809145], [70.924377, -27.800335], [70.92025, -27.791641], [70.915817, -27.783062], [70.911079, -27.774586], [70.906029, -27.766209], [70.900665, -27.757925], [70.894989, -27.749727], [70.888992, -27.741608], [70.882675, -27.733564], [70.876038, -27.725586], [70.869072, -27.71767], [70.861771, -27.709808], [70.854149, -27.701994]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-26T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 24}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[87.167961, -16.384733], [87.167961, -16.384733], [87.159363, -16.377663], [87.150787, -16.370667], [87.142235, -16.363747], [87.133698, -16.356899], [87.125175, -16.350126], [87.116676, -16.343431], [87.108185, -16.336811], [87.099709, -16.330269], [87.09124, -16.323803], [87.082779, -16.317415], [87.074333, -16.311106], [87.065895, -16.304874], [87.057457, -16.298723], [87.049026, -16.29265], [87.040596, -16.286659], [87.032166, -16.280748], [87.023735, -16.274918], [87.015305, -16.269171], [87.006866, -16.263504], [86.998428, -16.257921], [86.989983, -16.25242], [86.981529, -16.247004], [86.973068, -16.241673], [86.964592, -16.236423], [86.956108, -16.231262], [86.947609, -16.226185], [86.939095, -16.221193], [86.930565, -16.21629], [86.922012, -16.211472], [86.913445, -16.206743], [86.904854, -16.202101], [86.896248, -16.197548], [86.887611, -16.193085], [86.878952, -16.188711], [86.870262, -16.184427], [86.861549, -16.180233], [86.852806, -16.17613], [86.844032, -16.172119], [86.83522, -16.168201], [86.826385, -16.164375], [86.817505, -16.160641], [86.808594, -16.157001], [86.799637, -16.153456], [86.790649, -16.150005], [86.781616, -16.146648], [86.772537, -16.143389], [86.76342, -16.140223], [86.754257, -16.137156], [86.745041, -16.134184], [86.735786, -16.13131], [86.726471, -16.128534], [86.71711, -16.125856], [86.707695, -16.123278], [86.698227, -16.1208], [86.688705, -16.118422], [86.679123, -16.116142], [86.669479, -16.113964], [86.659782, -16.111889], [86.650017, -16.109915], [86.64019, -16.108042], [86.630302, -16.106274], [86.620346, -16.104607], [86.610329, -16.103046], [86.600235, -16.101587], [86.590073, -16.100235], [86.579842, -16.098988], [86.569534, -16.097847], [86.559151, -16.096813], [86.548698, -16.095884], [86.538162, -16.095064], [86.52755, -16.094351], [86.516853, -16.093746], [86.506081, -16.09325], [86.495216, -16.092863], [86.484276, -16.092587], [86.473244, -16.092421], [86.462128, -16.092365], [86.451012, -16.092421], [86.43998, -16.092587], [86.429039, -16.092863], [86.418175, -16.09325], [86.407402, -16.093746], [86.396706, -16.094351], [86.386093, -16.095064], [86.375557, -16.095884], [86.365105, -16.096813], [86.354721, -16.097847], [86.344414, -16.098988], [86.334183, -16.100235], [86.32402, -16.101587], [86.313927, -16.103046], [86.303909, -16.104607], [86.293953, -16.106274], [86.284058, -16.108042], [86.274239, -16.109915], [86.264473, -16.111889], [86.254776, -16.113964], [86.245132, -16.116142], [86.23555, -16.118422], [86.226028, -16.1208], [86.21656, -16.123278], [86.207146, -16.125856], [86.197784, -16.128534], [86.188469, -16.13131], [86.179214, -16.134184], [86.169998, -16.137156], [86.160835, -16.140223], [86.151718, -16.143389], [86.142639, -16.146648], [86.133606, -16.150005], [86.124619, -16.153456], [86.115662, -16.157001], [86.10675, -16.160641], [86.09787, -16.164375], [86.089035, -16.168201], [86.080223, -16.172119], [86.071449, -16.17613], [86.062706, -16.180233], [86.053993, -16.184427], [86.045303, -16.188711], [86.036644, -16.193085], [86.028008, -16.197548], [86.019402, -16.202101], [86.010811, -16.206743], [86.002243, -16.211472], [85.99369, -16.21629], [85.985161, -16.221193], [85.976646, -16.226185], [85.968147, -16.231262], [85.959663, -16.236423], [85.951187, -16.241673], [85.942726, -16.247004], [85.934273, -16.25242], [85.925827, -16.257921], [85.917389, -16.263504], [85.908951, -16.269171], [85.90052, -16.274918], [85.89209, -16.280748], [85.883659, -16.286659], [85.875229, -16.29265], [85.866798, -16.298723], [85.85836, -16.304874], [85.849922, -16.311106], [85.841476, -16.317415], [85.833015, -16.323803], [85.824547, -16.330269], [85.816071, -16.336811], [85.807579, -16.343431], [85.79908, -16.350126], [85.790558, -16.356899], [85.782021, -16.363747], [85.773468, -16.370667], [85.764893, -16.377663], [85.756294, -16.384733], [85.747665, -16.391859], [85.739075, -16.39896], [85.730522, -16.406044], [85.722008, -16.413107], [85.713531, -16.420153], [85.705101, -16.427183], [85.696701, -16.4342], [85.688354, -16.441204], [85.680046, -16.448196], [85.671776, -16.455179], [85.663559, -16.462154], [85.655388, -16.469124], [85.647263, -16.476089], [85.639191, -16.483051], [85.631165, -16.490011], [85.623192, -16.496971], [85.615265, -16.503935], [85.607399, -16.5109], [85.599579, -16.51787], [85.59182, -16.524847], [85.584114, -16.531832], [85.576469, -16.538828], [85.568878, -16.545834], [85.561348, -16.552853], [85.553879, -16.559887], [85.546478, -16.566936], [85.539131, -16.574003], [85.531845, -16.581091], [85.524635, -16.588198], [85.517479, -16.595327], [85.510399, -16.602482], [85.50338, -16.609661], [85.496437, -16.616869], [85.489555, -16.624105], [85.48275, -16.631371], [85.476013, -16.638668], [85.469353, -16.646], [85.462769, -16.653368], [85.456261, -16.66077], [85.449821, -16.668213], [85.443466, -16.675695], [85.437187, -16.683218], [85.430984, -16.690784], [85.424866, -16.698397], [85.418831, -16.706055], [85.412872, -16.71376], [85.407005, -16.721516], [85.401222, -16.729321], [85.395515, -16.737181], [85.389908, -16.745092], [85.384384, -16.753061], [85.378944, -16.761087], [85.373596, -16.769175], [85.368347, -16.777321], [85.363182, -16.785528], [85.358116, -16.7938], [85.353142, -16.802137], [85.348259, -16.810543], [85.343475, -16.819016], [85.338791, -16.827559], [85.334206, -16.836174], [85.32972, -16.844862], [85.325333, -16.853626], [85.321053, -16.862465], [85.316872, -16.871384], [85.31279, -16.880383], [85.308823, -16.889462], [85.304955, -16.898623], [85.301193, -16.907869], [85.297546, -16.917202], [85.294006, -16.926622], [85.290573, -16.936132], [85.287254, -16.945732], [85.284042, -16.955425], [85.280952, -16.965212], [85.277969, -16.975096], [85.275108, -16.985075], [85.272362, -16.995153], [85.26973, -17.005333], [85.26722, -17.015614], [85.264832, -17.025997], [85.262566, -17.036488], [85.260414, -17.047085], [85.258392, -17.057789], [85.256493, -17.068604], [85.254715, -17.079531], [85.253067, -17.09057], [85.251518, -17.101673], [85.250046, -17.11274], [85.248657, -17.123772], [85.247337, -17.134768], [85.246109, -17.145729], [85.244949, -17.156654], [85.243881, -17.167547], [85.242882, -17.178404], [85.241966, -17.189226], [85.241135, -17.200014], [85.240387, -17.210768], [85.239716, -17.221489], [85.239128, -17.232174], [85.238625, -17.242826], [85.238197, -17.253445], [85.237854, -17.26403], [85.237602, -17.274582], [85.237427, -17.285101], [85.237335, -17.295588], [85.237328, -17.30604], [85.237404, -17.31646], [85.237564, -17.326847], [85.237816, -17.337202], [85.238144, -17.347525], [85.238564, -17.357815], [85.239067, -17.368073], [85.239655, -17.3783], [85.240334, -17.388494], [85.241096, -17.398657], [85.241943, -17.408789], [85.242882, -17.41889], [85.243904, -17.428959], [85.245018, -17.438995], [85.246223, -17.449003], [85.247513, -17.458979], [85.248894, -17.468925], [85.250359, -17.47884], [85.251915, -17.488726], [85.253563, -17.498579], [85.255302, -17.508404], [85.257133, -17.5182], [85.259048, -17.527964], [85.261063, -17.537699], [85.263161, -17.547405], [85.265358, -17.557081], [85.267639, -17.566729], [85.27002, -17.576347], [85.272491, -17.585938], [85.275055, -17.595497], [85.27771, -17.60503], [85.280464, -17.614532], [85.283302, -17.624008], [85.28624, -17.633455], [85.289276, -17.642874], [85.292404, -17.652264], [85.295624, -17.661627], [85.298943, -17.670963], [85.302361, -17.680271], [85.30587, -17.689552], [85.309479, -17.698805], [85.313179, -17.708031], [85.316978, -17.717232], [85.320877, -17.726404], [85.324875, -17.73555], [85.328964, -17.744669], [85.33316, -17.753763], [85.337448, -17.762829], [85.341835, -17.77187], [85.346321, -17.780886], [85.350914, -17.789875], [85.355598, -17.798838], [85.36039, -17.807777], [85.365273, -17.816689], [85.370262, -17.825577], [85.375351, -17.83444], [85.380547, -17.843277], [85.385834, -17.852091], [85.391228, -17.860878], [85.396729, -17.869642], [85.402328, -17.878382], [85.408028, -17.887096], [85.413834, -17.895788], [85.419746, -17.904455], [85.425758, -17.913097], [85.431877, -17.921717], [85.438095, -17.930313], [85.44442, -17.938887], [85.450851, -17.947435], [85.45739, -17.955963], [85.464035, -17.964466], [85.470779, -17.972946], [85.477631, -17.981405], [85.484596, -17.989841], [85.491661, -17.998255], [85.49884, -18.006645], [85.506119, -18.015015], [85.513512, -18.023361], [85.521011, -18.031687], [85.52858, -18.039953], [85.536171, -18.048117], [85.543793, -18.056181], [85.551445, -18.064144], [85.559113, -18.072008], [85.566818, -18.079773], [85.574547, -18.08744], [85.582306, -18.095007], [85.590088, -18.102476], [85.5979, -18.109846], [85.605736, -18.117121], [85.613609, -18.124298], [85.621506, -18.131378], [85.629433, -18.138361], [85.637383, -18.145248], [85.64537, -18.152042], [85.653381, -18.158739], [85.661423, -18.16534], [85.669495, -18.17185], [85.677597, -18.178265], [85.68573, -18.184586], [85.693893, -18.190813], [85.702087, -18.196947], [85.710312, -18.20299], [85.718567, -18.208941], [85.726852, -18.214798], [85.735168, -18.220566], [85.743515, -18.226242], [85.751892, -18.231829], [85.760307, -18.237326], [85.768753, -18.242731], [85.777229, -18.248049], [85.785736, -18.253277], [85.794273, -18.258417], [85.802849, -18.26347], [85.811455, -18.268433], [85.820091, -18.27331], [85.828766, -18.278099], [85.837471, -18.282803], [85.846214, -18.28742], [85.854988, -18.29195], [85.8638, -18.296396], [85.872643, -18.300756], [85.881516, -18.305033], [85.890427, -18.309225], [85.899376, -18.313334], [85.908356, -18.317358], [85.917374, -18.321299], [85.92643, -18.325157], [85.935516, -18.328934], [85.944641, -18.332628], [85.953804, -18.336241], [85.962997, -18.339773], [85.972229, -18.343224], [85.981506, -18.346594], [85.990807, -18.349886], [86.000153, -18.353096], [86.009537, -18.356228], [86.018951, -18.359282], [86.028412, -18.362257], [86.037903, -18.365152], [86.047432, -18.367971], [86.057007, -18.370714], [86.066612, -18.373379], [86.076263, -18.375967], [86.085945, -18.378479], [86.095673, -18.380915], [86.105438, -18.383276], [86.115242, -18.385563], [86.125084, -18.387775], [86.134964, -18.389912], [86.14489, -18.391975], [86.154854, -18.393967], [86.164856, -18.395884], [86.174904, -18.397728], [86.18499, -18.399502], [86.195114, -18.401201], [86.205276, -18.402832], [86.215485, -18.40439], [86.225739, -18.405876], [86.236031, -18.407295], [86.246361, -18.408642], [86.256737, -18.40992], [86.267159, -18.411129], [86.277618, -18.412268], [86.288116, -18.41334], [86.29866, -18.414343], [86.30925, -18.415279], [86.319885, -18.416149], [86.330559, -18.41695], [86.341278, -18.417686], [86.352043, -18.418356], [86.362846, -18.418961], [86.373703, -18.4195], [86.384598, -18.419973], [86.395538, -18.420383], [86.406525, -18.420729], [86.417549, -18.421011], [86.428627, -18.421228], [86.439751, -18.421385], [86.450912, -18.421478], [86.462128, -18.421509], [86.473343, -18.421478], [86.484505, -18.421385], [86.495628, -18.421228], [86.506706, -18.421011], [86.517731, -18.420729], [86.528717, -18.420383], [86.539658, -18.419973], [86.550552, -18.4195], [86.561409, -18.418961], [86.572212, -18.418356], [86.582977, -18.417686], [86.593697, -18.41695], [86.60437, -18.416149], [86.615005, -18.415279], [86.625595, -18.414343], [86.636139, -18.41334], [86.646637, -18.412268], [86.657097, -18.411129], [86.667519, -18.40992], [86.677895, -18.408642], [86.688225, -18.407295], [86.698517, -18.405876], [86.708771, -18.40439], [86.718979, -18.402832], [86.729141, -18.401201], [86.739265, -18.399502], [86.749352, -18.397728], [86.759399, -18.395884], [86.769402, -18.393967], [86.779366, -18.391975], [86.789291, -18.389912], [86.799171, -18.387775], [86.809013, -18.385563], [86.818817, -18.383276], [86.828583, -18.380915], [86.83831, -18.378479], [86.847992, -18.375967], [86.857643, -18.373379], [86.867249, -18.370714], [86.876823, -18.367971], [86.886353, -18.365152], [86.895844, -18.362257], [86.905304, -18.359282], [86.914719, -18.356228], [86.924103, -18.353096], [86.933449, -18.349886], [86.942749, -18.346594], [86.952026, -18.343224], [86.961258, -18.339773], [86.970451, -18.336241], [86.979614, -18.332628], [86.988739, -18.328934], [86.997826, -18.325157], [87.006882, -18.321299], [87.0159, -18.317358], [87.024879, -18.313334], [87.033829, -18.309225], [87.04274, -18.305033], [87.051613, -18.300756], [87.060455, -18.296396], [87.069267, -18.29195], [87.078041, -18.28742], [87.086784, -18.282803], [87.09549, -18.278099], [87.104164, -18.27331], [87.112801, -18.268433], [87.121407, -18.26347], [87.129982, -18.258417], [87.138519, -18.253277], [87.147026, -18.248049], [87.155502, -18.242731], [87.163948, -18.237326], [87.172363, -18.231829], [87.18074, -18.226242], [87.189087, -18.220566], [87.197403, -18.214798], [87.205688, -18.208941], [87.213943, -18.20299], [87.222168, -18.196947], [87.230362, -18.190813], [87.238525, -18.184586], [87.246658, -18.178265], [87.254761, -18.17185], [87.262833, -18.16534], [87.270874, -18.158739], [87.278885, -18.152042], [87.286873, -18.145248], [87.294823, -18.138361], [87.30275, -18.131378], [87.310646, -18.124298], [87.31852, -18.117121], [87.326355, -18.109846], [87.334167, -18.102476], [87.341949, -18.095007], [87.349709, -18.08744], [87.357437, -18.079773], [87.365143, -18.072008], [87.37281, -18.064144], [87.380463, -18.056181], [87.388084, -18.048117], [87.395676, -18.039953], [87.403244, -18.031687], [87.410744, -18.023361], [87.418137, -18.015015], [87.425415, -18.006645], [87.432594, -17.998255], [87.439659, -17.989841], [87.446625, -17.981405], [87.453476, -17.972946], [87.46022, -17.964466], [87.466866, -17.955963], [87.473404, -17.947435], [87.479836, -17.938887], [87.48616, -17.930313], [87.492378, -17.921717], [87.498497, -17.913097], [87.504509, -17.904455], [87.510422, -17.895788], [87.516228, -17.887096], [87.521927, -17.878382], [87.527527, -17.869642], [87.533028, -17.860878], [87.538422, -17.852091], [87.543709, -17.843277], [87.548904, -17.83444], [87.553993, -17.825577], [87.558983, -17.816689], [87.563866, -17.807777], [87.568657, -17.798838], [87.573341, -17.789875], [87.577934, -17.780886], [87.58242, -17.77187], [87.586807, -17.762829], [87.591095, -17.753763], [87.595291, -17.744669], [87.59938, -17.73555], [87.603378, -17.726404], [87.607277, -17.717232], [87.611076, -17.708031], [87.614777, -17.698805], [87.618385, -17.689552], [87.621895, -17.680271], [87.625313, -17.670963], [87.628632, -17.661627], [87.631851, -17.652264], [87.634979, -17.642874], [87.638016, -17.633455], [87.640953, -17.624008], [87.643791, -17.614532], [87.646545, -17.60503], [87.6492, -17.595497], [87.651764, -17.585938], [87.654236, -17.576347], [87.656616, -17.566729], [87.658897, -17.557081], [87.661095, -17.547405], [87.663193, -17.537699], [87.665207, -17.527964], [87.667122, -17.5182], [87.668953, -17.508404], [87.670692, -17.498579], [87.67234, -17.488726], [87.673897, -17.47884], [87.675362, -17.468925], [87.676743, -17.458979], [87.678032, -17.449003], [87.679237, -17.438995], [87.680351, -17.428959], [87.681374, -17.41889], [87.682312, -17.408789], [87.683159, -17.398657], [87.683922, -17.388494], [87.684601, -17.3783], [87.685188, -17.368073], [87.685692, -17.357815], [87.686111, -17.347525], [87.68644, -17.337202], [87.686691, -17.326847], [87.686852, -17.31646], [87.686928, -17.30604], [87.68692, -17.295588], [87.686829, -17.285101], [87.686653, -17.274582], [87.686401, -17.26403], [87.686058, -17.253445], [87.685631, -17.242826], [87.685127, -17.232174], [87.68454, -17.221489], [87.683868, -17.210768], [87.683121, -17.200014], [87.682289, -17.189226], [87.681374, -17.178404], [87.680374, -17.167547], [87.679306, -17.156654], [87.678146, -17.145729], [87.676918, -17.134768], [87.675598, -17.123772], [87.67421, -17.11274], [87.672737, -17.101673], [87.671188, -17.09057], [87.66954, -17.079531], [87.667763, -17.068604], [87.665863, -17.057789], [87.663841, -17.047085], [87.66169, -17.036488], [87.659424, -17.025997], [87.657036, -17.015614], [87.654526, -17.005333], [87.651894, -16.995153], [87.649147, -16.985075], [87.646286, -16.975096], [87.643303, -16.965212], [87.640213, -16.955425], [87.637001, -16.945732], [87.633682, -16.936132], [87.630249, -16.926622], [87.626709, -16.917202], [87.623062, -16.907869], [87.619301, -16.898623], [87.615433, -16.889462], [87.611465, -16.880383], [87.607384, -16.871384], [87.603203, -16.862465], [87.598923, -16.853626], [87.594536, -16.844862], [87.59005, -16.836174], [87.585464, -16.827559], [87.58078, -16.819016], [87.575996, -16.810543], [87.571114, -16.802137], [87.566139, -16.7938], [87.561073, -16.785528], [87.555908, -16.777319], [87.550659, -16.769175], [87.545311, -16.761087], [87.539871, -16.753061], [87.534348, -16.745092], [87.52874, -16.737181], [87.523033, -16.729321], [87.51725, -16.721516], [87.511383, -16.71376], [87.505424, -16.706055], [87.49939, -16.698397], [87.493271, -16.690784], [87.487068, -16.683218], [87.480789, -16.675695], [87.474434, -16.668213], [87.467995, -16.66077], [87.461487, -16.653368], [87.454903, -16.646], [87.448242, -16.638668], [87.441505, -16.631371], [87.4347, -16.624105], [87.427818, -16.616869], [87.420876, -16.609661], [87.413857, -16.602482], [87.406776, -16.595327], [87.39962, -16.588198], [87.39241, -16.581091], [87.385124, -16.574003], [87.377777, -16.566936], [87.370377, -16.559887], [87.362907, -16.552853], [87.355377, -16.545834], [87.347786, -16.538828], [87.340141, -16.531832], [87.332436, -16.524847], [87.324677, -16.51787], [87.316856, -16.5109], [87.30899, -16.503935], [87.301064, -16.496971], [87.293091, -16.490011], [87.285065, -16.483051], [87.276993, -16.476089], [87.268867, -16.469124], [87.260696, -16.462154], [87.25248, -16.455179], [87.244209, -16.448196], [87.235901, -16.441204], [87.227554, -16.4342], [87.219154, -16.427183], [87.210724, -16.420153], [87.202248, -16.413107], [87.193733, -16.406044], [87.185181, -16.39896], [87.17659, -16.391859], [87.167961, -16.384733]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"48kt\", \"ne\": 34, \"se\": 39, \"sw\": 39, \"nw\": 34, \"validDateTime\": \"2024-01-26T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 24}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[86.815048, -16.737652], [86.815048, -16.737652], [86.806572, -16.730709], [86.798134, -16.723909], [86.789734, -16.717257], [86.781357, -16.710752], [86.773003, -16.704399], [86.764664, -16.698198], [86.756332, -16.692152], [86.748016, -16.686262], [86.739693, -16.680531], [86.731361, -16.674957], [86.723022, -16.669546], [86.714668, -16.664299], [86.706291, -16.659218], [86.697884, -16.654305], [86.689438, -16.649561], [86.680954, -16.644989], [86.672432, -16.640589], [86.663857, -16.636364], [86.65522, -16.632317], [86.646523, -16.628448], [86.637764, -16.62476], [86.628929, -16.621256], [86.62001, -16.617935], [86.611015, -16.614801], [86.601929, -16.611856], [86.592743, -16.6091], [86.583458, -16.606539], [86.574066, -16.60417], [86.564568, -16.601997], [86.554947, -16.600023], [86.545197, -16.598248], [86.535324, -16.596674], [86.525314, -16.595304], [86.515167, -16.594141], [86.504875, -16.593184], [86.494431, -16.592436], [86.483826, -16.5919], [86.473061, -16.591578], [86.462128, -16.591469], [86.451195, -16.591578], [86.44043, -16.5919], [86.429825, -16.592436], [86.41938, -16.593184], [86.409088, -16.594141], [86.398941, -16.595304], [86.388931, -16.596674], [86.379059, -16.598248], [86.369308, -16.600023], [86.359688, -16.601997], [86.350189, -16.60417], [86.340797, -16.606539], [86.331512, -16.6091], [86.322327, -16.611856], [86.31324, -16.614801], [86.304245, -16.617935], [86.295326, -16.621256], [86.286491, -16.62476], [86.277733, -16.628448], [86.269035, -16.632317], [86.260399, -16.636364], [86.251823, -16.640589], [86.243301, -16.644989], [86.234818, -16.649561], [86.226372, -16.654305], [86.217964, -16.659218], [86.209587, -16.664299], [86.201233, -16.669546], [86.192894, -16.674957], [86.184563, -16.680531], [86.176239, -16.686262], [86.167923, -16.692152], [86.159592, -16.698198], [86.151253, -16.704399], [86.142899, -16.710752], [86.134521, -16.717257], [86.126122, -16.723909], [86.117683, -16.730709], [86.109207, -16.737652], [86.100693, -16.744684], [86.092255, -16.751678], [86.083893, -16.758636], [86.075615, -16.765568], [86.067421, -16.772478], [86.059311, -16.779371], [86.051292, -16.786257], [86.043381, -16.793139], [86.035561, -16.800022], [86.027847, -16.806915], [86.020248, -16.813824], [86.012756, -16.820753], [86.005386, -16.827711], [85.998138, -16.834702], [85.99102, -16.841732], [85.984024, -16.848808], [85.977165, -16.855938], [85.970444, -16.863125], [85.96386, -16.870377], [85.957428, -16.877699], [85.951149, -16.885096], [85.945023, -16.892578], [85.939049, -16.900148], [85.933243, -16.907814], [85.927605, -16.915581], [85.922134, -16.923454], [85.91684, -16.931442], [85.911728, -16.93955], [85.906792, -16.947783], [85.902054, -16.956148], [85.897499, -16.964653], [85.893143, -16.973299], [85.888985, -16.982098], [85.885025, -16.991053], [85.881279, -17.000172], [85.877747, -17.009459], [85.874428, -17.018919], [85.87133, -17.028563], [85.868462, -17.038393], [85.865814, -17.048416], [85.863403, -17.05864], [85.861221, -17.069069], [85.859291, -17.079712], [85.857597, -17.09057], [85.856087, -17.101654], [85.854736, -17.112669], [85.853539, -17.123613], [85.852509, -17.134487], [85.851631, -17.145292], [85.850922, -17.156029], [85.850372, -17.166698], [85.849991, -17.177301], [85.849777, -17.187836], [85.849724, -17.198305], [85.849846, -17.20871], [85.850136, -17.219048], [85.850601, -17.229322], [85.851227, -17.239532], [85.852036, -17.24968], [85.85302, -17.259764], [85.854172, -17.269787], [85.855507, -17.279747], [85.857025, -17.289648], [85.858719, -17.299488], [85.860588, -17.309267], [85.862648, -17.318989], [85.864883, -17.32865], [85.86731, -17.338253], [85.869919, -17.347799], [85.872719, -17.357288], [85.875702, -17.366722], [85.878876, -17.376099], [85.88224, -17.38542], [85.885803, -17.394688], [85.889557, -17.4039], [85.893501, -17.413059], [85.897644, -17.422167], [85.901985, -17.431221], [85.906517, -17.440222], [85.911255, -17.449173], [85.916199, -17.458075], [85.921333, -17.466925], [85.926682, -17.475725], [85.932228, -17.484476], [85.937981, -17.493179], [85.943939, -17.501835], [85.950111, -17.510443], [85.95649, -17.519003], [85.963081, -17.527519], [85.969879, -17.535988], [85.976898, -17.544413], [85.984123, -17.552792], [85.99157, -17.561129], [85.999153, -17.569344], [86.006783, -17.577358], [86.014473, -17.585173], [86.022217, -17.592789], [86.030014, -17.600208], [86.037865, -17.607433], [86.045776, -17.614466], [86.053749, -17.621305], [86.061775, -17.627956], [86.069862, -17.634417], [86.078011, -17.640692], [86.08622, -17.64678], [86.09449, -17.652685], [86.102821, -17.658407], [86.111214, -17.663948], [86.119675, -17.66931], [86.128204, -17.674494], [86.136787, -17.679502], [86.145447, -17.684336], [86.154167, -17.688995], [86.162964, -17.693483], [86.171822, -17.697802], [86.180756, -17.701952], [86.189751, -17.705935], [86.198822, -17.709753], [86.207962, -17.713406], [86.217178, -17.716898], [86.226471, -17.720228], [86.235832, -17.7234], [86.24527, -17.726414], [86.254784, -17.729271], [86.264374, -17.731976], [86.27404, -17.734526], [86.283783, -17.736925], [86.29361, -17.739174], [86.303513, -17.741274], [86.313492, -17.743227], [86.323555, -17.745037], [86.333702, -17.746702], [86.343933, -17.748224], [86.354248, -17.749607], [86.364639, -17.750851], [86.375122, -17.751957], [86.385689, -17.752926], [86.396347, -17.753761], [86.407082, -17.754465], [86.417915, -17.755035], [86.428833, -17.755478], [86.439842, -17.755791], [86.450935, -17.755978], [86.462128, -17.756041], [86.47332, -17.755978], [86.484413, -17.755791], [86.495422, -17.755478], [86.50634, -17.755035], [86.517174, -17.754465], [86.527908, -17.753761], [86.538567, -17.752926], [86.549133, -17.751957], [86.559616, -17.750851], [86.570007, -17.749607], [86.580322, -17.748224], [86.590553, -17.746702], [86.6007, -17.745037], [86.610764, -17.743227], [86.620743, -17.741274], [86.630646, -17.739174], [86.640472, -17.736925], [86.650215, -17.734526], [86.659882, -17.731976], [86.669472, -17.729271], [86.678986, -17.726414], [86.688423, -17.7234], [86.697784, -17.720228], [86.707077, -17.716898], [86.716293, -17.713406], [86.725433, -17.709753], [86.734505, -17.705935], [86.7435, -17.701952], [86.752434, -17.697802], [86.761292, -17.693483], [86.770088, -17.688995], [86.778809, -17.684336], [86.787468, -17.679502], [86.796051, -17.674494], [86.804581, -17.66931], [86.813042, -17.663948], [86.821434, -17.658407], [86.829765, -17.652685], [86.838036, -17.64678], [86.846245, -17.640692], [86.854393, -17.634417], [86.86248, -17.627956], [86.870506, -17.621305], [86.878479, -17.614466], [86.886391, -17.607433], [86.894241, -17.600208], [86.902039, -17.592789], [86.909782, -17.585173], [86.917473, -17.577358], [86.925102, -17.569344], [86.932686, -17.561129], [86.940132, -17.552792], [86.947357, -17.544413], [86.954376, -17.535988], [86.961174, -17.527519], [86.967766, -17.519003], [86.974144, -17.510443], [86.980316, -17.501835], [86.986275, -17.493179], [86.992027, -17.484476], [86.997574, -17.475725], [87.002922, -17.466925], [87.008057, -17.458075], [87.013, -17.449173], [87.017738, -17.440222], [87.02227, -17.431221], [87.026611, -17.422167], [87.030754, -17.413059], [87.034698, -17.4039], [87.038452, -17.394688], [87.042015, -17.38542], [87.04538, -17.376099], [87.048553, -17.366722], [87.051537, -17.357288], [87.054337, -17.347799], [87.056946, -17.338253], [87.059372, -17.32865], [87.061607, -17.318989], [87.063667, -17.309267], [87.065536, -17.299488], [87.06723, -17.289648], [87.068748, -17.279747], [87.070084, -17.269787], [87.071236, -17.259764], [87.07222, -17.24968], [87.073029, -17.239532], [87.073654, -17.229322], [87.07412, -17.219048], [87.074409, -17.20871], [87.074532, -17.198305], [87.074478, -17.187836], [87.074265, -17.177301], [87.073883, -17.166698], [87.073334, -17.156029], [87.072624, -17.145292], [87.071747, -17.134487], [87.070717, -17.123613], [87.069519, -17.112669], [87.068169, -17.101656], [87.066658, -17.09057], [87.064964, -17.079712], [87.063034, -17.069069], [87.060852, -17.05864], [87.058441, -17.048416], [87.055794, -17.038393], [87.052925, -17.028563], [87.049828, -17.018919], [87.046509, -17.009459], [87.042976, -17.000172], [87.03923, -16.991053], [87.035271, -16.982098], [87.031113, -16.973301], [87.026756, -16.964653], [87.022202, -16.956148], [87.017464, -16.947783], [87.012527, -16.93955], [87.007416, -16.931442], [87.002121, -16.923454], [86.996651, -16.915581], [86.991013, -16.907814], [86.985207, -16.900148], [86.979233, -16.892578], [86.973106, -16.885096], [86.966827, -16.877699], [86.960396, -16.870377], [86.953812, -16.863125], [86.94709, -16.855938], [86.940231, -16.848808], [86.933235, -16.841732], [86.926117, -16.834702], [86.918869, -16.827711], [86.911499, -16.820753], [86.904007, -16.813824], [86.896408, -16.806915], [86.888695, -16.800022], [86.880875, -16.793139], [86.872963, -16.786257], [86.864944, -16.779371], [86.856834, -16.772478], [86.84864, -16.765568], [86.840363, -16.758636], [86.832001, -16.751678], [86.823563, -16.744684], [86.815048, -16.737652]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 24, \"se\": 24, \"sw\": 24, \"nw\": 24, \"validDateTime\": \"2024-01-26T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 24}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[86.756226, -16.796473], [86.756226, -16.796473], [86.748291, -16.788696], [86.740326, -16.781195], [86.732307, -16.773964], [86.724251, -16.767004], [86.716141, -16.760311], [86.70797, -16.753885], [86.699745, -16.747725], [86.691452, -16.741827], [86.68309, -16.736191], [86.674652, -16.730814], [86.666145, -16.725697], [86.657555, -16.720833], [86.648872, -16.716225], [86.640106, -16.71187], [86.631248, -16.707764], [86.622292, -16.703909], [86.613228, -16.7003], [86.604057, -16.696938], [86.59478, -16.693817], [86.585388, -16.690941], [86.575874, -16.688303], [86.566231, -16.685905], [86.556465, -16.683743], [86.54657, -16.681816], [86.536537, -16.680122], [86.52636, -16.678661], [86.516045, -16.677429], [86.505577, -16.676424], [86.494957, -16.675646], [86.484177, -16.675093], [86.473236, -16.674763], [86.462128, -16.674652], [86.451019, -16.674763], [86.440079, -16.675093], [86.429298, -16.675646], [86.418678, -16.676424], [86.408211, -16.677429], [86.397896, -16.678661], [86.387718, -16.680122], [86.377686, -16.681816], [86.36779, -16.683743], [86.358025, -16.685905], [86.348381, -16.688303], [86.338867, -16.690941], [86.329475, -16.693817], [86.320198, -16.696938], [86.311028, -16.7003], [86.301964, -16.703909], [86.293007, -16.707764], [86.284149, -16.71187], [86.275383, -16.716225], [86.266701, -16.720833], [86.25811, -16.725697], [86.249603, -16.730814], [86.241165, -16.736191], [86.232803, -16.741827], [86.22451, -16.747725], [86.216286, -16.753885], [86.208115, -16.760311], [86.200005, -16.767004], [86.191948, -16.773964], [86.183929, -16.781195], [86.175964, -16.788696], [86.16803, -16.796473], [86.160255, -16.804403], [86.152748, -16.812374], [86.145523, -16.820387], [86.138557, -16.828447], [86.131866, -16.836561], [86.125443, -16.844728], [86.119286, -16.852957], [86.113388, -16.861248], [86.10775, -16.86961], [86.102371, -16.878044], [86.097252, -16.886555], [86.092392, -16.895145], [86.087784, -16.903824], [86.083427, -16.91259], [86.079323, -16.921452], [86.07547, -16.93041], [86.071861, -16.939472], [86.068497, -16.948641], [86.065376, -16.95792], [86.0625, -16.967314], [86.05986, -16.976828], [86.057465, -16.986465], [86.055305, -16.996229], [86.053375, -17.006126], [86.051682, -17.016161], [86.050217, -17.026335], [86.048988, -17.036654], [86.047981, -17.047123], [86.047203, -17.057743], [86.046654, -17.068523], [86.046318, -17.079464], [86.046211, -17.09057], [86.046318, -17.101677], [86.046654, -17.112617], [86.047203, -17.123398], [86.047981, -17.134018], [86.048988, -17.144487], [86.050217, -17.154806], [86.051682, -17.16498], [86.053375, -17.175014], [86.055305, -17.184912], [86.057465, -17.194675], [86.05986, -17.204313], [86.0625, -17.213827], [86.065376, -17.223221], [86.068497, -17.2325], [86.071861, -17.241669], [86.07547, -17.250731], [86.079323, -17.259689], [86.083427, -17.268551], [86.087784, -17.277317], [86.092392, -17.285995], [86.097252, -17.294586], [86.102371, -17.303097], [86.10775, -17.311531], [86.113388, -17.319893], [86.119286, -17.328184], [86.125443, -17.336412], [86.131866, -17.34458], [86.138557, -17.352694], [86.145523, -17.360754], [86.152748, -17.368767], [86.160255, -17.376738], [86.16803, -17.384668], [86.175964, -17.392445], [86.183929, -17.399946], [86.191948, -17.407177], [86.200005, -17.414137], [86.208115, -17.42083], [86.216286, -17.427256], [86.22451, -17.433416], [86.232803, -17.439314], [86.241165, -17.44495], [86.249603, -17.450327], [86.25811, -17.455444], [86.266701, -17.460308], [86.275383, -17.464916], [86.284149, -17.469271], [86.293007, -17.473377], [86.301964, -17.477232], [86.311028, -17.480841], [86.320198, -17.484203], [86.329475, -17.487324], [86.338867, -17.4902], [86.348381, -17.492838], [86.358025, -17.495235], [86.36779, -17.497398], [86.377686, -17.499325], [86.387718, -17.501019], [86.397896, -17.50248], [86.408211, -17.503712], [86.418678, -17.504717], [86.429298, -17.505495], [86.440079, -17.506048], [86.451019, -17.506378], [86.462128, -17.506489], [86.473236, -17.506378], [86.484177, -17.506048], [86.494957, -17.505495], [86.505577, -17.504717], [86.516045, -17.503712], [86.52636, -17.50248], [86.536537, -17.501019], [86.54657, -17.499325], [86.556465, -17.497398], [86.566231, -17.495235], [86.575874, -17.492838], [86.585388, -17.4902], [86.59478, -17.487324], [86.604057, -17.484203], [86.613228, -17.480841], [86.622292, -17.477232], [86.631248, -17.473377], [86.640106, -17.469271], [86.648872, -17.464916], [86.657555, -17.460308], [86.666145, -17.455444], [86.674652, -17.450327], [86.68309, -17.44495], [86.691452, -17.439314], [86.699745, -17.433416], [86.70797, -17.427256], [86.716141, -17.42083], [86.724251, -17.414137], [86.732307, -17.407177], [86.740326, -17.399946], [86.748291, -17.392445], [86.756226, -17.384668], [86.764, -17.376738], [86.771507, -17.368767], [86.778732, -17.360754], [86.785698, -17.352694], [86.792389, -17.34458], [86.798813, -17.336412], [86.80497, -17.328184], [86.810867, -17.319893], [86.816505, -17.311531], [86.821884, -17.303097], [86.827003, -17.294586], [86.831863, -17.285995], [86.836472, -17.277317], [86.840828, -17.268551], [86.844933, -17.259689], [86.848785, -17.250731], [86.852394, -17.241669], [86.855759, -17.2325], [86.858879, -17.223221], [86.861755, -17.213827], [86.864395, -17.204313], [86.866791, -17.194675], [86.86895, -17.184912], [86.87088, -17.175014], [86.872574, -17.16498], [86.874039, -17.154806], [86.875267, -17.144487], [86.876274, -17.134018], [86.877052, -17.123398], [86.877602, -17.112617], [86.877937, -17.101677], [86.878044, -17.09057], [86.877937, -17.079464], [86.877602, -17.068523], [86.877052, -17.057743], [86.876274, -17.047123], [86.875267, -17.036654], [86.874039, -17.026335], [86.872574, -17.016161], [86.87088, -17.006126], [86.86895, -16.996229], [86.866791, -16.986465], [86.864395, -16.976828], [86.861755, -16.967314], [86.858879, -16.95792], [86.855759, -16.948641], [86.852394, -16.939472], [86.848785, -16.93041], [86.844933, -16.921452], [86.840828, -16.91259], [86.836472, -16.903824], [86.831863, -16.895145], [86.827003, -16.886555], [86.821884, -16.878044], [86.816505, -16.86961], [86.810867, -16.861248], [86.80497, -16.852957], [86.798813, -16.844728], [86.792389, -16.836561], [86.785698, -16.828447], [86.778732, -16.820387], [86.771507, -16.812374], [86.764, -16.804403], [86.756226, -16.796473]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-27T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 48}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[82.802452, -18.499147], [82.802452, -18.499147], [82.793701, -18.492233], [82.784981, -18.485397], [82.776299, -18.478642], [82.767639, -18.471966], [82.75901, -18.46537], [82.750404, -18.45886], [82.741821, -18.452431], [82.733261, -18.446089], [82.724716, -18.439831], [82.716187, -18.433659], [82.707672, -18.427574], [82.699165, -18.421577], [82.690666, -18.41567], [82.682175, -18.409855], [82.673683, -18.404129], [82.665199, -18.398497], [82.656715, -18.392958], [82.648224, -18.387512], [82.639725, -18.38216], [82.631226, -18.376907], [82.622711, -18.37175], [82.614182, -18.36669], [82.605644, -18.361729], [82.597084, -18.356869], [82.588509, -18.35211], [82.57991, -18.347452], [82.571289, -18.342897], [82.562637, -18.338446], [82.553963, -18.334101], [82.54525, -18.329859], [82.536514, -18.325726], [82.527733, -18.321699], [82.518921, -18.317781], [82.510063, -18.313974], [82.501167, -18.310278], [82.492226, -18.306692], [82.483231, -18.303219], [82.474197, -18.299858], [82.465103, -18.296614], [82.455956, -18.293484], [82.446754, -18.29047], [82.4375, -18.287575], [82.428177, -18.284796], [82.418793, -18.282139], [82.40934, -18.2796], [82.399826, -18.277184], [82.390236, -18.274887], [82.380577, -18.272717], [82.370842, -18.270668], [82.361031, -18.268747], [82.351135, -18.266951], [82.341164, -18.265282], [82.331108, -18.263739], [82.320961, -18.262327], [82.31073, -18.261045], [82.300407, -18.259893], [82.289986, -18.258873], [82.279472, -18.257986], [82.26886, -18.257233], [82.258148, -18.256615], [82.247337, -18.256132], [82.23642, -18.255787], [82.225395, -18.255579], [82.214256, -18.255508], [82.203117, -18.255579], [82.192093, -18.255787], [82.181175, -18.256132], [82.170364, -18.256615], [82.159653, -18.257233], [82.14904, -18.257986], [82.138527, -18.258873], [82.128105, -18.259893], [82.117783, -18.261045], [82.107552, -18.262327], [82.097404, -18.263739], [82.087349, -18.265282], [82.077377, -18.266951], [82.067482, -18.268747], [82.057671, -18.270668], [82.047935, -18.272717], [82.038277, -18.274887], [82.028687, -18.277184], [82.019173, -18.2796], [82.00972, -18.282139], [82.000336, -18.284796], [81.991013, -18.287575], [81.981758, -18.29047], [81.972557, -18.293484], [81.963409, -18.296614], [81.954315, -18.299858], [81.945282, -18.303219], [81.936287, -18.306692], [81.927345, -18.310278], [81.918449, -18.313974], [81.909592, -18.317781], [81.90078, -18.321699], [81.891998, -18.325726], [81.883263, -18.329859], [81.87455, -18.334101], [81.865875, -18.338446], [81.857224, -18.342897], [81.848602, -18.347452], [81.840004, -18.35211], [81.831429, -18.356869], [81.822868, -18.361729], [81.814331, -18.36669], [81.805801, -18.37175], [81.797287, -18.376907], [81.788788, -18.38216], [81.780289, -18.387512], [81.771797, -18.392958], [81.763313, -18.398497], [81.754829, -18.404129], [81.746338, -18.409855], [81.737846, -18.41567], [81.729347, -18.421577], [81.72084, -18.427574], [81.712326, -18.433659], [81.703796, -18.439831], [81.695251, -18.446089], [81.686691, -18.452431], [81.678108, -18.45886], [81.669502, -18.46537], [81.660873, -18.471966], [81.652214, -18.478642], [81.643532, -18.485397], [81.634811, -18.492233], [81.62606, -18.499147], [81.617294, -18.506092], [81.608551, -18.513], [81.599838, -18.519876], [81.591156, -18.52672], [81.582512, -18.533533], [81.573898, -18.540321], [81.565323, -18.547087], [81.556786, -18.553829], [81.548294, -18.560555], [81.539833, -18.567261], [81.531425, -18.573956], [81.523056, -18.580637], [81.51474, -18.587311], [81.50647, -18.593977], [81.498253, -18.600641], [81.490089, -18.607302], [81.481972, -18.613964], [81.473923, -18.62063], [81.465919, -18.627302], [81.457985, -18.633984], [81.450111, -18.640675], [81.442291, -18.647381], [81.434547, -18.6541], [81.426865, -18.660841], [81.41925, -18.667601], [81.411713, -18.674385], [81.404243, -18.681194], [81.396843, -18.688032], [81.389526, -18.694902], [81.382278, -18.701803], [81.375114, -18.708742], [81.368034, -18.715719], [81.361031, -18.722736], [81.354118, -18.729797], [81.34729, -18.736904], [81.340546, -18.744059], [81.333893, -18.751265], [81.327339, -18.758524], [81.320869, -18.765839], [81.314499, -18.773212], [81.30822, -18.780647], [81.302048, -18.788143], [81.295975, -18.795708], [81.290001, -18.803339], [81.284134, -18.811041], [81.278366, -18.818815], [81.272713, -18.826666], [81.267166, -18.834597], [81.261734, -18.842606], [81.256409, -18.850698], [81.251205, -18.858877], [81.246117, -18.867144], [81.241142, -18.875502], [81.23629, -18.883953], [81.23156, -18.8925], [81.226952, -18.901144], [81.222473, -18.909889], [81.218117, -18.918737], [81.21389, -18.927691], [81.209793, -18.936752], [81.205833, -18.945925], [81.202003, -18.955212], [81.198311, -18.964611], [81.194756, -18.974131], [81.191345, -18.98377], [81.188072, -18.993534], [81.184937, -19.003422], [81.181953, -19.013437], [81.179115, -19.023584], [81.176422, -19.033865], [81.173882, -19.044279], [81.171494, -19.054832], [81.169258, -19.065527], [81.167183, -19.076363], [81.16526, -19.087345], [81.163475, -19.098343], [81.161774, -19.109304], [81.160179, -19.120228], [81.158676, -19.131115], [81.157265, -19.141966], [81.155952, -19.152779], [81.154739, -19.163555], [81.153625, -19.174295], [81.152603, -19.185001], [81.15168, -19.195669], [81.150848, -19.206301], [81.150124, -19.216896], [81.14949, -19.227457], [81.148964, -19.237982], [81.148529, -19.24847], [81.148201, -19.258924], [81.147964, -19.269344], [81.147835, -19.279728], [81.147797, -19.290075], [81.147865, -19.30039], [81.148033, -19.310669], [81.148308, -19.320913], [81.148674, -19.331123], [81.149147, -19.341299], [81.149727, -19.35144], [81.150406, -19.361549], [81.151184, -19.371622], [81.152069, -19.381662], [81.153053, -19.391668], [81.154144, -19.401642], [81.155342, -19.411581], [81.156639, -19.421488], [81.158043, -19.431362], [81.159554, -19.441202], [81.161171, -19.45101], [81.162895, -19.460785], [81.164719, -19.470528], [81.166649, -19.480236], [81.168694, -19.489914], [81.170837, -19.499559], [81.173088, -19.509172], [81.175453, -19.518755], [81.177925, -19.528305], [81.180504, -19.537823], [81.183189, -19.54731], [81.185982, -19.556765], [81.188889, -19.566191], [81.191902, -19.575583], [81.195023, -19.584946], [81.198257, -19.594276], [81.201607, -19.603577], [81.205063, -19.612848], [81.208626, -19.622087], [81.212303, -19.631298], [81.216095, -19.640476], [81.220001, -19.649626], [81.224014, -19.658745], [81.228142, -19.667835], [81.232376, -19.676895], [81.236732, -19.685926], [81.241203, -19.694927], [81.245781, -19.703899], [81.250481, -19.712843], [81.255287, -19.721758], [81.260216, -19.730642], [81.265251, -19.7395], [81.270409, -19.748327], [81.275681, -19.757128], [81.281075, -19.7659], [81.286575, -19.774643], [81.292198, -19.783358], [81.297935, -19.792046], [81.303795, -19.800707], [81.309769, -19.809338], [81.315865, -19.817944], [81.322075, -19.826521], [81.328407, -19.835072], [81.334854, -19.843594], [81.341423, -19.852091], [81.348114, -19.860559], [81.354919, -19.869003], [81.361847, -19.877419], [81.368896, -19.885809], [81.376068, -19.894173], [81.383362, -19.90251], [81.390778, -19.910822], [81.398247, -19.919043], [81.405754, -19.927149], [81.413292, -19.935141], [81.420853, -19.943018], [81.428452, -19.950783], [81.436081, -19.958435], [81.443748, -19.965977], [81.451439, -19.973404], [81.459167, -19.980722], [81.466934, -19.987928], [81.474724, -19.995026], [81.482552, -20.002012], [81.490417, -20.00889], [81.498306, -20.015659], [81.506241, -20.022322], [81.514206, -20.028875], [81.522202, -20.035322], [81.530235, -20.041662], [81.5383, -20.047897], [81.546402, -20.054026], [81.554543, -20.060051], [81.562714, -20.065969], [81.57093, -20.071787], [81.57917, -20.077499], [81.587456, -20.083109], [81.595772, -20.088615], [81.604126, -20.094021], [81.612518, -20.099325], [81.620949, -20.104528], [81.629417, -20.109632], [81.637924, -20.114635], [81.646469, -20.119539], [81.655045, -20.124346], [81.663666, -20.129053], [81.672325, -20.133663], [81.681015, -20.138174], [81.689751, -20.142591], [81.698524, -20.14691], [81.707344, -20.151134], [81.716194, -20.155264], [81.72509, -20.159298], [81.734024, -20.163239], [81.742996, -20.167086], [81.752007, -20.170839], [81.761063, -20.174501], [81.770157, -20.17807], [81.779297, -20.181549], [81.788475, -20.184935], [81.797691, -20.188232], [81.806953, -20.191439], [81.816261, -20.194555], [81.825607, -20.197584], [81.834991, -20.200523], [81.844421, -20.203377], [81.853897, -20.206141], [81.863411, -20.208818], [81.872978, -20.211411], [81.882576, -20.213917], [81.892227, -20.216337], [81.901917, -20.218674], [81.911659, -20.220926], [81.921432, -20.223093], [81.931259, -20.225178], [81.941132, -20.22718], [81.95105, -20.229101], [81.961006, -20.23094], [81.971016, -20.232697], [81.981064, -20.234373], [81.991165, -20.23597], [82.001312, -20.237488], [82.011497, -20.238926], [82.021736, -20.240284], [82.032021, -20.241566], [82.042358, -20.242769], [82.052734, -20.243896], [82.063164, -20.244947], [82.073639, -20.245922], [82.08416, -20.246822], [82.094727, -20.247646], [82.105347, -20.248396], [82.11602, -20.249071], [82.126732, -20.249674], [82.137497, -20.250204], [82.148315, -20.250662], [82.15918, -20.251047], [82.170097, -20.251362], [82.181061, -20.251606], [82.192078, -20.25178], [82.20314, -20.251883], [82.214256, -20.251917], [82.225372, -20.251883], [82.236435, -20.25178], [82.247452, -20.251606], [82.258415, -20.251362], [82.269333, -20.251047], [82.280197, -20.250662], [82.291016, -20.250204], [82.301781, -20.249674], [82.312492, -20.249071], [82.323166, -20.248396], [82.333786, -20.247646], [82.344353, -20.246822], [82.354874, -20.245922], [82.365349, -20.244947], [82.375778, -20.243896], [82.386154, -20.242769], [82.396492, -20.241566], [82.406776, -20.240284], [82.417015, -20.238926], [82.4272, -20.237488], [82.437347, -20.23597], [82.447449, -20.234373], [82.457497, -20.232697], [82.467506, -20.23094], [82.477463, -20.229101], [82.487381, -20.22718], [82.497253, -20.225178], [82.507072, -20.223093], [82.516853, -20.220926], [82.526596, -20.218674], [82.536285, -20.216337], [82.545937, -20.213917], [82.555534, -20.211411], [82.565102, -20.208818], [82.574615, -20.206141], [82.584091, -20.203377], [82.593521, -20.200523], [82.602905, -20.197584], [82.612251, -20.194555], [82.621559, -20.191439], [82.630821, -20.188232], [82.640038, -20.184935], [82.649216, -20.181549], [82.658356, -20.17807], [82.66745, -20.174501], [82.676506, -20.170839], [82.685516, -20.167086], [82.694489, -20.163239], [82.703423, -20.159298], [82.712318, -20.155264], [82.721169, -20.151134], [82.729988, -20.14691], [82.738762, -20.142591], [82.747498, -20.138174], [82.756187, -20.133663], [82.764847, -20.129053], [82.773468, -20.124346], [82.782043, -20.119539], [82.790588, -20.114635], [82.799095, -20.109632], [82.807564, -20.104528], [82.815994, -20.099325], [82.824387, -20.094021], [82.832741, -20.088615], [82.841057, -20.083109], [82.849342, -20.077499], [82.857582, -20.071787], [82.865799, -20.065969], [82.87397, -20.060051], [82.882111, -20.054026], [82.890213, -20.047897], [82.898277, -20.041662], [82.906311, -20.035322], [82.914307, -20.028875], [82.922272, -20.022322], [82.930206, -20.015659], [82.938095, -20.00889], [82.945961, -20.002012], [82.953789, -19.995026], [82.961578, -19.987928], [82.969345, -19.980722], [82.977074, -19.973404], [82.984764, -19.965977], [82.992432, -19.958435], [83.000061, -19.950783], [83.00766, -19.943018], [83.015221, -19.935141], [83.022758, -19.927149], [83.030266, -19.919043], [83.037735, -19.910822], [83.045151, -19.90251], [83.052444, -19.894173], [83.059616, -19.885809], [83.066666, -19.877419], [83.073593, -19.869003], [83.080399, -19.860559], [83.08709, -19.852091], [83.093658, -19.843594], [83.100105, -19.835072], [83.106438, -19.826521], [83.112648, -19.817944], [83.118744, -19.809338], [83.124718, -19.800705], [83.130577, -19.792046], [83.136314, -19.783358], [83.141937, -19.774643], [83.147438, -19.7659], [83.152832, -19.757128], [83.158104, -19.748327], [83.163261, -19.7395], [83.168297, -19.730642], [83.173225, -19.721758], [83.178032, -19.712843], [83.182732, -19.703899], [83.187309, -19.694927], [83.19178, -19.685926], [83.196136, -19.676895], [83.200371, -19.667835], [83.204498, -19.658745], [83.208511, -19.649626], [83.212418, -19.640476], [83.216209, -19.631298], [83.219887, -19.622087], [83.22345, -19.612848], [83.226906, -19.603577], [83.230255, -19.594276], [83.23349, -19.584946], [83.23661, -19.575583], [83.239624, -19.566191], [83.242531, -19.556765], [83.245323, -19.54731], [83.248009, -19.537823], [83.250587, -19.528305], [83.253059, -19.518755], [83.255424, -19.509172], [83.257675, -19.499559], [83.259819, -19.489914], [83.261864, -19.480236], [83.263794, -19.470526], [83.265617, -19.460785], [83.267342, -19.45101], [83.268959, -19.441202], [83.27047, -19.431362], [83.271873, -19.421488], [83.27317, -19.411581], [83.274368, -19.401642], [83.275459, -19.391668], [83.276443, -19.381662], [83.277328, -19.371622], [83.278107, -19.361549], [83.278786, -19.35144], [83.279366, -19.341299], [83.279839, -19.331123], [83.280205, -19.320913], [83.280479, -19.310669], [83.280647, -19.30039], [83.280716, -19.290075], [83.280678, -19.279728], [83.280548, -19.269344], [83.280312, -19.258924], [83.279984, -19.24847], [83.279549, -19.237982], [83.279022, -19.227457], [83.278389, -19.216896], [83.277664, -19.206301], [83.276833, -19.195669], [83.275909, -19.185001], [83.274887, -19.174295], [83.273773, -19.163555], [83.27256, -19.152779], [83.271248, -19.141966], [83.269836, -19.131115], [83.268333, -19.120228], [83.266739, -19.109304], [83.265038, -19.098343], [83.263252, -19.087345], [83.26133, -19.076363], [83.259254, -19.065527], [83.257019, -19.054832], [83.254631, -19.044279], [83.25209, -19.033865], [83.249397, -19.023584], [83.246559, -19.013437], [83.243576, -19.003422], [83.24044, -18.993534], [83.237167, -18.98377], [83.233757, -18.974131], [83.230202, -18.964611], [83.226509, -18.955212], [83.222679, -18.945925], [83.218719, -18.936752], [83.214622, -18.927691], [83.210396, -18.918737], [83.206039, -18.909889], [83.201561, -18.901144], [83.196953, -18.8925], [83.192223, -18.883953], [83.18737, -18.875502], [83.182396, -18.867144], [83.177307, -18.858877], [83.172104, -18.850698], [83.166779, -18.842606], [83.161346, -18.834597], [83.1558, -18.826666], [83.150146, -18.818815], [83.144379, -18.811041], [83.138512, -18.803339], [83.132538, -18.795708], [83.126465, -18.788143], [83.120293, -18.780647], [83.114014, -18.773212], [83.107643, -18.765839], [83.101173, -18.758524], [83.09462, -18.751265], [83.087967, -18.744059], [83.081223, -18.736904], [83.074394, -18.729797], [83.067482, -18.722736], [83.060478, -18.715719], [83.053398, -18.708742], [83.046234, -18.701803], [83.038986, -18.694902], [83.03167, -18.688032], [83.024269, -18.681194], [83.0168, -18.674385], [83.009262, -18.667601], [83.001648, -18.660841], [82.993965, -18.6541], [82.986221, -18.647381], [82.978401, -18.640675], [82.970528, -18.633984], [82.962593, -18.627302], [82.95459, -18.62063], [82.946541, -18.613964], [82.938423, -18.607302], [82.93026, -18.600641], [82.922043, -18.593977], [82.913773, -18.587311], [82.905457, -18.580637], [82.897087, -18.573956], [82.88868, -18.567261], [82.880219, -18.560555], [82.871727, -18.553829], [82.86319, -18.547087], [82.854614, -18.540321], [82.846001, -18.533533], [82.837357, -18.52672], [82.828674, -18.519876], [82.819962, -18.513], [82.811218, -18.506092], [82.802452, -18.499147]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"48kt\", \"ne\": 34, \"se\": 39, \"sw\": 39, \"nw\": 34, \"validDateTime\": \"2024-01-27T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 48}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[82.567177, -18.734426], [82.567177, -18.734426], [82.558701, -18.727484], [82.550262, -18.720684], [82.541862, -18.714031], [82.533485, -18.707527], [82.525131, -18.701174], [82.516792, -18.694973], [82.508461, -18.688927], [82.500145, -18.683037], [82.491821, -18.677305], [82.48349, -18.671732], [82.475151, -18.666321], [82.466797, -18.661074], [82.45842, -18.655993], [82.450012, -18.651079], [82.441566, -18.646336], [82.433083, -18.641764], [82.424561, -18.637363], [82.415985, -18.633139], [82.407349, -18.629091], [82.398651, -18.625223], [82.389893, -18.621534], [82.381058, -18.618031], [82.372139, -18.61471], [82.363144, -18.611576], [82.354057, -18.608631], [82.344872, -18.605875], [82.335587, -18.603313], [82.326195, -18.600945], [82.316696, -18.598772], [82.307076, -18.596798], [82.297325, -18.595022], [82.287453, -18.593449], [82.277443, -18.592079], [82.267296, -18.590916], [82.257004, -18.589958], [82.246559, -18.589211], [82.235954, -18.588675], [82.225189, -18.588352], [82.214256, -18.588243], [82.203323, -18.588352], [82.192558, -18.588675], [82.181953, -18.589211], [82.171509, -18.589958], [82.161217, -18.590916], [82.15107, -18.592079], [82.14106, -18.593449], [82.131187, -18.595022], [82.121437, -18.596798], [82.111816, -18.598772], [82.102318, -18.600945], [82.092926, -18.603313], [82.083641, -18.605875], [82.074455, -18.608631], [82.065369, -18.611576], [82.056374, -18.61471], [82.047455, -18.618031], [82.03862, -18.621534], [82.029861, -18.625223], [82.021164, -18.629091], [82.012527, -18.633139], [82.003952, -18.637363], [81.99543, -18.641764], [81.986946, -18.646336], [81.9785, -18.651079], [81.970093, -18.655993], [81.961716, -18.661074], [81.953362, -18.666321], [81.945023, -18.671732], [81.936691, -18.677305], [81.928368, -18.683037], [81.920052, -18.688927], [81.91172, -18.694973], [81.903381, -18.701174], [81.895027, -18.707527], [81.88665, -18.714031], [81.87825, -18.720684], [81.869812, -18.727484], [81.861336, -18.734426], [81.852821, -18.741459], [81.844383, -18.748453], [81.836021, -18.755411], [81.827744, -18.762342], [81.81955, -18.769253], [81.81144, -18.776146], [81.803421, -18.783031], [81.795509, -18.789913], [81.787689, -18.796797], [81.779976, -18.80369], [81.772377, -18.810598], [81.764885, -18.817528], [81.757515, -18.824486], [81.750267, -18.831476], [81.743149, -18.838507], [81.736153, -18.845583], [81.729294, -18.852713], [81.722572, -18.8599], [81.715988, -18.867151], [81.709557, -18.874474], [81.703278, -18.88187], [81.697151, -18.889353], [81.691177, -18.896923], [81.685371, -18.904589], [81.679733, -18.912355], [81.674263, -18.920229], [81.668968, -18.928217], [81.663857, -18.936325], [81.65892, -18.944557], [81.654182, -18.952923], [81.649628, -18.961428], [81.645271, -18.970074], [81.641113, -18.978872], [81.637154, -18.987827], [81.633408, -18.996946], [81.629875, -19.006233], [81.626556, -19.015694], [81.623459, -19.025337], [81.62059, -19.035168], [81.617943, -19.045191], [81.615532, -19.055414], [81.61335, -19.065844], [81.61142, -19.076487], [81.609726, -19.087345], [81.608215, -19.098429], [81.606865, -19.109444], [81.605667, -19.120388], [81.604637, -19.131262], [81.60376, -19.142067], [81.60305, -19.152803], [81.602501, -19.163473], [81.602119, -19.174076], [81.601906, -19.18461], [81.601852, -19.19508], [81.601974, -19.205484], [81.602264, -19.215822], [81.60273, -19.226097], [81.603355, -19.236307], [81.604164, -19.246454], [81.605148, -19.256538], [81.6063, -19.266562], [81.607635, -19.276522], [81.609154, -19.286423], [81.610847, -19.296263], [81.612717, -19.306042], [81.614777, -19.315763], [81.617012, -19.325424], [81.619438, -19.335028], [81.622047, -19.344574], [81.624847, -19.354063], [81.627831, -19.363497], [81.631004, -19.372873], [81.634369, -19.382195], [81.637932, -19.391462], [81.641685, -19.400675], [81.64563, -19.409834], [81.649773, -19.418941], [81.654114, -19.427996], [81.658646, -19.436996], [81.663383, -19.445948], [81.668327, -19.454849], [81.673462, -19.463699], [81.67881, -19.4725], [81.684357, -19.481251], [81.690109, -19.489954], [81.696068, -19.49861], [81.70224, -19.507217], [81.708618, -19.515778], [81.71521, -19.524294], [81.722008, -19.532763], [81.729027, -19.541187], [81.736252, -19.549566], [81.743698, -19.557903], [81.751282, -19.566118], [81.758911, -19.574133], [81.766602, -19.581947], [81.774345, -19.589563], [81.782143, -19.596983], [81.789993, -19.604208], [81.797905, -19.61124], [81.805878, -19.61808], [81.813904, -19.624731], [81.821991, -19.631191], [81.830139, -19.637466], [81.838348, -19.643555], [81.846619, -19.64946], [81.85495, -19.655182], [81.863342, -19.660723], [81.871803, -19.666084], [81.880333, -19.671268], [81.888916, -19.676277], [81.897575, -19.68111], [81.906296, -19.68577], [81.915092, -19.690258], [81.92395, -19.694576], [81.932884, -19.698727], [81.941879, -19.702709], [81.950951, -19.706528], [81.960091, -19.71018], [81.969307, -19.713673], [81.9786, -19.717003], [81.987961, -19.720175], [81.997398, -19.723188], [82.006912, -19.726046], [82.016502, -19.72875], [82.026169, -19.7313], [82.035912, -19.7337], [82.045738, -19.735949], [82.055641, -19.738049], [82.06562, -19.740002], [82.075684, -19.741812], [82.085831, -19.743477], [82.096062, -19.744999], [82.106377, -19.746382], [82.116768, -19.747625], [82.127251, -19.748732], [82.137817, -19.749701], [82.148476, -19.750536], [82.15921, -19.75124], [82.170044, -19.75181], [82.180962, -19.752253], [82.191971, -19.752565], [82.203064, -19.752752], [82.214256, -19.752815], [82.225449, -19.752752], [82.236542, -19.752565], [82.247551, -19.752253], [82.258469, -19.75181], [82.269302, -19.75124], [82.280037, -19.750536], [82.290695, -19.749701], [82.301262, -19.748732], [82.311745, -19.747625], [82.322136, -19.746382], [82.332451, -19.744999], [82.342682, -19.743477], [82.352829, -19.741812], [82.362892, -19.740002], [82.372871, -19.738049], [82.382774, -19.735949], [82.392601, -19.7337], [82.402344, -19.7313], [82.41201, -19.72875], [82.4216, -19.726046], [82.431114, -19.723188], [82.440552, -19.720175], [82.449913, -19.717003], [82.459206, -19.713673], [82.468422, -19.71018], [82.477562, -19.706528], [82.486633, -19.702709], [82.495628, -19.698727], [82.504562, -19.694576], [82.51342, -19.690258], [82.522217, -19.68577], [82.530937, -19.68111], [82.539597, -19.676277], [82.54818, -19.671268], [82.556709, -19.666084], [82.56517, -19.660723], [82.573563, -19.655182], [82.581894, -19.64946], [82.590164, -19.643555], [82.598373, -19.637466], [82.606522, -19.631191], [82.614609, -19.624731], [82.622635, -19.61808], [82.630608, -19.61124], [82.638519, -19.604208], [82.64637, -19.596983], [82.654167, -19.589563], [82.661911, -19.581947], [82.669601, -19.574133], [82.677231, -19.566118], [82.684814, -19.557903], [82.692261, -19.549566], [82.699486, -19.541187], [82.706505, -19.532763], [82.713303, -19.524294], [82.719894, -19.515778], [82.726273, -19.507217], [82.732445, -19.49861], [82.738403, -19.489954], [82.744156, -19.481251], [82.749702, -19.4725], [82.755051, -19.463699], [82.760185, -19.454849], [82.765129, -19.445948], [82.769867, -19.436996], [82.774399, -19.427996], [82.77874, -19.418941], [82.782883, -19.409834], [82.786827, -19.400675], [82.790581, -19.391462], [82.794144, -19.382195], [82.797508, -19.372873], [82.800682, -19.363497], [82.803665, -19.354063], [82.806465, -19.344574], [82.809074, -19.335028], [82.811501, -19.325424], [82.813736, -19.315763], [82.815796, -19.306042], [82.817665, -19.296263], [82.819359, -19.286423], [82.820877, -19.276522], [82.822212, -19.266562], [82.823364, -19.256538], [82.824348, -19.246454], [82.825157, -19.236307], [82.825783, -19.226097], [82.826248, -19.215822], [82.826538, -19.205484], [82.82666, -19.19508], [82.826607, -19.18461], [82.826393, -19.174076], [82.826012, -19.163473], [82.825462, -19.152803], [82.824753, -19.142067], [82.823875, -19.131262], [82.822845, -19.120388], [82.821648, -19.109444], [82.820297, -19.098431], [82.818787, -19.087345], [82.817093, -19.076487], [82.815163, -19.065844], [82.812981, -19.055414], [82.81057, -19.045191], [82.807922, -19.035168], [82.805054, -19.025337], [82.801956, -19.015694], [82.798637, -19.006233], [82.795105, -18.996946], [82.791359, -18.987827], [82.787399, -18.978872], [82.783241, -18.970076], [82.778885, -18.961428], [82.77433, -18.952923], [82.769592, -18.944557], [82.764656, -18.936325], [82.759544, -18.928217], [82.75425, -18.920229], [82.748779, -18.912355], [82.743141, -18.904589], [82.737335, -18.896923], [82.731361, -18.889353], [82.725235, -18.88187], [82.718956, -18.874474], [82.712524, -18.867151], [82.70594, -18.8599], [82.699219, -18.852713], [82.69236, -18.845583], [82.685364, -18.838507], [82.678246, -18.831476], [82.670998, -18.824486], [82.663628, -18.817528], [82.656136, -18.810598], [82.648537, -18.80369], [82.640823, -18.796797], [82.633003, -18.789913], [82.625092, -18.783031], [82.617073, -18.776146], [82.608963, -18.769253], [82.600769, -18.762342], [82.592491, -18.755411], [82.584129, -18.748453], [82.575691, -18.741459], [82.567177, -18.734426]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 24, \"se\": 24, \"sw\": 24, \"nw\": 24, \"validDateTime\": \"2024-01-27T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 48}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[82.508354, -18.793247], [82.508354, -18.793247], [82.50042, -18.785471], [82.492455, -18.777969], [82.484436, -18.770739], [82.476379, -18.763779], [82.468269, -18.757086], [82.460098, -18.75066], [82.451874, -18.744499], [82.443581, -18.738602], [82.435219, -18.732965], [82.426781, -18.727589], [82.418274, -18.722471], [82.409683, -18.717607], [82.401001, -18.712999], [82.392235, -18.708645], [82.383377, -18.704538], [82.37442, -18.700684], [82.365356, -18.697075], [82.356186, -18.693712], [82.346909, -18.690592], [82.337517, -18.687716], [82.328003, -18.685078], [82.318359, -18.68268], [82.308594, -18.680517], [82.298698, -18.678591], [82.288666, -18.676897], [82.278488, -18.675436], [82.268173, -18.674204], [82.257706, -18.673199], [82.247086, -18.672421], [82.236305, -18.671867], [82.225365, -18.671537], [82.214256, -18.671427], [82.203148, -18.671537], [82.192207, -18.671867], [82.181427, -18.672421], [82.170807, -18.673199], [82.160339, -18.674204], [82.150024, -18.675436], [82.139847, -18.676897], [82.129814, -18.678591], [82.119919, -18.680517], [82.110153, -18.68268], [82.10051, -18.685078], [82.090996, -18.687716], [82.081604, -18.690592], [82.072327, -18.693712], [82.063156, -18.697075], [82.054092, -18.700684], [82.045135, -18.704538], [82.036278, -18.708645], [82.027512, -18.712999], [82.018829, -18.717607], [82.010239, -18.722471], [82.001732, -18.727589], [81.993294, -18.732965], [81.984932, -18.738602], [81.976639, -18.744499], [81.968414, -18.75066], [81.960243, -18.757086], [81.952133, -18.763779], [81.944077, -18.770739], [81.936058, -18.777969], [81.928093, -18.785471], [81.920158, -18.793247], [81.912384, -18.801178], [81.904877, -18.809149], [81.897652, -18.817162], [81.890686, -18.825222], [81.883995, -18.833336], [81.877571, -18.841503], [81.871414, -18.849731], [81.865517, -18.858023], [81.859879, -18.866385], [81.8545, -18.874819], [81.84938, -18.883329], [81.844521, -18.89192], [81.839912, -18.900599], [81.835556, -18.909365], [81.831451, -18.918226], [81.827599, -18.927185], [81.82399, -18.936247], [81.820625, -18.945415], [81.817505, -18.954695], [81.814629, -18.964088], [81.811989, -18.973602], [81.809593, -18.98324], [81.807434, -18.993004], [81.805504, -19.002901], [81.80381, -19.012936], [81.802345, -19.023109], [81.801117, -19.033428], [81.80011, -19.043898], [81.799332, -19.054518], [81.798782, -19.065298], [81.798447, -19.076239], [81.79834, -19.087345], [81.798447, -19.098452], [81.798782, -19.109392], [81.799332, -19.120173], [81.80011, -19.130793], [81.801117, -19.141262], [81.802345, -19.151581], [81.80381, -19.161755], [81.805504, -19.171789], [81.807434, -19.181686], [81.809593, -19.19145], [81.811989, -19.201088], [81.814629, -19.210602], [81.817505, -19.219995], [81.820625, -19.229275], [81.82399, -19.238443], [81.827599, -19.247505], [81.831451, -19.256464], [81.835556, -19.265326], [81.839912, -19.274092], [81.844521, -19.28277], [81.84938, -19.291361], [81.8545, -19.299871], [81.859879, -19.308306], [81.865517, -19.316668], [81.871414, -19.324959], [81.877571, -19.333187], [81.883995, -19.341354], [81.890686, -19.349468], [81.897652, -19.357529], [81.904877, -19.365541], [81.912384, -19.373512], [81.920158, -19.381443], [81.928093, -19.389219], [81.936058, -19.396721], [81.944077, -19.403952], [81.952133, -19.410912], [81.960243, -19.417604], [81.968414, -19.42403], [81.976639, -19.430191], [81.984932, -19.436089], [81.993294, -19.441725], [82.001732, -19.447102], [82.010239, -19.452219], [82.018829, -19.457083], [82.027512, -19.461691], [82.036278, -19.466045], [82.045135, -19.470152], [82.054092, -19.474007], [82.063156, -19.477615], [82.072327, -19.480978], [82.081604, -19.484098], [82.090996, -19.486975], [82.10051, -19.489613], [82.110153, -19.49201], [82.119919, -19.494173], [82.129814, -19.496099], [82.139847, -19.497793], [82.150024, -19.499254], [82.160339, -19.500486], [82.170807, -19.501492], [82.181427, -19.50227], [82.192207, -19.502823], [82.203148, -19.503153], [82.214256, -19.503263], [82.225365, -19.503153], [82.236305, -19.502823], [82.247086, -19.50227], [82.257706, -19.501492], [82.268173, -19.500486], [82.278488, -19.499254], [82.288666, -19.497793], [82.298698, -19.496099], [82.308594, -19.494173], [82.318359, -19.49201], [82.328003, -19.489613], [82.337517, -19.486975], [82.346909, -19.484098], [82.356186, -19.480978], [82.365356, -19.477615], [82.37442, -19.474007], [82.383377, -19.470152], [82.392235, -19.466045], [82.401001, -19.461691], [82.409683, -19.457083], [82.418274, -19.452219], [82.426781, -19.447102], [82.435219, -19.441725], [82.443581, -19.436089], [82.451874, -19.430191], [82.460098, -19.42403], [82.468269, -19.417604], [82.476379, -19.410912], [82.484436, -19.403952], [82.492455, -19.396721], [82.50042, -19.389219], [82.508354, -19.381443], [82.516129, -19.373512], [82.523636, -19.365541], [82.530861, -19.357529], [82.537827, -19.349468], [82.544518, -19.341354], [82.550941, -19.333187], [82.557098, -19.324959], [82.562996, -19.316668], [82.568634, -19.308306], [82.574013, -19.299871], [82.579132, -19.291361], [82.583992, -19.28277], [82.5886, -19.274092], [82.592957, -19.265326], [82.597061, -19.256464], [82.600914, -19.247505], [82.604523, -19.238443], [82.607887, -19.229275], [82.611008, -19.219995], [82.613884, -19.210602], [82.616524, -19.201088], [82.618919, -19.19145], [82.621078, -19.181686], [82.623009, -19.171789], [82.624702, -19.161755], [82.626167, -19.151581], [82.627396, -19.141262], [82.628403, -19.130793], [82.629181, -19.120173], [82.62973, -19.109392], [82.630066, -19.098452], [82.630173, -19.087345], [82.630066, -19.076239], [82.62973, -19.065298], [82.629181, -19.054518], [82.628403, -19.043898], [82.627396, -19.033428], [82.626167, -19.023109], [82.624702, -19.012936], [82.623009, -19.002901], [82.621078, -18.993004], [82.618919, -18.98324], [82.616524, -18.973602], [82.613884, -18.964088], [82.611008, -18.954695], [82.607887, -18.945415], [82.604523, -18.936247], [82.600914, -18.927185], [82.597061, -18.918226], [82.592957, -18.909365], [82.5886, -18.900599], [82.583992, -18.89192], [82.579132, -18.883329], [82.574013, -18.874819], [82.568634, -18.866385], [82.562996, -18.858023], [82.557098, -18.849731], [82.550941, -18.841503], [82.544518, -18.833336], [82.537827, -18.825222], [82.530861, -18.817162], [82.523636, -18.809149], [82.516129, -18.801178], [82.508354, -18.793247]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-28T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 72}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[77.364616, -19.669989], [77.364616, -19.669989], [77.355865, -19.663074], [77.347145, -19.656239], [77.338463, -19.649483], [77.329803, -19.642807], [77.321175, -19.636211], [77.312569, -19.629702], [77.303986, -19.623272], [77.295425, -19.61693], [77.28688, -19.610672], [77.278351, -19.6045], [77.269836, -19.598415], [77.26133, -19.592419], [77.252831, -19.586512], [77.244339, -19.580696], [77.235847, -19.57497], [77.227364, -19.569338], [77.21888, -19.563799], [77.210388, -19.558353], [77.201889, -19.553001], [77.19339, -19.547749], [77.184875, -19.542591], [77.176346, -19.537531], [77.167809, -19.53257], [77.159248, -19.52771], [77.150673, -19.522951], [77.142075, -19.518293], [77.133453, -19.513739], [77.124802, -19.509287], [77.116127, -19.504942], [77.107414, -19.5007], [77.098679, -19.496567], [77.089897, -19.49254], [77.081085, -19.488623], [77.072227, -19.484816], [77.063332, -19.481119], [77.05439, -19.477533], [77.045395, -19.47406], [77.036362, -19.470699], [77.027267, -19.467455], [77.01812, -19.464325], [77.008919, -19.461311], [76.999664, -19.458416], [76.990341, -19.455637], [76.980957, -19.45298], [76.971504, -19.450441], [76.96199, -19.448025], [76.9524, -19.445728], [76.942741, -19.443558], [76.933006, -19.441509], [76.923195, -19.439589], [76.9133, -19.437792], [76.903328, -19.436123], [76.893272, -19.43458], [76.883125, -19.433168], [76.872894, -19.431887], [76.862572, -19.430735], [76.85215, -19.429714], [76.841637, -19.428827], [76.831024, -19.428074], [76.820312, -19.427456], [76.809502, -19.426973], [76.798584, -19.426628], [76.78756, -19.42642], [76.776421, -19.42635], [76.765282, -19.426411], [76.754234, -19.426598], [76.743286, -19.426905], [76.732422, -19.427338], [76.721657, -19.427891], [76.710983, -19.428568], [76.700401, -19.429367], [76.689896, -19.430288], [76.679482, -19.431332], [76.669151, -19.432497], [76.658897, -19.433784], [76.648727, -19.435192], [76.638641, -19.436722], [76.628624, -19.438372], [76.618683, -19.440142], [76.608818, -19.442032], [76.599022, -19.444042], [76.589294, -19.446173], [76.579636, -19.448423], [76.570045, -19.450794], [76.560516, -19.453283], [76.551056, -19.455891], [76.541649, -19.458618], [76.53231, -19.461464], [76.523026, -19.464428], [76.513794, -19.46751], [76.504623, -19.470711], [76.495499, -19.474028], [76.486435, -19.477463], [76.477409, -19.481016], [76.468437, -19.484686], [76.459518, -19.488472], [76.45063, -19.492374], [76.441795, -19.496395], [76.432999, -19.50053], [76.42424, -19.504782], [76.41552, -19.509148], [76.406837, -19.513632], [76.398186, -19.518229], [76.389572, -19.522942], [76.380989, -19.527769], [76.372429, -19.532713], [76.363907, -19.537769], [76.3554, -19.54294], [76.346924, -19.548225], [76.33847, -19.553623], [76.330032, -19.559135], [76.321617, -19.56476], [76.313225, -19.570499], [76.30484, -19.576349], [76.296471, -19.582314], [76.288116, -19.58839], [76.279778, -19.594578], [76.271439, -19.600878], [76.263115, -19.60729], [76.254791, -19.613813], [76.246475, -19.620449], [76.238159, -19.627195], [76.229843, -19.63405], [76.221527, -19.641018], [76.213211, -19.648096], [76.204887, -19.655283], [76.196564, -19.66258], [76.188225, -19.669989], [76.18, -19.67738], [76.171852, -19.684765], [76.163788, -19.692146], [76.1558, -19.699524], [76.147888, -19.706903], [76.140068, -19.714283], [76.132324, -19.721664], [76.124664, -19.729053], [76.117088, -19.736446], [76.109604, -19.743849], [76.102196, -19.751261], [76.094879, -19.758684], [76.087654, -19.766123], [76.080505, -19.773575], [76.073456, -19.781044], [76.06649, -19.788532], [76.059624, -19.796041], [76.052841, -19.803574], [76.04615, -19.811129], [76.039551, -19.818708], [76.033051, -19.826317], [76.026642, -19.833956], [76.020332, -19.841623], [76.014114, -19.849325], [76.007996, -19.857061], [76.001968, -19.864834], [75.996048, -19.872644], [75.990219, -19.880493], [75.984497, -19.888386], [75.978874, -19.89632], [75.973351, -19.904301], [75.967934, -19.912327], [75.962616, -19.920401], [75.957405, -19.928528], [75.952301, -19.936705], [75.947296, -19.944935], [75.942398, -19.953222], [75.937614, -19.961567], [75.93293, -19.969969], [75.92836, -19.978434], [75.923897, -19.986959], [75.919548, -19.99555], [75.915306, -20.004206], [75.911179, -20.01293], [75.907166, -20.021725], [75.903259, -20.03059], [75.899475, -20.039528], [75.895805, -20.04854], [75.892242, -20.057631], [75.888809, -20.066797], [75.885483, -20.076046], [75.882278, -20.085375], [75.879196, -20.094788], [75.876228, -20.104286], [75.87339, -20.113873], [75.870667, -20.123547], [75.868065, -20.13331], [75.865585, -20.143167], [75.863235, -20.153118], [75.861008, -20.163166], [75.858902, -20.173309], [75.856926, -20.183554], [75.85508, -20.193899], [75.853355, -20.204346], [75.851761, -20.214897], [75.850304, -20.225555], [75.848969, -20.236322], [75.847763, -20.247198], [75.846695, -20.258186], [75.845741, -20.269217], [75.844887, -20.280186], [75.844131, -20.291092], [75.843483, -20.301939], [75.842926, -20.312727], [75.842484, -20.323454], [75.842133, -20.334124], [75.841888, -20.344736], [75.841751, -20.355291], [75.841705, -20.365791], [75.841774, -20.376236], [75.841942, -20.386625], [75.842209, -20.396961], [75.842583, -20.407244], [75.843063, -20.417475], [75.843643, -20.427652], [75.84433, -20.437782], [75.845123, -20.447861], [75.846016, -20.45789], [75.847015, -20.467869], [75.848122, -20.477802], [75.849335, -20.487688], [75.850655, -20.497526], [75.852074, -20.50732], [75.853607, -20.517071], [75.85524, -20.526775], [75.856987, -20.536438], [75.858833, -20.546057], [75.860786, -20.555634], [75.862854, -20.56517], [75.865028, -20.574667], [75.867302, -20.584124], [75.86969, -20.593542], [75.872185, -20.602922], [75.874794, -20.612265], [75.877502, -20.621571], [75.880325, -20.63084], [75.883255, -20.640076], [75.886299, -20.649277], [75.88945, -20.658445], [75.892708, -20.66758], [75.89608, -20.676683], [75.899559, -20.685755], [75.903145, -20.694796], [75.906853, -20.703806], [75.91066, -20.71279], [75.914589, -20.721743], [75.918625, -20.730669], [75.922768, -20.739569], [75.927032, -20.748444], [75.931404, -20.757292], [75.935883, -20.766115], [75.940483, -20.774916], [75.94519, -20.783693], [75.950012, -20.792448], [75.954948, -20.801182], [75.959999, -20.809893], [75.965164, -20.818586], [75.970444, -20.827259], [75.975838, -20.835915], [75.981339, -20.844551], [75.986961, -20.85317], [75.992699, -20.861774], [75.99855, -20.870363], [76.004517, -20.878937], [76.010597, -20.887495], [76.0168, -20.896042], [76.023109, -20.904575], [76.029541, -20.913097], [76.036095, -20.921608], [76.042755, -20.930109], [76.049538, -20.938601], [76.056435, -20.947083], [76.063454, -20.955557], [76.070587, -20.964024], [76.077835, -20.972504], [76.085106, -20.980898], [76.092384, -20.989204], [76.099678, -20.997421], [76.106987, -21.005552], [76.114311, -21.013594], [76.121651, -21.021547], [76.129013, -21.029413], [76.136398, -21.037189], [76.143799, -21.044876], [76.151222, -21.052475], [76.158669, -21.059984], [76.166138, -21.067404], [76.17363, -21.074734], [76.181145, -21.081974], [76.188683, -21.089125], [76.196251, -21.096184], [76.20385, -21.103155], [76.211472, -21.110033], [76.219131, -21.116821], [76.226814, -21.12352], [76.234528, -21.130127], [76.242271, -21.136642], [76.250053, -21.143064], [76.257866, -21.149397], [76.265709, -21.155638], [76.273598, -21.161787], [76.281509, -21.167843], [76.289467, -21.173807], [76.297462, -21.179678], [76.305496, -21.185457], [76.313568, -21.191141], [76.321686, -21.196735], [76.329834, -21.202234], [76.338036, -21.20764], [76.346275, -21.212952], [76.354561, -21.21817], [76.362892, -21.223295], [76.371269, -21.228325], [76.379692, -21.233261], [76.388161, -21.238102], [76.396683, -21.242847], [76.405251, -21.247499], [76.413872, -21.252056], [76.422546, -21.256517], [76.431267, -21.260883], [76.440041, -21.265154], [76.448875, -21.269327], [76.457756, -21.273405], [76.466698, -21.277388], [76.4757, -21.281273], [76.484756, -21.285063], [76.493866, -21.288755], [76.503044, -21.292351], [76.512276, -21.295849], [76.521576, -21.29925], [76.53093, -21.302553], [76.540352, -21.305758], [76.549835, -21.308867], [76.55938, -21.311876], [76.568993, -21.314789], [76.578674, -21.317602], [76.588425, -21.320316], [76.598244, -21.322931], [76.608124, -21.325449], [76.61808, -21.327868], [76.628105, -21.330185], [76.638206, -21.332405], [76.648376, -21.334524], [76.658623, -21.336544], [76.668938, -21.338463], [76.679337, -21.340282], [76.689804, -21.342001], [76.700356, -21.34362], [76.710976, -21.345137], [76.72168, -21.346554], [76.732468, -21.34787], [76.743332, -21.349083], [76.75428, -21.350195], [76.765305, -21.351206], [76.776421, -21.352116], [76.787575, -21.352942], [76.798691, -21.353699], [76.809769, -21.354385], [76.820808, -21.355001], [76.831802, -21.355547], [76.842766, -21.356022], [76.853683, -21.356422], [76.864563, -21.35675], [76.875404, -21.357002], [76.8862, -21.357182], [76.896965, -21.357283], [76.907692, -21.357307], [76.918373, -21.357256], [76.929016, -21.357124], [76.939621, -21.356915], [76.950188, -21.356625], [76.960709, -21.356255], [76.971199, -21.355803], [76.981644, -21.355267], [76.99205, -21.354649], [77.002419, -21.353947], [77.012749, -21.353161], [77.023041, -21.352287], [77.033295, -21.35133], [77.043503, -21.350283], [77.053673, -21.34915], [77.063812, -21.347927], [77.073906, -21.346615], [77.083954, -21.345211], [77.093971, -21.343718], [77.103951, -21.342131], [77.113884, -21.340452], [77.123779, -21.33868], [77.133636, -21.336813], [77.143456, -21.33485], [77.153236, -21.332792], [77.162979, -21.330637], [77.172676, -21.328384], [77.182335, -21.326033], [77.191956, -21.323582], [77.201538, -21.321032], [77.211082, -21.31838], [77.220589, -21.315628], [77.230057, -21.312773], [77.239479, -21.309813], [77.248863, -21.306751], [77.258209, -21.303583], [77.267517, -21.30031], [77.276787, -21.29693], [77.286018, -21.293442], [77.295204, -21.289846], [77.304359, -21.286142], [77.313469, -21.28233], [77.32254, -21.278404], [77.331573, -21.27437], [77.340569, -21.270222], [77.349525, -21.265961], [77.358437, -21.261587], [77.36731, -21.257099], [77.376152, -21.252495], [77.384949, -21.247774], [77.393707, -21.242937], [77.40242, -21.237982], [77.411102, -21.232908], [77.419746, -21.227716], [77.428345, -21.222403], [77.436905, -21.216969], [77.445427, -21.211414], [77.453911, -21.205736], [77.462357, -21.199934], [77.470757, -21.19401], [77.479126, -21.187958], [77.48745, -21.181782], [77.495735, -21.17548], [77.50399, -21.16905], [77.512192, -21.162491], [77.520363, -21.155804], [77.528496, -21.148987], [77.536583, -21.14204], [77.54464, -21.13496], [77.55265, -21.12775], [77.560623, -21.120405], [77.568558, -21.112928], [77.576454, -21.105316], [77.584305, -21.097569], [77.592125, -21.089684], [77.599899, -21.081663], [77.607559, -21.073584], [77.615089, -21.065466], [77.62249, -21.057314], [77.629753, -21.049124], [77.636887, -21.040895], [77.64389, -21.032633], [77.650764, -21.024332], [77.657501, -21.015997], [77.664116, -21.007624], [77.670593, -20.999214], [77.676949, -20.990768], [77.683174, -20.982286], [77.68927, -20.973768], [77.695244, -20.965216], [77.701088, -20.956625], [77.706802, -20.947998], [77.712395, -20.939337], [77.717865, -20.930639], [77.723206, -20.921906], [77.728432, -20.913136], [77.733528, -20.904329], [77.738495, -20.895489], [77.743347, -20.886612], [77.748077, -20.877701], [77.752686, -20.868753], [77.757172, -20.85977], [77.761543, -20.850752], [77.765785, -20.841698], [77.769913, -20.832609], [77.773926, -20.823484], [77.777817, -20.814325], [77.781593, -20.805132], [77.785248, -20.795902], [77.788788, -20.786638], [77.792213, -20.777338], [77.795525, -20.768005], [77.798714, -20.758636], [77.801796, -20.749233], [77.804764, -20.739794], [77.807617, -20.730322], [77.810356, -20.720814], [77.812981, -20.711273], [77.815498, -20.701696], [77.817902, -20.692085], [77.820198, -20.682442], [77.82238, -20.672762], [77.824455, -20.663048], [77.826416, -20.653301], [77.82827, -20.64352], [77.830025, -20.633703], [77.831665, -20.623854], [77.833199, -20.613972], [77.834625, -20.604053], [77.835945, -20.594103], [77.837158, -20.584118], [77.838272, -20.5741], [77.839279, -20.564049], [77.840179, -20.553963], [77.840981, -20.543842], [77.841675, -20.533691], [77.84227, -20.523504], [77.842758, -20.513287], [77.843147, -20.503033], [77.843437, -20.492748], [77.843628, -20.48243], [77.843719, -20.472078], [77.843712, -20.461693], [77.843605, -20.451275], [77.843399, -20.440825], [77.843094, -20.430342], [77.842697, -20.419825], [77.842201, -20.409275], [77.841606, -20.398693], [77.840919, -20.388079], [77.840141, -20.377432], [77.839264, -20.366753], [77.838287, -20.356041], [77.837227, -20.345297], [77.836067, -20.33452], [77.834824, -20.323713], [77.833481, -20.312872], [77.832047, -20.301998], [77.830521, -20.291094], [77.828911, -20.280157], [77.827209, -20.269188], [77.825417, -20.258186], [77.823494, -20.247204], [77.821419, -20.236368], [77.819183, -20.225674], [77.816795, -20.21512], [77.814255, -20.204706], [77.811562, -20.194426], [77.808723, -20.184278], [77.80574, -20.174263], [77.802605, -20.164375], [77.799332, -20.154612], [77.795921, -20.144972], [77.792366, -20.135452], [77.788673, -20.126053], [77.784843, -20.116766], [77.780884, -20.107594], [77.776787, -20.098532], [77.77256, -20.089579], [77.768204, -20.08073], [77.763725, -20.071985], [77.759117, -20.063341], [77.754387, -20.054794], [77.749535, -20.046343], [77.74456, -20.037985], [77.739471, -20.029718], [77.734268, -20.02154], [77.728943, -20.013447], [77.723511, -20.005438], [77.717964, -19.997507], [77.712311, -19.989656], [77.706543, -19.981882], [77.700676, -19.97418], [77.694702, -19.966549], [77.688629, -19.958984], [77.682457, -19.951488], [77.676178, -19.944054], [77.669807, -19.93668], [77.663338, -19.929365], [77.656784, -19.922106], [77.650131, -19.9149], [77.643387, -19.907745], [77.636559, -19.900639], [77.629646, -19.893578], [77.622643, -19.88656], [77.615562, -19.879583], [77.608398, -19.872644], [77.601151, -19.865744], [77.593834, -19.858873], [77.586433, -19.852036], [77.578964, -19.845226], [77.571426, -19.838442], [77.563812, -19.831682], [77.556129, -19.824942], [77.548386, -19.818222], [77.540565, -19.811516], [77.532692, -19.804825], [77.524757, -19.798143], [77.516754, -19.791471], [77.508705, -19.784805], [77.500587, -19.778143], [77.492424, -19.771482], [77.484207, -19.764818], [77.475937, -19.758152], [77.467621, -19.751478], [77.459251, -19.744797], [77.450844, -19.738102], [77.442383, -19.731396], [77.433891, -19.72467], [77.425354, -19.717928], [77.416779, -19.711163], [77.408165, -19.704374], [77.399521, -19.697561], [77.390839, -19.690718], [77.382126, -19.683842], [77.373383, -19.676933], [77.364616, -19.669989]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"48kt\", \"ne\": 34, \"se\": 39, \"sw\": 39, \"nw\": 34, \"validDateTime\": \"2024-01-28T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 72}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[77.129341, -19.905268], [77.129341, -19.905268], [77.120865, -19.898325], [77.112427, -19.891525], [77.104027, -19.884872], [77.09565, -19.878368], [77.087296, -19.872015], [77.078957, -19.865814], [77.070625, -19.859768], [77.062309, -19.853878], [77.053986, -19.848146], [77.045654, -19.842573], [77.037315, -19.837162], [77.028961, -19.831915], [77.020584, -19.826834], [77.012177, -19.82192], [77.003731, -19.817177], [76.995247, -19.812605], [76.986725, -19.808205], [76.978149, -19.80398], [76.969513, -19.799932], [76.960815, -19.796064], [76.952057, -19.792376], [76.943222, -19.788872], [76.934303, -19.785551], [76.925308, -19.782417], [76.916222, -19.779472], [76.907036, -19.776716], [76.897751, -19.774155], [76.888359, -19.771786], [76.87886, -19.769613], [76.86924, -19.767639], [76.859489, -19.765863], [76.849617, -19.76429], [76.839607, -19.76292], [76.82946, -19.761757], [76.819168, -19.760799], [76.808723, -19.760052], [76.798119, -19.759516], [76.787354, -19.759193], [76.776421, -19.759085], [76.765488, -19.759193], [76.754723, -19.759516], [76.744118, -19.760052], [76.733673, -19.760799], [76.723381, -19.761757], [76.713234, -19.76292], [76.703224, -19.76429], [76.693352, -19.765863], [76.683601, -19.767639], [76.673981, -19.769613], [76.664482, -19.771786], [76.65509, -19.774155], [76.645805, -19.776716], [76.63662, -19.779472], [76.627533, -19.782417], [76.618538, -19.785551], [76.609619, -19.788872], [76.600784, -19.792376], [76.592026, -19.796064], [76.583328, -19.799932], [76.574692, -19.80398], [76.566116, -19.808205], [76.557594, -19.812605], [76.54911, -19.817177], [76.540665, -19.82192], [76.532257, -19.826834], [76.52388, -19.831915], [76.515526, -19.837162], [76.507187, -19.842573], [76.498856, -19.848146], [76.490532, -19.853878], [76.482216, -19.859768], [76.473885, -19.865814], [76.465546, -19.872015], [76.457191, -19.878368], [76.448814, -19.884872], [76.440414, -19.891525], [76.431976, -19.898325], [76.4235, -19.905268], [76.414986, -19.9123], [76.406548, -19.919294], [76.398186, -19.926252], [76.389908, -19.933184], [76.381714, -19.940094], [76.373604, -19.946987], [76.365585, -19.953873], [76.357674, -19.960754], [76.349854, -19.967638], [76.34214, -19.974531], [76.334541, -19.98144], [76.327049, -19.988369], [76.319679, -19.995327], [76.312431, -20.002317], [76.305313, -20.009348], [76.298317, -20.016424], [76.291458, -20.023554], [76.284737, -20.030741], [76.278152, -20.037992], [76.271721, -20.045315], [76.265442, -20.052711], [76.259315, -20.060194], [76.253342, -20.067764], [76.247536, -20.07543], [76.241898, -20.083197], [76.236427, -20.09107], [76.231133, -20.099058], [76.226021, -20.107166], [76.221085, -20.115398], [76.216347, -20.123764], [76.211792, -20.132269], [76.207436, -20.140915], [76.203278, -20.149714], [76.199318, -20.158669], [76.195572, -20.167788], [76.192039, -20.177074], [76.188721, -20.186535], [76.185623, -20.196178], [76.182755, -20.206009], [76.180107, -20.216032], [76.177696, -20.226255], [76.175514, -20.236685], [76.173584, -20.247328], [76.17189, -20.258186], [76.17038, -20.26927], [76.169029, -20.280285], [76.167831, -20.291229], [76.166801, -20.302103], [76.165924, -20.312908], [76.165215, -20.323645], [76.164665, -20.334314], [76.164284, -20.344917], [76.16407, -20.355452], [76.164017, -20.365921], [76.164139, -20.376326], [76.164429, -20.386663], [76.164894, -20.396938], [76.16552, -20.407148], [76.166328, -20.417295], [76.167313, -20.42738], [76.168465, -20.437403], [76.1698, -20.447363], [76.171318, -20.457264], [76.173012, -20.467104], [76.174881, -20.476883], [76.176941, -20.486605], [76.179176, -20.496265], [76.181602, -20.505869], [76.184212, -20.515415], [76.187012, -20.524904], [76.189995, -20.534338], [76.193169, -20.543715], [76.196533, -20.553036], [76.200096, -20.562304], [76.20385, -20.571516], [76.207794, -20.580675], [76.211937, -20.589783], [76.216278, -20.598837], [76.22081, -20.607838], [76.225548, -20.616789], [76.230492, -20.62569], [76.235626, -20.634541], [76.240974, -20.643341], [76.246521, -20.652092], [76.252274, -20.660795], [76.258232, -20.669451], [76.264404, -20.678059], [76.270782, -20.686619], [76.277374, -20.695135], [76.284172, -20.703604], [76.291191, -20.712029], [76.298416, -20.720407], [76.305862, -20.728745], [76.313446, -20.736959], [76.321075, -20.744974], [76.328766, -20.752789], [76.33651, -20.760405], [76.344307, -20.767824], [76.352158, -20.775049], [76.360069, -20.782082], [76.368042, -20.788921], [76.376068, -20.795572], [76.384155, -20.802032], [76.392303, -20.808308], [76.400513, -20.814396], [76.408783, -20.820301], [76.417114, -20.826023], [76.425507, -20.831564], [76.433968, -20.836926], [76.442497, -20.84211], [76.45108, -20.847118], [76.45974, -20.851952], [76.46846, -20.856611], [76.477257, -20.861099], [76.486115, -20.865417], [76.495049, -20.869568], [76.504044, -20.87355], [76.513115, -20.877369], [76.522255, -20.881021], [76.531471, -20.884514], [76.540764, -20.887844], [76.550125, -20.891016], [76.559563, -20.89403], [76.569077, -20.896887], [76.578667, -20.899591], [76.588333, -20.902142], [76.598076, -20.904541], [76.607903, -20.90679], [76.617805, -20.90889], [76.627785, -20.910843], [76.637848, -20.912653], [76.647995, -20.914318], [76.658226, -20.91584], [76.668541, -20.917223], [76.678932, -20.918467], [76.689415, -20.919573], [76.699982, -20.920542], [76.71064, -20.921377], [76.721375, -20.922081], [76.732208, -20.922651], [76.743126, -20.923094], [76.754135, -20.923407], [76.765228, -20.923594], [76.776421, -20.923656], [76.787613, -20.923594], [76.798706, -20.923407], [76.809715, -20.923094], [76.820633, -20.922651], [76.831467, -20.922081], [76.842201, -20.921377], [76.852859, -20.920542], [76.863426, -20.919573], [76.873909, -20.918467], [76.8843, -20.917223], [76.894615, -20.91584], [76.904846, -20.914318], [76.914993, -20.912653], [76.925056, -20.910843], [76.935036, -20.90889], [76.944939, -20.90679], [76.954765, -20.904541], [76.964508, -20.902142], [76.974174, -20.899591], [76.983765, -20.896887], [76.993279, -20.89403], [77.002716, -20.891016], [77.012077, -20.887844], [77.02137, -20.884514], [77.030586, -20.881021], [77.039726, -20.877369], [77.048798, -20.87355], [77.057793, -20.869568], [77.066727, -20.865417], [77.075584, -20.861099], [77.084381, -20.856611], [77.093102, -20.851952], [77.101761, -20.847118], [77.110344, -20.84211], [77.118874, -20.836926], [77.127335, -20.831564], [77.135727, -20.826023], [77.144058, -20.820301], [77.152328, -20.814396], [77.160538, -20.808308], [77.168686, -20.802032], [77.176773, -20.795572], [77.184799, -20.788921], [77.192772, -20.782082], [77.200684, -20.775049], [77.208534, -20.767824], [77.216331, -20.760405], [77.224075, -20.752789], [77.231766, -20.744974], [77.239395, -20.736959], [77.246979, -20.728745], [77.254425, -20.720407], [77.26165, -20.712029], [77.268669, -20.703604], [77.275467, -20.695135], [77.282059, -20.686619], [77.288437, -20.678059], [77.294609, -20.669451], [77.300568, -20.660795], [77.30632, -20.652092], [77.311867, -20.643341], [77.317215, -20.634541], [77.32235, -20.62569], [77.327293, -20.616789], [77.332031, -20.607838], [77.336563, -20.598837], [77.340904, -20.589783], [77.345047, -20.580675], [77.348991, -20.571516], [77.352745, -20.562304], [77.356308, -20.553036], [77.359673, -20.543715], [77.362846, -20.534338], [77.365829, -20.524904], [77.368629, -20.515415], [77.371239, -20.505869], [77.373665, -20.496265], [77.3759, -20.486605], [77.37796, -20.476883], [77.379829, -20.467104], [77.381523, -20.457264], [77.383041, -20.447363], [77.384377, -20.437403], [77.385529, -20.42738], [77.386513, -20.417295], [77.387321, -20.407148], [77.387947, -20.396938], [77.388412, -20.386663], [77.388702, -20.376326], [77.388824, -20.365921], [77.388771, -20.355452], [77.388557, -20.344917], [77.388176, -20.334314], [77.387627, -20.323645], [77.386917, -20.312908], [77.38604, -20.302103], [77.38501, -20.291229], [77.383812, -20.280285], [77.382462, -20.269272], [77.380951, -20.258186], [77.379257, -20.247328], [77.377327, -20.236685], [77.375145, -20.226255], [77.372734, -20.216032], [77.370087, -20.206009], [77.367218, -20.196178], [77.36412, -20.186535], [77.360802, -20.177074], [77.357269, -20.167788], [77.353523, -20.158669], [77.349564, -20.149714], [77.345406, -20.140917], [77.341049, -20.132269], [77.336494, -20.123764], [77.331757, -20.115398], [77.32682, -20.107166], [77.321709, -20.099058], [77.316414, -20.09107], [77.310944, -20.083197], [77.305305, -20.07543], [77.2995, -20.067764], [77.293526, -20.060194], [77.287399, -20.052711], [77.28112, -20.045315], [77.274689, -20.037992], [77.268105, -20.030741], [77.261383, -20.023554], [77.254524, -20.016424], [77.247528, -20.009348], [77.24041, -20.002317], [77.233162, -19.995327], [77.225792, -19.988369], [77.2183, -19.98144], [77.210701, -19.974531], [77.202988, -19.967638], [77.195168, -19.960754], [77.187256, -19.953873], [77.179237, -19.946987], [77.171127, -19.940094], [77.162933, -19.933184], [77.154655, -19.926252], [77.146294, -19.919294], [77.137856, -19.9123], [77.129341, -19.905268]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 24, \"se\": 24, \"sw\": 24, \"nw\": 24, \"validDateTime\": \"2024-01-28T06:00:00Z\", \"category\": 4, \"windSpeedKnots\": 95.0, \"forecastHour\": 72}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[77.070518, -19.964088], [77.070518, -19.964088], [77.062584, -19.956312], [77.054619, -19.948811], [77.0466, -19.94158], [77.038544, -19.93462], [77.030434, -19.927927], [77.022263, -19.921501], [77.014038, -19.91534], [77.005745, -19.909443], [76.997383, -19.903807], [76.988945, -19.89843], [76.980438, -19.893312], [76.971848, -19.888449], [76.963165, -19.883841], [76.954399, -19.879486], [76.945541, -19.87538], [76.936584, -19.871525], [76.927521, -19.867916], [76.91835, -19.864553], [76.909073, -19.861433], [76.899681, -19.858557], [76.890167, -19.855919], [76.880524, -19.853521], [76.870758, -19.851358], [76.860863, -19.849432], [76.85083, -19.847738], [76.840652, -19.846277], [76.830338, -19.845045], [76.81987, -19.84404], [76.80925, -19.843262], [76.79847, -19.842709], [76.787529, -19.842379], [76.776421, -19.842268], [76.765312, -19.842379], [76.754372, -19.842709], [76.743591, -19.843262], [76.732971, -19.84404], [76.722504, -19.845045], [76.712189, -19.846277], [76.702011, -19.847738], [76.691978, -19.849432], [76.682083, -19.851358], [76.672318, -19.853521], [76.662674, -19.855919], [76.65316, -19.858557], [76.643768, -19.861433], [76.634491, -19.864553], [76.62532, -19.867916], [76.616257, -19.871525], [76.6073, -19.87538], [76.598442, -19.879486], [76.589676, -19.883841], [76.580994, -19.888449], [76.572403, -19.893312], [76.563896, -19.89843], [76.555458, -19.903807], [76.547096, -19.909443], [76.538803, -19.91534], [76.530579, -19.921501], [76.522408, -19.927927], [76.514297, -19.93462], [76.506241, -19.94158], [76.498222, -19.948811], [76.490257, -19.956312], [76.482323, -19.964088], [76.474548, -19.972019], [76.467041, -19.97999], [76.459816, -19.988003], [76.45285, -19.996063], [76.446159, -20.004177], [76.439735, -20.012344], [76.433578, -20.020573], [76.427681, -20.028864], [76.422043, -20.037226], [76.416664, -20.04566], [76.411545, -20.054171], [76.406685, -20.062761], [76.402077, -20.07144], [76.39772, -20.080206], [76.393616, -20.089067], [76.389763, -20.098026], [76.386154, -20.107088], [76.38279, -20.116257], [76.379669, -20.125536], [76.376793, -20.13493], [76.374153, -20.144444], [76.371758, -20.154081], [76.369598, -20.163845], [76.367668, -20.173742], [76.365974, -20.183777], [76.36451, -20.193951], [76.363281, -20.204269], [76.362274, -20.214739], [76.361496, -20.225359], [76.360947, -20.236139], [76.360611, -20.24708], [76.360504, -20.258186], [76.360611, -20.269293], [76.360947, -20.280233], [76.361496, -20.291014], [76.362274, -20.301634], [76.363281, -20.312103], [76.36451, -20.322422], [76.365974, -20.332596], [76.367668, -20.34263], [76.369598, -20.352528], [76.371758, -20.362291], [76.374153, -20.371929], [76.376793, -20.381443], [76.379669, -20.390837], [76.38279, -20.400116], [76.386154, -20.409285], [76.389763, -20.418346], [76.393616, -20.427305], [76.39772, -20.436167], [76.402077, -20.444933], [76.406685, -20.453611], [76.411545, -20.462202], [76.416664, -20.470713], [76.422043, -20.479147], [76.427681, -20.487509], [76.433578, -20.4958], [76.439735, -20.504028], [76.446159, -20.512196], [76.45285, -20.520309], [76.459816, -20.52837], [76.467041, -20.536383], [76.474548, -20.544353], [76.482323, -20.552284], [76.490257, -20.560061], [76.498222, -20.567562], [76.506241, -20.574793], [76.514297, -20.581753], [76.522408, -20.588446], [76.530579, -20.594872], [76.538803, -20.601032], [76.547096, -20.60693], [76.555458, -20.612566], [76.563896, -20.617943], [76.572403, -20.62306], [76.580994, -20.627924], [76.589676, -20.632532], [76.598442, -20.636887], [76.6073, -20.640993], [76.616257, -20.644848], [76.62532, -20.648457], [76.634491, -20.651819], [76.643768, -20.65494], [76.65316, -20.657816], [76.662674, -20.660454], [76.672318, -20.662851], [76.682083, -20.665014], [76.691978, -20.666941], [76.702011, -20.668634], [76.712189, -20.670095], [76.722504, -20.671328], [76.732971, -20.672333], [76.743591, -20.673111], [76.754372, -20.673664], [76.765312, -20.673994], [76.776421, -20.674105], [76.787529, -20.673994], [76.79847, -20.673664], [76.80925, -20.673111], [76.81987, -20.672333], [76.830338, -20.671328], [76.840652, -20.670095], [76.85083, -20.668634], [76.860863, -20.666941], [76.870758, -20.665014], [76.880524, -20.662851], [76.890167, -20.660454], [76.899681, -20.657816], [76.909073, -20.65494], [76.91835, -20.651819], [76.927521, -20.648457], [76.936584, -20.644848], [76.945541, -20.640993], [76.954399, -20.636887], [76.963165, -20.632532], [76.971848, -20.627924], [76.980438, -20.62306], [76.988945, -20.617943], [76.997383, -20.612566], [77.005745, -20.60693], [77.014038, -20.601032], [77.022263, -20.594872], [77.030434, -20.588446], [77.038544, -20.581753], [77.0466, -20.574793], [77.054619, -20.567562], [77.062584, -20.560061], [77.070518, -20.552284], [77.078293, -20.544353], [77.0858, -20.536383], [77.093025, -20.52837], [77.099991, -20.520309], [77.106682, -20.512196], [77.113106, -20.504028], [77.119263, -20.4958], [77.12516, -20.487509], [77.130798, -20.479147], [77.136177, -20.470713], [77.141296, -20.462202], [77.146156, -20.453611], [77.150764, -20.444933], [77.155121, -20.436167], [77.159225, -20.427305], [77.163078, -20.418346], [77.166687, -20.409285], [77.170052, -20.400116], [77.173172, -20.390837], [77.176048, -20.381443], [77.178688, -20.371929], [77.181084, -20.362291], [77.183243, -20.352528], [77.185173, -20.34263], [77.186867, -20.332596], [77.188332, -20.322422], [77.18956, -20.312103], [77.190567, -20.301634], [77.191345, -20.291014], [77.191895, -20.280233], [77.19223, -20.269293], [77.192337, -20.258186], [77.19223, -20.24708], [77.191895, -20.236139], [77.191345, -20.225359], [77.190567, -20.214739], [77.18956, -20.204269], [77.188332, -20.193951], [77.186867, -20.183777], [77.185173, -20.173742], [77.183243, -20.163845], [77.181084, -20.154081], [77.178688, -20.144444], [77.176048, -20.13493], [77.173172, -20.125536], [77.170052, -20.116257], [77.166687, -20.107088], [77.163078, -20.098026], [77.159225, -20.089067], [77.155121, -20.080206], [77.150764, -20.07144], [77.146156, -20.062761], [77.141296, -20.054171], [77.136177, -20.04566], [77.130798, -20.037226], [77.12516, -20.028864], [77.119263, -20.020573], [77.113106, -20.012344], [77.106682, -20.004177], [77.099991, -19.996063], [77.093025, -19.988003], [77.0858, -19.97999], [77.078293, -19.972019], [77.070518, -19.964088]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-29T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 85.0, \"forecastHour\": 96}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.874977, -22.80463], [71.874977, -22.80463], [71.866226, -22.797716], [71.857506, -22.79088], [71.848824, -22.784124], [71.840164, -22.777449], [71.831535, -22.770853], [71.822929, -22.764343], [71.814346, -22.757914], [71.805786, -22.751572], [71.797241, -22.745314], [71.788712, -22.739141], [71.780197, -22.733057], [71.77169, -22.72706], [71.763191, -22.721153], [71.7547, -22.715338], [71.746208, -22.709612], [71.737724, -22.703979], [71.72924, -22.698441], [71.720749, -22.692995], [71.71225, -22.687643], [71.703751, -22.68239], [71.695236, -22.677233], [71.686707, -22.672173], [71.678169, -22.667212], [71.669609, -22.662352], [71.661034, -22.657593], [71.652435, -22.652935], [71.643814, -22.64838], [71.635162, -22.643929], [71.626488, -22.639584], [71.617775, -22.635342], [71.609039, -22.631208], [71.600258, -22.627182], [71.591446, -22.623264], [71.582588, -22.619457], [71.573692, -22.615761], [71.564751, -22.612175], [71.555756, -22.608702], [71.546722, -22.605341], [71.537628, -22.602097], [71.528481, -22.598967], [71.519279, -22.595953], [71.510025, -22.593058], [71.500702, -22.590279], [71.491318, -22.587622], [71.481865, -22.585083], [71.472351, -22.582666], [71.462761, -22.58037], [71.453102, -22.578199], [71.443367, -22.576151], [71.433556, -22.57423], [71.42366, -22.572433], [71.413689, -22.570765], [71.403633, -22.569221], [71.393486, -22.56781], [71.383255, -22.566528], [71.372932, -22.565376], [71.362511, -22.564356], [71.351997, -22.563469], [71.341385, -22.562716], [71.330673, -22.562098], [71.319862, -22.561615], [71.308945, -22.56127], [71.29792, -22.561062], [71.286781, -22.560991], [71.275642, -22.561052], [71.264595, -22.561239], [71.253647, -22.561546], [71.242783, -22.561979], [71.232018, -22.562532], [71.221344, -22.56321], [71.210762, -22.564009], [71.200256, -22.56493], [71.189842, -22.565973], [71.179512, -22.567139], [71.169258, -22.568426], [71.159088, -22.569834], [71.149002, -22.571363], [71.138985, -22.573013], [71.129044, -22.574783], [71.119179, -22.576674], [71.109383, -22.578684], [71.099655, -22.580814], [71.089996, -22.583065], [71.080406, -22.585436], [71.070877, -22.587925], [71.061417, -22.590532], [71.05201, -22.59326], [71.042671, -22.596106], [71.033386, -22.59907], [71.024155, -22.602152], [71.014984, -22.605352], [71.005859, -22.608669], [70.996796, -22.612104], [70.98777, -22.615658], [70.978798, -22.619328], [70.969879, -22.623114], [70.960991, -22.627016], [70.952156, -22.631037], [70.943359, -22.635172], [70.934601, -22.639423], [70.92588, -22.643789], [70.917198, -22.648273], [70.908546, -22.65287], [70.899933, -22.657583], [70.89135, -22.662411], [70.88279, -22.667355], [70.874268, -22.672411], [70.865761, -22.677582], [70.857285, -22.682867], [70.848831, -22.688265], [70.840393, -22.693777], [70.831978, -22.699402], [70.823586, -22.705141], [70.815201, -22.710991], [70.806831, -22.716955], [70.798477, -22.723032], [70.790138, -22.729219], [70.781799, -22.735519], [70.773476, -22.741932], [70.765152, -22.748455], [70.756836, -22.755091], [70.74852, -22.761837], [70.740204, -22.768692], [70.731888, -22.77566], [70.723572, -22.782738], [70.715248, -22.789925], [70.706924, -22.797222], [70.698586, -22.80463], [70.690361, -22.812021], [70.682213, -22.819407], [70.674149, -22.826788], [70.666161, -22.834166], [70.658249, -22.841545], [70.650429, -22.848925], [70.642685, -22.856306], [70.635025, -22.863695], [70.627449, -22.871088], [70.619965, -22.87849], [70.612556, -22.885902], [70.60524, -22.893326], [70.598015, -22.900764], [70.590866, -22.908216], [70.583817, -22.915686], [70.576851, -22.923174], [70.569984, -22.930683], [70.563202, -22.938215], [70.556511, -22.94577], [70.549911, -22.95335], [70.543411, -22.960958], [70.537003, -22.968597], [70.530693, -22.976265], [70.524475, -22.983967], [70.518356, -22.991703], [70.512329, -22.999475], [70.506409, -23.007286], [70.50058, -23.015135], [70.494858, -23.023027], [70.489235, -23.030962], [70.483711, -23.038942], [70.478294, -23.046968], [70.472977, -23.055042], [70.467766, -23.063169], [70.462662, -23.071346], [70.457657, -23.079576], [70.452759, -23.087864], [70.447975, -23.096209], [70.443291, -23.10461], [70.438721, -23.113075], [70.434258, -23.121601], [70.429909, -23.130192], [70.425667, -23.138847], [70.421539, -23.147572], [70.417526, -23.156366], [70.41362, -23.165232], [70.409836, -23.17417], [70.406166, -23.183182], [70.402603, -23.192272], [70.39917, -23.201439], [70.395844, -23.210688], [70.392639, -23.220016], [70.389557, -23.229429], [70.386589, -23.238928], [70.383751, -23.248514], [70.381027, -23.258188], [70.378426, -23.267952], [70.375946, -23.277809], [70.373596, -23.28776], [70.371368, -23.297808], [70.369263, -23.307951], [70.367287, -23.318195], [70.36544, -23.328541], [70.363716, -23.338987], [70.362122, -23.349539], [70.360664, -23.360197], [70.359329, -23.370964], [70.358124, -23.38184], [70.357056, -23.392828], [70.356102, -23.403858], [70.355247, -23.414827], [70.354492, -23.425734], [70.353844, -23.436581], [70.353287, -23.447369], [70.352844, -23.458096], [70.352493, -23.468765], [70.352249, -23.479378], [70.352112, -23.489933], [70.352066, -23.500433], [70.352135, -23.510878], [70.352303, -23.521267], [70.35257, -23.531603], [70.352943, -23.541885], [70.353424, -23.552116], [70.354004, -23.562294], [70.354691, -23.572424], [70.355484, -23.582502], [70.356377, -23.592531], [70.357376, -23.60251], [70.358482, -23.612444], [70.359695, -23.62233], [70.361015, -23.632168], [70.362434, -23.641962], [70.363968, -23.651712], [70.365601, -23.661417], [70.367348, -23.67108], [70.369194, -23.680698], [70.371147, -23.690275], [70.373215, -23.699812], [70.375389, -23.709309], [70.377663, -23.718765], [70.380051, -23.728184], [70.382545, -23.737564], [70.385155, -23.746906], [70.387863, -23.756212], [70.390686, -23.765482], [70.393616, -23.774717], [70.39666, -23.783918], [70.399811, -23.793087], [70.403069, -23.802221], [70.406441, -23.811325], [70.40992, -23.820396], [70.413506, -23.829437], [70.417213, -23.838448], [70.421021, -23.847431], [70.42495, -23.856384], [70.428986, -23.865311], [70.433128, -23.87421], [70.437393, -23.883085], [70.441765, -23.891933], [70.446243, -23.900757], [70.450844, -23.909557], [70.455551, -23.918335], [70.460373, -23.92709], [70.465309, -23.935823], [70.47036, -23.944534], [70.475525, -23.953228], [70.480804, -23.961901], [70.486198, -23.970556], [70.491699, -23.979193], [70.497322, -23.987812], [70.503059, -23.996416], [70.508911, -24.005005], [70.514877, -24.013578], [70.520958, -24.022137], [70.527161, -24.030684], [70.53347, -24.039217], [70.539902, -24.047739], [70.546455, -24.05625], [70.553116, -24.064751], [70.559898, -24.073242], [70.566795, -24.081724], [70.573814, -24.090199], [70.580948, -24.098665], [70.588196, -24.107145], [70.595467, -24.11554], [70.602745, -24.123846], [70.610039, -24.132063], [70.617348, -24.140194], [70.624672, -24.148235], [70.632011, -24.156189], [70.639374, -24.164055], [70.646759, -24.171831], [70.65416, -24.179518], [70.661583, -24.187117], [70.669029, -24.194626], [70.676498, -24.202045], [70.68399, -24.209375], [70.691505, -24.216616], [70.699043, -24.223766], [70.706612, -24.230825], [70.714211, -24.237797], [70.721832, -24.244675], [70.729492, -24.251463], [70.737175, -24.258162], [70.744888, -24.264769], [70.752632, -24.271284], [70.760414, -24.277706], [70.768227, -24.284039], [70.77607, -24.290279], [70.783958, -24.296429], [70.79187, -24.302485], [70.799828, -24.308449], [70.807823, -24.31432], [70.815857, -24.320099], [70.823929, -24.325783], [70.832047, -24.331377], [70.840195, -24.336876], [70.848396, -24.342281], [70.856636, -24.347593], [70.864922, -24.352812], [70.873253, -24.357937], [70.88163, -24.362967], [70.890053, -24.367903], [70.898521, -24.372744], [70.907043, -24.377489], [70.915611, -24.382141], [70.924232, -24.386698], [70.932907, -24.391159], [70.941628, -24.395525], [70.950401, -24.399796], [70.959236, -24.403969], [70.968117, -24.408047], [70.977058, -24.412029], [70.986061, -24.415915], [70.995117, -24.419704], [71.004227, -24.423397], [71.013405, -24.426992], [71.022636, -24.43049], [71.031937, -24.433891], [71.04129, -24.437195], [71.050713, -24.440399], [71.060196, -24.443508], [71.06974, -24.446518], [71.079353, -24.44943], [71.089035, -24.452244], [71.098785, -24.454958], [71.108604, -24.457573], [71.118484, -24.460091], [71.128441, -24.462509], [71.138466, -24.464827], [71.148567, -24.467047], [71.158737, -24.469166], [71.168983, -24.471186], [71.179298, -24.473104], [71.189697, -24.474924], [71.200165, -24.476643], [71.210716, -24.478262], [71.221336, -24.479778], [71.23204, -24.481195], [71.242828, -24.482512], [71.253693, -24.483725], [71.264641, -24.484837], [71.275665, -24.485847], [71.286781, -24.486757], [71.297935, -24.487583], [71.309052, -24.48834], [71.320129, -24.489027], [71.331169, -24.489643], [71.342163, -24.490189], [71.353127, -24.490664], [71.364044, -24.491064], [71.374924, -24.491392], [71.385765, -24.491644], [71.396561, -24.491823], [71.407326, -24.491924], [71.418053, -24.491949], [71.428734, -24.491898], [71.439377, -24.491766], [71.449982, -24.491556], [71.460548, -24.491266], [71.471069, -24.490896], [71.48156, -24.490444], [71.492004, -24.489908], [71.502411, -24.48929], [71.512779, -24.488588], [71.523109, -24.487803], [71.533401, -24.486929], [71.543655, -24.485971], [71.553864, -24.484924], [71.564034, -24.483791], [71.574173, -24.482569], [71.584267, -24.481256], [71.594315, -24.479853], [71.604332, -24.478359], [71.614311, -24.476772], [71.624245, -24.475094], [71.63414, -24.473322], [71.643997, -24.471455], [71.653816, -24.469492], [71.663597, -24.467434], [71.67334, -24.465279], [71.683037, -24.463026], [71.692696, -24.460674], [71.702316, -24.458223], [71.711899, -24.455673], [71.721443, -24.453022], [71.730949, -24.45027], [71.740417, -24.447414], [71.74984, -24.444454], [71.759224, -24.441393], [71.76857, -24.438225], [71.777878, -24.434952], [71.787148, -24.431572], [71.796379, -24.428083], [71.805565, -24.424488], [71.81472, -24.420784], [71.82383, -24.416971], [71.832901, -24.413046], [71.841934, -24.409012], [71.850929, -24.404863], [71.859886, -24.400602], [71.868797, -24.396229], [71.87767, -24.391741], [71.886513, -24.387136], [71.895309, -24.382416], [71.904068, -24.377579], [71.912781, -24.372623], [71.921463, -24.36755], [71.930107, -24.362358], [71.938705, -24.357044], [71.947266, -24.35161], [71.955788, -24.346056], [71.964272, -24.340378], [71.972717, -24.334576], [71.981117, -24.328651], [71.989487, -24.322599], [71.99781, -24.316423], [72.006096, -24.310122], [72.014351, -24.303692], [72.022552, -24.297132], [72.030724, -24.290445], [72.038857, -24.283628], [72.046944, -24.276682], [72.055, -24.269602], [72.063011, -24.262392], [72.070984, -24.255047], [72.078918, -24.24757], [72.086815, -24.239958], [72.094666, -24.23221], [72.102486, -24.224325], [72.11026, -24.216305], [72.11792, -24.208225], [72.12545, -24.200108], [72.132851, -24.191956], [72.140114, -24.183765], [72.147247, -24.175537], [72.154251, -24.167274], [72.161125, -24.158974], [72.167862, -24.150639], [72.174477, -24.142265], [72.180954, -24.133856], [72.187309, -24.12541], [72.193535, -24.116928], [72.199631, -24.10841], [72.205605, -24.099857], [72.211449, -24.091267], [72.217163, -24.08264], [72.222755, -24.073978], [72.228226, -24.065281], [72.233566, -24.056547], [72.238792, -24.047777], [72.243889, -24.038971], [72.248856, -24.03013], [72.253708, -24.021254], [72.258438, -24.012342], [72.263046, -24.003395], [72.267532, -23.994411], [72.271904, -23.985394], [72.276146, -23.976339], [72.280273, -23.967251], [72.284286, -23.958126], [72.288177, -23.948967], [72.291954, -23.939774], [72.295609, -23.930544], [72.299149, -23.92128], [72.302574, -23.91198], [72.305885, -23.902647], [72.309074, -23.893278], [72.312157, -23.883875], [72.315125, -23.874435], [72.317978, -23.864964], [72.320717, -23.855455], [72.323341, -23.845915], [72.325859, -23.836338], [72.328262, -23.826727], [72.330559, -23.817083], [72.332741, -23.807404], [72.334816, -23.797689], [72.336777, -23.787943], [72.338631, -23.778162], [72.340385, -23.768345], [72.342026, -23.758495], [72.343559, -23.748613], [72.344986, -23.738695], [72.346306, -23.728745], [72.347519, -23.71876], [72.348633, -23.708742], [72.34964, -23.69869], [72.35054, -23.688604], [72.351341, -23.678484], [72.352036, -23.668333], [72.352631, -23.658146], [72.353119, -23.647928], [72.353508, -23.637674], [72.353798, -23.62739], [72.353989, -23.617071], [72.35408, -23.60672], [72.354073, -23.596334], [72.353966, -23.585917], [72.35376, -23.575466], [72.353455, -23.564983], [72.353058, -23.554466], [72.352562, -23.543917], [72.351967, -23.533335], [72.35128, -23.52272], [72.350502, -23.512074], [72.349625, -23.501394], [72.348648, -23.490683], [72.347588, -23.479939], [72.346428, -23.469162], [72.345184, -23.458355], [72.343842, -23.447514], [72.342407, -23.43664], [72.340881, -23.425735], [72.339272, -23.414799], [72.33757, -23.40383], [72.335777, -23.392828], [72.333855, -23.381845], [72.331779, -23.37101], [72.329544, -23.360315], [72.327156, -23.349762], [72.324615, -23.339348], [72.321922, -23.329067], [72.319084, -23.31892], [72.316101, -23.308905], [72.312965, -23.299017], [72.309692, -23.289253], [72.306282, -23.279613], [72.302727, -23.270094], [72.299034, -23.260695], [72.295204, -23.251408], [72.291245, -23.242235], [72.287148, -23.233173], [72.282921, -23.22422], [72.278564, -23.215372], [72.274086, -23.206627], [72.269478, -23.197983], [72.264748, -23.189436], [72.259895, -23.180984], [72.254921, -23.172626], [72.249832, -23.16436], [72.244629, -23.156181], [72.239304, -23.148088], [72.233871, -23.140079], [72.228325, -23.132149], [72.222672, -23.124298], [72.216904, -23.116524], [72.211037, -23.108822], [72.205063, -23.101191], [72.19899, -23.093626], [72.192818, -23.08613], [72.186539, -23.078695], [72.180168, -23.071321], [72.173698, -23.064007], [72.167145, -23.056747], [72.160492, -23.049541], [72.153748, -23.042387], [72.146919, -23.03528], [72.140007, -23.028219], [72.133003, -23.021202], [72.125923, -23.014225], [72.118759, -23.007286], [72.111511, -23.000385], [72.104195, -22.993515], [72.096794, -22.986677], [72.089325, -22.979868], [72.081787, -22.973083], [72.074173, -22.966324], [72.06649, -22.959583], [72.058746, -22.952864], [72.050926, -22.946157], [72.043053, -22.939466], [72.035118, -22.932785], [72.027115, -22.926113], [72.019066, -22.919447], [72.010948, -22.912785], [72.002785, -22.906124], [71.994568, -22.89946], [71.986298, -22.892794], [71.977982, -22.88612], [71.969612, -22.879438], [71.961205, -22.872744], [71.952744, -22.866037], [71.944252, -22.859312], [71.935715, -22.85257], [71.927139, -22.845804], [71.918526, -22.839016], [71.909882, -22.832203], [71.901199, -22.825359], [71.892487, -22.818483], [71.883743, -22.811575], [71.874977, -22.80463]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"48kt\", \"ne\": 36, \"se\": 39, \"sw\": 39, \"nw\": 38, \"validDateTime\": \"2024-01-29T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 85.0, \"forecastHour\": 96}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.639702, -23.039909], [71.639702, -23.039909], [71.63192, -23.032076], [71.624252, -23.024254], [71.616684, -23.016447], [71.609207, -23.008663], [71.601807, -23.000908], [71.59449, -22.993189], [71.587234, -22.98551], [71.580032, -22.97788], [71.572884, -22.970304], [71.565773, -22.96279], [71.558701, -22.955341], [71.551643, -22.947966], [71.544601, -22.94067], [71.537567, -22.93346], [71.530533, -22.926342], [71.523483, -22.919323], [71.516418, -22.912409], [71.509323, -22.905603], [71.50219, -22.898918], [71.49501, -22.892355], [71.487778, -22.885921], [71.480484, -22.879623], [71.473114, -22.87347], [71.465668, -22.867464], [71.45813, -22.861614], [71.4505, -22.855925], [71.442764, -22.850403], [71.434914, -22.845055], [71.426941, -22.839888], [71.418831, -22.834908], [71.410591, -22.830118], [71.402191, -22.825531], [71.393646, -22.821148], [71.384926, -22.816977], [71.376038, -22.813023], [71.366966, -22.809294], [71.357704, -22.805796], [71.348236, -22.802534], [71.33857, -22.799517], [71.328674, -22.796749], [71.318565, -22.794235], [71.308212, -22.791986], [71.297623, -22.790005], [71.286781, -22.788298], [71.275696, -22.786787], [71.264687, -22.785435], [71.253738, -22.784241], [71.242867, -22.783207], [71.232056, -22.782333], [71.221321, -22.781622], [71.210655, -22.781075], [71.20005, -22.780693], [71.189514, -22.780476], [71.179047, -22.780428], [71.16864, -22.780548], [71.158302, -22.780836], [71.148033, -22.781298], [71.137817, -22.781931], [71.12767, -22.782738], [71.117584, -22.783718], [71.107567, -22.784876], [71.097603, -22.786209], [71.087708, -22.787724], [71.077866, -22.789415], [71.068085, -22.79129], [71.058365, -22.793346], [71.048698, -22.795586], [71.039101, -22.79801], [71.029549, -22.800619], [71.020065, -22.803417], [71.010628, -22.806402], [71.001251, -22.809578], [70.991928, -22.812944], [70.982666, -22.816502], [70.97345, -22.820253], [70.964294, -22.824202], [70.955185, -22.828342], [70.946129, -22.832682], [70.937126, -22.837219], [70.928177, -22.841957], [70.919281, -22.846895], [70.910431, -22.852036], [70.901627, -22.85738], [70.892876, -22.862928], [70.884171, -22.868681], [70.875519, -22.874643], [70.866913, -22.880812], [70.858345, -22.88719], [70.849831, -22.89378], [70.841362, -22.900581], [70.832939, -22.907597], [70.824562, -22.914825], [70.816223, -22.92227], [70.808006, -22.929852], [70.799995, -22.937485], [70.792183, -22.945173], [70.784561, -22.952915], [70.777145, -22.960714], [70.76992, -22.968569], [70.762886, -22.976479], [70.756042, -22.984449], [70.749397, -22.992477], [70.742935, -23.000565], [70.736664, -23.008711], [70.730576, -23.01692], [70.72467, -23.025188], [70.718948, -23.033522], [70.713402, -23.041918], [70.708046, -23.050377], [70.702858, -23.058901], [70.697853, -23.067492], [70.693016, -23.076147], [70.688354, -23.084871], [70.683868, -23.093662], [70.67955, -23.102524], [70.6754, -23.111452], [70.671417, -23.120453], [70.667603, -23.129522], [70.663948, -23.138666], [70.660454, -23.147881], [70.657127, -23.157169], [70.653954, -23.166533], [70.65094, -23.175968], [70.648079, -23.185482], [70.645378, -23.195072], [70.64283, -23.204739], [70.640434, -23.214483], [70.638184, -23.224306], [70.636078, -23.234209], [70.634125, -23.244192], [70.632317, -23.254257], [70.630653, -23.264404], [70.629128, -23.274633], [70.627747, -23.284945], [70.626503, -23.295341], [70.625397, -23.305822], [70.624428, -23.316391], [70.623596, -23.327044], [70.622894, -23.337786], [70.622322, -23.348616], [70.62188, -23.359533], [70.621567, -23.370541], [70.621376, -23.381639], [70.621315, -23.392828], [70.621384, -23.404009], [70.62159, -23.415087], [70.621941, -23.426058], [70.622429, -23.436928], [70.623055, -23.447699], [70.623825, -23.458368], [70.624741, -23.468943], [70.625793, -23.47942], [70.626991, -23.489805], [70.628334, -23.500095], [70.629822, -23.510298], [70.631454, -23.520411], [70.63324, -23.530436], [70.635162, -23.540377], [70.637238, -23.550232], [70.639465, -23.560007], [70.641838, -23.5697], [70.644356, -23.579315], [70.647034, -23.588852], [70.649857, -23.598314], [70.652832, -23.607704], [70.65596, -23.61702], [70.659241, -23.626266], [70.662682, -23.635445], [70.666267, -23.644554], [70.670013, -23.653599], [70.67392, -23.66258], [70.677979, -23.671501], [70.682198, -23.680359], [70.686569, -23.689159], [70.691101, -23.697903], [70.695801, -23.706591], [70.700653, -23.715225], [70.705666, -23.723808], [70.710846, -23.732342], [70.716179, -23.740824], [70.721687, -23.749262], [70.727348, -23.757652], [70.733177, -23.766001], [70.739174, -23.774307], [70.745338, -23.782572], [70.751663, -23.7908], [70.758163, -23.79899], [70.764824, -23.807144], [70.771652, -23.815268], [70.778656, -23.823357], [70.785828, -23.831415], [70.793167, -23.839447], [70.800682, -23.847452], [70.808365, -23.855431], [70.816223, -23.863386], [70.824181, -23.871244], [70.832161, -23.878929], [70.840164, -23.886442], [70.84819, -23.893784], [70.856255, -23.900955], [70.864342, -23.907955], [70.872467, -23.914787], [70.880623, -23.92145], [70.888809, -23.927946], [70.897034, -23.934273], [70.905304, -23.940434], [70.913605, -23.94643], [70.921959, -23.952261], [70.930351, -23.957926], [70.938782, -23.963428], [70.947266, -23.968767], [70.955803, -23.973944], [70.964386, -23.978958], [70.973015, -23.983812], [70.981705, -23.988506], [70.990448, -23.99304], [70.999252, -23.997416], [71.00811, -24.001633], [71.017029, -24.005693], [71.026009, -24.009596], [71.035057, -24.013342], [71.044167, -24.016933], [71.053345, -24.02037], [71.062592, -24.023653], [71.071907, -24.026781], [71.081291, -24.029758], [71.090759, -24.032581], [71.100296, -24.035255], [71.109909, -24.037779], [71.119606, -24.040152], [71.129379, -24.042374], [71.139236, -24.044449], [71.14917, -24.046377], [71.159195, -24.048157], [71.169312, -24.049791], [71.179512, -24.051279], [71.189804, -24.052622], [71.200188, -24.05382], [71.21067, -24.054876], [71.221237, -24.055788], [71.231911, -24.056559], [71.242683, -24.057186], [71.253548, -24.057674], [71.264526, -24.058022], [71.275597, -24.058229], [71.286781, -24.058298], [71.297974, -24.058235], [71.309067, -24.058048], [71.320076, -24.057735], [71.330994, -24.057293], [71.341827, -24.056723], [71.352562, -24.056019], [71.36322, -24.055183], [71.373787, -24.054214], [71.38427, -24.053108], [71.394661, -24.051865], [71.404976, -24.050482], [71.415207, -24.04896], [71.425354, -24.047295], [71.435417, -24.045485], [71.445396, -24.043531], [71.455299, -24.041431], [71.465126, -24.039183], [71.474869, -24.036783], [71.484535, -24.034233], [71.494125, -24.031528], [71.503639, -24.028671], [71.513077, -24.025658], [71.522438, -24.022486], [71.531731, -24.019156], [71.540947, -24.015663], [71.550087, -24.012011], [71.559158, -24.008192], [71.568153, -24.00421], [71.577087, -24.000059], [71.585945, -23.995741], [71.594742, -23.991253], [71.603462, -23.986593], [71.612122, -23.98176], [71.620705, -23.976751], [71.629234, -23.971567], [71.637695, -23.966206], [71.646088, -23.960665], [71.654419, -23.954943], [71.662689, -23.949038], [71.670898, -23.942949], [71.679047, -23.936674], [71.687134, -23.930214], [71.69516, -23.923563], [71.703133, -23.916723], [71.711044, -23.909691], [71.718895, -23.902466], [71.726692, -23.895046], [71.734436, -23.88743], [71.742126, -23.879616], [71.749756, -23.871601], [71.757339, -23.863386], [71.764786, -23.855049], [71.772011, -23.84667], [71.77903, -23.838245], [71.785828, -23.829777], [71.792419, -23.82126], [71.798798, -23.8127], [71.80497, -23.804092], [71.810928, -23.795437], [71.816681, -23.786734], [71.822227, -23.777983], [71.827576, -23.769182], [71.83271, -23.760332], [71.837654, -23.751431], [71.842392, -23.742479], [71.846924, -23.733479], [71.851265, -23.724424], [71.855408, -23.715317], [71.859352, -23.706158], [71.863106, -23.696945], [71.866669, -23.687677], [71.870033, -23.678356], [71.873207, -23.66898], [71.87619, -23.659546], [71.87899, -23.650057], [71.881599, -23.640511], [71.884026, -23.630907], [71.886261, -23.621246], [71.888321, -23.611525], [71.89019, -23.601746], [71.891884, -23.591906], [71.893402, -23.582005], [71.894737, -23.572044], [71.895889, -23.562021], [71.896873, -23.551937], [71.897682, -23.54179], [71.898308, -23.53158], [71.898773, -23.521305], [71.899063, -23.510967], [71.899185, -23.500563], [71.899132, -23.490093], [71.898918, -23.479559], [71.898537, -23.468956], [71.897987, -23.458286], [71.897278, -23.44755], [71.8964, -23.436745], [71.89537, -23.425871], [71.894173, -23.414927], [71.892822, -23.403913], [71.891312, -23.392828], [71.889603, -23.381987], [71.887627, -23.371395], [71.885376, -23.361046], [71.882858, -23.350933], [71.880096, -23.341043], [71.877075, -23.331371], [71.873817, -23.321909], [71.870316, -23.312645], [71.866585, -23.303572], [71.862633, -23.294682], [71.858459, -23.285967], [71.85408, -23.277416], [71.849487, -23.269022], [71.844704, -23.260777], [71.839722, -23.252672], [71.834557, -23.244698], [71.829208, -23.236847], [71.823685, -23.229109], [71.817993, -23.221478], [71.812149, -23.213942], [71.806137, -23.206495], [71.799988, -23.199129], [71.793686, -23.191833], [71.787254, -23.184601], [71.780693, -23.177422], [71.77401, -23.17029], [71.767204, -23.163193], [71.760284, -23.156126], [71.753265, -23.149076], [71.746147, -23.14204], [71.738937, -23.135006], [71.731644, -23.127966], [71.724266, -23.120913], [71.71682, -23.113834], [71.709305, -23.106726], [71.701729, -23.099577], [71.694099, -23.092379], [71.686424, -23.085123], [71.678703, -23.077803], [71.670952, -23.070408], [71.663162, -23.062929], [71.655357, -23.055359], [71.647537, -23.047688], [71.639702, -23.039909]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"64kt\", \"ne\": 19, \"se\": 19, \"sw\": 19, \"nw\": 19, \"validDateTime\": \"2024-01-29T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 85.0, \"forecastHour\": 96}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[71.522057, -23.157549], [71.522057, -23.157549], [71.514244, -23.149923], [71.506378, -23.14263], [71.498466, -23.135664], [71.490486, -23.129025], [71.482445, -23.122707], [71.474327, -23.116713], [71.466125, -23.111034], [71.45784, -23.105671], [71.449463, -23.100622], [71.440994, -23.095882], [71.432411, -23.09145], [71.423721, -23.087322], [71.414909, -23.083498], [71.405975, -23.079973], [71.396912, -23.076744], [71.387711, -23.073811], [71.378365, -23.071169], [71.368874, -23.068817], [71.359222, -23.066751], [71.349411, -23.064968], [71.339432, -23.063467], [71.329277, -23.062246], [71.318939, -23.0613], [71.308418, -23.060627], [71.297699, -23.060226], [71.286781, -23.060093], [71.275864, -23.060226], [71.265144, -23.060627], [71.254623, -23.0613], [71.244286, -23.062246], [71.234131, -23.063467], [71.224152, -23.064968], [71.21434, -23.066751], [71.204689, -23.068817], [71.195198, -23.071169], [71.185852, -23.073811], [71.176651, -23.076744], [71.167587, -23.079973], [71.158653, -23.083498], [71.149841, -23.087322], [71.141151, -23.09145], [71.132568, -23.095882], [71.1241, -23.100622], [71.115723, -23.105671], [71.107437, -23.111034], [71.099236, -23.116713], [71.091118, -23.122707], [71.083076, -23.129025], [71.075096, -23.135664], [71.067184, -23.14263], [71.059319, -23.149923], [71.051506, -23.157549], [71.043884, -23.165363], [71.036583, -23.173225], [71.029617, -23.181141], [71.02298, -23.189119], [71.016663, -23.197163], [71.010666, -23.205282], [71.00499, -23.21348], [70.999626, -23.221764], [70.994576, -23.230141], [70.989838, -23.238617], [70.985405, -23.247196], [70.981277, -23.25589], [70.977455, -23.2647], [70.97393, -23.273634], [70.970703, -23.282698], [70.967766, -23.291899], [70.965126, -23.301245], [70.962769, -23.310738], [70.960709, -23.320387], [70.958923, -23.3302], [70.95742, -23.340179], [70.9562, -23.350334], [70.955254, -23.36067], [70.954582, -23.371195], [70.954178, -23.38191], [70.954048, -23.392828], [70.954178, -23.403746], [70.954582, -23.414461], [70.955254, -23.424986], [70.9562, -23.435322], [70.95742, -23.445477], [70.958923, -23.455456], [70.960709, -23.465269], [70.962769, -23.474918], [70.965126, -23.484411], [70.967766, -23.493757], [70.970703, -23.502958], [70.97393, -23.512022], [70.977455, -23.520956], [70.981277, -23.529766], [70.985405, -23.53846], [70.989838, -23.547039], [70.994576, -23.555515], [70.999626, -23.563892], [71.00499, -23.572176], [71.010666, -23.580374], [71.016663, -23.588493], [71.02298, -23.596537], [71.029617, -23.604515], [71.036583, -23.612431], [71.043884, -23.620293], [71.051506, -23.628107], [71.059319, -23.635733], [71.067184, -23.643026], [71.075096, -23.649992], [71.083076, -23.656631], [71.091118, -23.662949], [71.099236, -23.668943], [71.107437, -23.674622], [71.115723, -23.679985], [71.1241, -23.685034], [71.132568, -23.689774], [71.141151, -23.694206], [71.149841, -23.698334], [71.158653, -23.702158], [71.167587, -23.705683], [71.176651, -23.708912], [71.185852, -23.711845], [71.195198, -23.714487], [71.204689, -23.716839], [71.21434, -23.718904], [71.224152, -23.720688], [71.234131, -23.722189], [71.244286, -23.72341], [71.254623, -23.724356], [71.265144, -23.725029], [71.275864, -23.72543], [71.286781, -23.725563], [71.297699, -23.72543], [71.308418, -23.725029], [71.318939, -23.724356], [71.329277, -23.72341], [71.339432, -23.722189], [71.349411, -23.720688], [71.359222, -23.718904], [71.368874, -23.716839], [71.378365, -23.714487], [71.387711, -23.711845], [71.396912, -23.708912], [71.405975, -23.705683], [71.414909, -23.702158], [71.423721, -23.698334], [71.432411, -23.694206], [71.440994, -23.689774], [71.449463, -23.685034], [71.45784, -23.679985], [71.466125, -23.674622], [71.474327, -23.668943], [71.482445, -23.662949], [71.490486, -23.656631], [71.498466, -23.649992], [71.506378, -23.643026], [71.514244, -23.635733], [71.522057, -23.628107], [71.529678, -23.620293], [71.53698, -23.612431], [71.543945, -23.604515], [71.550583, -23.596537], [71.5569, -23.588493], [71.562897, -23.580374], [71.568573, -23.572176], [71.573936, -23.563892], [71.578987, -23.555515], [71.583725, -23.547039], [71.588158, -23.53846], [71.592285, -23.529766], [71.596107, -23.520956], [71.599632, -23.512022], [71.602859, -23.502958], [71.605797, -23.493757], [71.608437, -23.484411], [71.610794, -23.474918], [71.612854, -23.465269], [71.614639, -23.455456], [71.616142, -23.445477], [71.617363, -23.435322], [71.618309, -23.424986], [71.61898, -23.414461], [71.619385, -23.403746], [71.619514, -23.392828], [71.619385, -23.38191], [71.61898, -23.371195], [71.618309, -23.36067], [71.617363, -23.350334], [71.616142, -23.340179], [71.614639, -23.3302], [71.612854, -23.320387], [71.610794, -23.310738], [71.608437, -23.301245], [71.605797, -23.291899], [71.602859, -23.282698], [71.599632, -23.273634], [71.596107, -23.2647], [71.592285, -23.25589], [71.588158, -23.247196], [71.583725, -23.238617], [71.578987, -23.230141], [71.573936, -23.221764], [71.568573, -23.21348], [71.562897, -23.205282], [71.5569, -23.197163], [71.550583, -23.189119], [71.543945, -23.181141], [71.53698, -23.173225], [71.529678, -23.165363], [71.522057, -23.157549]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_RADII\", \"radiiType\": \"34kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-25T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 75.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[90.805832, -14.394163], [90.805832, -14.394163], [90.797592, -14.386686], [90.789345, -14.379306], [90.781105, -14.372019], [90.772873, -14.364828], [90.764633, -14.357733], [90.756393, -14.350732], [90.748146, -14.343827], [90.739906, -14.337018], [90.731651, -14.330304], [90.723396, -14.323686], [90.715134, -14.317163], [90.706863, -14.310736], [90.698578, -14.304405], [90.690292, -14.29817], [90.681984, -14.29203], [90.673676, -14.285988], [90.665344, -14.280041], [90.657005, -14.27419], [90.648643, -14.268435], [90.640266, -14.262777], [90.631874, -14.257215], [90.623466, -14.25175], [90.615036, -14.246381], [90.606583, -14.241109], [90.598106, -14.235933], [90.589607, -14.230854], [90.581085, -14.225872], [90.57254, -14.220987], [90.563965, -14.216199], [90.555367, -14.211509], [90.546738, -14.206914], [90.538078, -14.202417], [90.529388, -14.198018], [90.52066, -14.193716], [90.511909, -14.189511], [90.50312, -14.185404], [90.494293, -14.181395], [90.485435, -14.177482], [90.47654, -14.173668], [90.467598, -14.16995], [90.458626, -14.166332], [90.449608, -14.16281], [90.440552, -14.159388], [90.43145, -14.156063], [90.422302, -14.152836], [90.413109, -14.149707], [90.403877, -14.146676], [90.394592, -14.143744], [90.385262, -14.14091], [90.375877, -14.138175], [90.366447, -14.135538], [90.356964, -14.133], [90.347435, -14.13056], [90.337845, -14.12822], [90.328201, -14.125978], [90.318504, -14.123835], [90.308746, -14.12179], [90.298927, -14.119845], [90.289055, -14.117999], [90.279121, -14.116252], [90.269127, -14.114604], [90.259071, -14.113056], [90.248955, -14.111608], [90.23877, -14.110258], [90.228516, -14.109008], [90.218201, -14.107858], [90.207817, -14.106807], [90.197357, -14.105856], [90.186836, -14.105004], [90.176239, -14.104253], [90.165573, -14.103601], [90.154839, -14.10305], [90.14402, -14.102599], [90.133133, -14.102248], [90.122162, -14.101997], [90.111122, -14.101847], [90.099998, -14.101796], [90.088875, -14.101842], [90.077812, -14.101978], [90.066826, -14.102206], [90.055908, -14.102527], [90.045052, -14.102939], [90.034271, -14.103442], [90.023552, -14.104039], [90.012894, -14.10473], [90.002312, -14.105513], [89.991783, -14.10639], [89.981323, -14.10736], [89.970924, -14.108425], [89.960587, -14.109585], [89.95031, -14.110839], [89.940094, -14.112188], [89.929939, -14.113632], [89.919846, -14.115173], [89.909805, -14.116809], [89.899818, -14.118542], [89.8899, -14.120371], [89.880028, -14.122297], [89.870216, -14.124321], [89.860458, -14.126442], [89.850746, -14.12866], [89.841095, -14.130978], [89.831497, -14.133392], [89.821953, -14.135906], [89.812454, -14.138519], [89.803001, -14.141232], [89.79361, -14.144044], [89.784256, -14.146955], [89.774956, -14.149968], [89.765701, -14.153081], [89.756493, -14.156294], [89.74733, -14.159609], [89.738213, -14.163025], [89.729141, -14.166543], [89.720116, -14.170163], [89.711128, -14.173885], [89.702179, -14.17771], [89.693283, -14.181638], [89.684418, -14.185669], [89.675598, -14.189804], [89.666809, -14.194042], [89.658066, -14.198385], [89.649361, -14.202832], [89.640694, -14.207384], [89.632057, -14.212041], [89.623459, -14.216804], [89.614899, -14.221672], [89.606369, -14.226645], [89.59787, -14.231727], [89.589409, -14.236913], [89.580978, -14.242207], [89.572571, -14.247608], [89.564201, -14.253117], [89.555862, -14.258733], [89.547554, -14.264458], [89.539268, -14.27029], [89.531013, -14.276232], [89.522781, -14.282282], [89.51458, -14.288443], [89.506401, -14.294712], [89.498253, -14.301091], [89.49012, -14.307581], [89.482018, -14.31418], [89.47393, -14.320891], [89.465874, -14.327714], [89.457832, -14.334647], [89.449806, -14.341693], [89.441803, -14.34885], [89.433823, -14.356119], [89.425858, -14.363502], [89.417908, -14.370996], [89.409981, -14.378605], [89.402061, -14.386328], [89.394165, -14.394163], [89.38633, -14.402063], [89.378609, -14.409979], [89.371002, -14.41791], [89.363503, -14.425858], [89.356117, -14.433822], [89.348854, -14.441805], [89.341698, -14.449806], [89.334648, -14.457828], [89.327713, -14.465869], [89.320892, -14.473931], [89.314178, -14.482015], [89.307579, -14.490121], [89.301094, -14.49825], [89.294716, -14.506403], [89.288445, -14.514581], [89.28228, -14.522783], [89.27623, -14.531013], [89.270287, -14.539268], [89.264458, -14.547551], [89.258736, -14.555863], [89.253113, -14.564203], [89.247604, -14.572574], [89.242203, -14.580974], [89.236916, -14.589405], [89.231728, -14.597869], [89.226646, -14.606365], [89.221672, -14.614894], [89.216805, -14.623458], [89.212044, -14.632056], [89.207382, -14.64069], [89.202827, -14.64936], [89.198387, -14.658067], [89.194038, -14.666812], [89.189804, -14.675594], [89.185669, -14.684417], [89.181633, -14.693279], [89.177711, -14.702182], [89.173882, -14.711126], [89.170158, -14.720113], [89.166542, -14.729142], [89.163025, -14.738214], [89.159607, -14.747332], [89.156288, -14.756494], [89.153076, -14.765701], [89.149963, -14.774956], [89.14695, -14.784257], [89.144043, -14.793606], [89.141228, -14.803004], [89.138519, -14.812451], [89.135902, -14.821949], [89.133392, -14.831497], [89.130974, -14.841098], [89.128654, -14.85075], [89.126434, -14.860456], [89.124313, -14.870214], [89.122292, -14.880028], [89.120369, -14.889897], [89.118538, -14.899822], [89.116806, -14.909803], [89.115166, -14.919843], [89.113625, -14.929939], [89.112183, -14.940096], [89.110832, -14.950312], [89.109581, -14.960588], [89.108421, -14.970924], [89.107353, -14.981323], [89.106384, -14.991785], [89.105507, -15.00231], [89.104721, -15.012898], [89.104034, -15.023552], [89.103439, -15.034271], [89.102936, -15.045056], [89.102524, -15.055908], [89.102203, -15.066828], [89.101974, -15.077816], [89.101837, -15.088873], [89.101791, -15.1], [89.101845, -15.111123], [89.10199, -15.122167], [89.102242, -15.133133], [89.102592, -15.144023], [89.103043, -15.154838], [89.1036, -15.165578], [89.104248, -15.176245], [89.105003, -15.18684], [89.10585, -15.197364], [89.106804, -15.207817], [89.107849, -15.218203], [89.109001, -15.228519], [89.110252, -15.23877], [89.111603, -15.248956], [89.113052, -15.259076], [89.114601, -15.269133], [89.116249, -15.279127], [89.117996, -15.289061], [89.119843, -15.298934], [89.121788, -15.308748], [89.123833, -15.318504], [89.125977, -15.328203], [89.12822, -15.337847], [89.130554, -15.347436], [89.132996, -15.356971], [89.135536, -15.366453], [89.138168, -15.375884], [89.140907, -15.385265], [89.143738, -15.394596], [89.146675, -15.40388], [89.149704, -15.413116], [89.152832, -15.422306], [89.156059, -15.431451], [89.159386, -15.440552], [89.162811, -15.449611], [89.166328, -15.458627], [89.169945, -15.467604], [89.173668, -15.47654], [89.177483, -15.485438], [89.181389, -15.494299], [89.185402, -15.503123], [89.189507, -15.511913], [89.193718, -15.520668], [89.198013, -15.52939], [89.202415, -15.538081], [89.206917, -15.546741], [89.21151, -15.555371], [89.216202, -15.563972], [89.220985, -15.572546], [89.225868, -15.581093], [89.23085, -15.589615], [89.235931, -15.598113], [89.241112, -15.606587], [89.246384, -15.61504], [89.251747, -15.62347], [89.257217, -15.631882], [89.262779, -15.640274], [89.268433, -15.648649], [89.274193, -15.657007], [89.280045, -15.665349], [89.285988, -15.673677], [89.29203, -15.681992], [89.298172, -15.690294], [89.304405, -15.698585], [89.310738, -15.706865], [89.317162, -15.715137], [89.323685, -15.723401], [89.330307, -15.731658], [89.337021, -15.739908], [89.343826, -15.748155], [89.350731, -15.756397], [89.357735, -15.764638], [89.36483, -15.772876], [89.372025, -15.781115], [89.379311, -15.789353], [89.386688, -15.797594], [89.394165, -15.805838], [89.401703, -15.814064], [89.409241, -15.822216], [89.416779, -15.830293], [89.424324, -15.838294], [89.431862, -15.846219], [89.439407, -15.854068], [89.44696, -15.861839], [89.454514, -15.869534], [89.462082, -15.87715], [89.46965, -15.884688], [89.477234, -15.892148], [89.484825, -15.899529], [89.492424, -15.906831], [89.500038, -15.914052], [89.507668, -15.921193], [89.515312, -15.928253], [89.522972, -15.935233], [89.530647, -15.942131], [89.538345, -15.948947], [89.546059, -15.955681], [89.553802, -15.962331], [89.561562, -15.968899], [89.569344, -15.975383], [89.577148, -15.981783], [89.584976, -15.988098], [89.592834, -15.994328], [89.600723, -16.000473], [89.608635, -16.006533], [89.616585, -16.012506], [89.624557, -16.018393], [89.632568, -16.024193], [89.64061, -16.029905], [89.648689, -16.035528], [89.656799, -16.041065], [89.664955, -16.046513], [89.673141, -16.05187], [89.681366, -16.057138], [89.689636, -16.062319], [89.697945, -16.067406], [89.706299, -16.072405], [89.714699, -16.077311], [89.723145, -16.082125], [89.731628, -16.086847], [89.740166, -16.091478], [89.748749, -16.096016], [89.757385, -16.10046], [89.766075, -16.104809], [89.774811, -16.109066], [89.7836, -16.113228], [89.792442, -16.117294], [89.801346, -16.121264], [89.810303, -16.125139], [89.819321, -16.128918], [89.8284, -16.132601], [89.837532, -16.136187], [89.846725, -16.139673], [89.855988, -16.143063], [89.865311, -16.146355], [89.874702, -16.149546], [89.884155, -16.152639], [89.893677, -16.155634], [89.903267, -16.158527], [89.912926, -16.16132], [89.922653, -16.164011], [89.932457, -16.166603], [89.942329, -16.16909], [89.952278, -16.171478], [89.962303, -16.173761], [89.972404, -16.175943], [89.982582, -16.17802], [89.992836, -16.179995], [90.003174, -16.181866], [90.013596, -16.18363], [90.024094, -16.185289], [90.034676, -16.186844], [90.045349, -16.188292], [90.056099, -16.189634], [90.06694, -16.190868], [90.077873, -16.191998], [90.08889, -16.193018], [90.099998, -16.19393], [90.111153, -16.194754], [90.122261, -16.195505], [90.133331, -16.196182], [90.144356, -16.196787], [90.155334, -16.197317], [90.166275, -16.197773], [90.17717, -16.198151], [90.188026, -16.198454], [90.198837, -16.198679], [90.20961, -16.198828], [90.220337, -16.198896], [90.231026, -16.198887], [90.241669, -16.198797], [90.252274, -16.198627], [90.26284, -16.198378], [90.273361, -16.198044], [90.283844, -16.197628], [90.294281, -16.19713], [90.30468, -16.196548], [90.315041, -16.195881], [90.325356, -16.195129], [90.335632, -16.19429], [90.345871, -16.193367], [90.356064, -16.192354], [90.366219, -16.191256], [90.376343, -16.190067], [90.386414, -16.188791], [90.396454, -16.187424], [90.406456, -16.185966], [90.416412, -16.184418], [90.426331, -16.182775], [90.436211, -16.181044], [90.446053, -16.179216], [90.455856, -16.177296], [90.465622, -16.175282], [90.475349, -16.17317], [90.485039, -16.170965], [90.494682, -16.168661], [90.504295, -16.166262], [90.51387, -16.163763], [90.523407, -16.161167], [90.532906, -16.15847], [90.542366, -16.155674], [90.551788, -16.152779], [90.561172, -16.14978], [90.570518, -16.146681], [90.579834, -16.143478], [90.589104, -16.140173], [90.598343, -16.136763], [90.607544, -16.133247], [90.616707, -16.129627], [90.625839, -16.125902], [90.634926, -16.122068], [90.643982, -16.11813], [90.653008, -16.11408], [90.661987, -16.109924], [90.670937, -16.105658], [90.679855, -16.101282], [90.688728, -16.096796], [90.697571, -16.092197], [90.706383, -16.087486], [90.715149, -16.082664], [90.723892, -16.077726], [90.73259, -16.072676], [90.741257, -16.067511], [90.749893, -16.062231], [90.758492, -16.056833], [90.767059, -16.051319], [90.775589, -16.045689], [90.784088, -16.03994], [90.792549, -16.034071], [90.80098, -16.028084], [90.809372, -16.021976], [90.817741, -16.015747], [90.826065, -16.009398], [90.834366, -16.002926], [90.842628, -15.99633], [90.850861, -15.989613], [90.859055, -15.982769], [90.867218, -15.975802], [90.875351, -15.968709], [90.883453, -15.96149], [90.891525, -15.954144], [90.899559, -15.94667], [90.907562, -15.939068], [90.915535, -15.931337], [90.923477, -15.923477], [90.931335, -15.915536], [90.939072, -15.907563], [90.946671, -15.899559], [90.95414, -15.891522], [90.961487, -15.883454], [90.968712, -15.875354], [90.9758, -15.867221], [90.982765, -15.859056], [90.989609, -15.850858], [90.99633, -15.842628], [91.002922, -15.834364], [91.009399, -15.826067], [91.015747, -15.817738], [91.021973, -15.809375], [91.028084, -15.800979], [91.034073, -15.792549], [91.03994, -15.784086], [91.045685, -15.775589], [91.051315, -15.767057], [91.056831, -15.758492], [91.062225, -15.749893], [91.067513, -15.74126], [91.072678, -15.732592], [91.077728, -15.723889], [91.082664, -15.715152], [91.087486, -15.706379], [91.092194, -15.697572], [91.096794, -15.688729], [91.10128, -15.679852], [91.105659, -15.670938], [91.109924, -15.66199], [91.114082, -15.653006], [91.118126, -15.643986], [91.12207, -15.63493], [91.1259, -15.625837], [91.129623, -15.61671], [91.133247, -15.607545], [91.136757, -15.598344], [91.140167, -15.589106], [91.143478, -15.579831], [91.146675, -15.57052], [91.14978, -15.561172], [91.152779, -15.551786], [91.15567, -15.542363], [91.15847, -15.532903], [91.161163, -15.523405], [91.163757, -15.513869], [91.16626, -15.504296], [91.168655, -15.494685], [91.170959, -15.485036], [91.173164, -15.475348], [91.175278, -15.465622], [91.177292, -15.455857], [91.179214, -15.446054], [91.181038, -15.436213], [91.18277, -15.426332], [91.18441, -15.416412], [91.185959, -15.406453], [91.187416, -15.396455], [91.188789, -15.386417], [91.190063, -15.37634], [91.191254, -15.366223], [91.192352, -15.356067], [91.193359, -15.345869], [91.19429, -15.335632], [91.195122, -15.325356], [91.195877, -15.315038], [91.196541, -15.30468], [91.197128, -15.294281], [91.197624, -15.283842], [91.198036, -15.273361], [91.198372, -15.26284], [91.198624, -15.252277], [91.198792, -15.241673], [91.198883, -15.231028], [91.198891, -15.220341], [91.198822, -15.209612], [91.198677, -15.198841], [91.198448, -15.188029], [91.198143, -15.177175], [91.197769, -15.166277], [91.197311, -15.155338], [91.196785, -15.144356], [91.196175, -15.133331], [91.195496, -15.122264], [91.194748, -15.111154], [91.193924, -15.1], [91.193008, -15.088891], [91.191994, -15.077873], [91.190865, -15.066944], [91.189629, -15.056103], [91.188286, -15.045348], [91.186836, -15.034679], [91.18528, -15.024096], [91.183624, -15.013596], [91.181862, -15.003177], [91.179993, -14.99284], [91.178017, -14.982583], [91.175934, -14.972404], [91.173759, -14.962304], [91.171471, -14.952279], [91.169083, -14.94233], [91.166595, -14.932456], [91.164009, -14.922654], [91.161316, -14.912924], [91.158524, -14.903265], [91.155624, -14.893676], [91.152634, -14.884154], [91.149544, -14.8747], [91.146347, -14.865312], [91.143059, -14.855989], [91.139664, -14.846729], [91.136177, -14.837533], [91.132591, -14.828397], [91.128914, -14.819322], [91.12513, -14.810306], [91.121262, -14.801348], [91.117287, -14.792446], [91.11322, -14.783601], [91.109062, -14.77481], [91.104805, -14.766071], [91.100456, -14.757386], [91.096008, -14.748751], [91.091469, -14.740166], [91.086845, -14.731629], [91.082123, -14.723141], [91.077301, -14.714699], [91.072395, -14.706301], [91.067398, -14.697948], [91.062309, -14.689637], [91.057137, -14.681369], [91.051865, -14.673141], [91.046509, -14.664952], [91.041061, -14.656801], [91.035522, -14.648688], [91.0299, -14.640611], [91.024185, -14.632568], [91.018387, -14.624559], [91.012497, -14.616582], [91.006531, -14.608637], [91.000465, -14.600721], [90.994324, -14.592835], [90.988091, -14.584977], [90.981773, -14.577146], [90.97538, -14.569339], [90.968895, -14.561557], [90.962326, -14.553798], [90.955673, -14.546062], [90.948944, -14.538345], [90.942123, -14.530649], [90.935226, -14.522971], [90.928246, -14.515311], [90.921188, -14.507667], [90.914047, -14.500038], [90.906822, -14.492422], [90.899521, -14.48482], [90.892143, -14.477229], [90.884682, -14.469649], [90.877144, -14.462078], [90.86953, -14.454515], [90.861832, -14.446959], [90.854065, -14.439408], [90.846214, -14.431863], [90.838287, -14.42432], [90.830284, -14.41678], [90.822212, -14.409242], [90.814056, -14.401703], [90.805832, -14.394163]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_RADII\", \"radiiType\": \"48kt\", \"ne\": 40, \"se\": 40, \"sw\": 40, \"nw\": 40, \"validDateTime\": \"2024-01-25T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 75.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[90.570557, -14.629442], [90.570557, -14.629442], [90.562599, -14.621584], [90.554619, -14.613899], [90.546616, -14.606386], [90.538589, -14.599045], [90.530525, -14.591874], [90.522438, -14.584873], [90.514313, -14.578041], [90.506157, -14.571379], [90.497971, -14.564883], [90.489746, -14.558556], [90.481476, -14.552394], [90.473175, -14.546399], [90.464821, -14.540568], [90.456429, -14.534903], [90.447998, -14.529401], [90.439514, -14.524061], [90.430977, -14.518885], [90.422394, -14.513869], [90.413765, -14.509016], [90.405075, -14.504322], [90.396332, -14.499788], [90.387527, -14.495413], [90.37867, -14.491196], [90.369751, -14.487136], [90.360771, -14.483233], [90.351723, -14.479486], [90.342613, -14.475896], [90.333435, -14.472459], [90.324188, -14.469177], [90.314873, -14.466048], [90.305489, -14.463072], [90.296021, -14.460247], [90.286484, -14.457574], [90.276871, -14.455051], [90.267174, -14.452679], [90.257401, -14.450455], [90.247543, -14.44838], [90.23761, -14.446452], [90.227585, -14.444673], [90.217468, -14.443039], [90.207268, -14.44155], [90.196976, -14.440207], [90.186592, -14.439009], [90.176109, -14.437954], [90.165543, -14.437041], [90.154869, -14.436272], [90.144096, -14.435643], [90.133232, -14.435156], [90.122253, -14.434809], [90.111183, -14.434601], [90.099998, -14.434531], [90.088814, -14.434601], [90.077744, -14.434809], [90.066765, -14.435156], [90.055901, -14.435643], [90.045128, -14.436272], [90.034454, -14.437041], [90.023888, -14.437954], [90.013405, -14.439009], [90.003021, -14.440207], [89.992729, -14.44155], [89.982529, -14.443039], [89.972412, -14.444673], [89.962387, -14.446452], [89.952454, -14.44838], [89.942596, -14.450455], [89.932823, -14.452679], [89.923126, -14.455051], [89.913513, -14.457574], [89.903976, -14.460247], [89.894508, -14.463072], [89.885124, -14.466047], [89.875809, -14.469177], [89.866562, -14.472459], [89.857384, -14.475896], [89.848274, -14.479486], [89.839226, -14.483233], [89.830246, -14.487136], [89.821327, -14.491196], [89.812469, -14.495413], [89.803665, -14.499788], [89.794922, -14.504322], [89.786232, -14.509016], [89.777603, -14.513869], [89.76902, -14.518885], [89.760483, -14.524061], [89.751999, -14.529401], [89.743568, -14.534903], [89.735176, -14.540568], [89.726822, -14.546399], [89.718521, -14.552394], [89.710251, -14.558556], [89.702026, -14.564883], [89.69384, -14.571379], [89.685684, -14.578041], [89.677559, -14.584873], [89.669472, -14.591874], [89.661407, -14.599045], [89.653381, -14.606386], [89.645378, -14.613899], [89.637398, -14.621584], [89.62944, -14.629442], [89.621582, -14.637398], [89.613899, -14.645377], [89.606384, -14.653381], [89.599045, -14.661412], [89.591873, -14.669472], [89.584869, -14.677562], [89.578041, -14.685683], [89.571381, -14.693838], [89.56488, -14.702029], [89.558556, -14.710256], [89.552391, -14.718522], [89.546394, -14.726828], [89.540565, -14.735176], [89.534904, -14.743567], [89.529396, -14.752004], [89.524063, -14.760488], [89.518883, -14.76902], [89.51387, -14.777602], [89.509018, -14.786237], [89.504318, -14.794925], [89.499786, -14.803668], [89.495415, -14.812469], [89.491196, -14.821328], [89.487137, -14.830247], [89.483231, -14.839229], [89.479485, -14.848274], [89.475899, -14.857385], [89.472458, -14.866562], [89.469177, -14.875808], [89.466049, -14.885124], [89.463074, -14.894513], [89.460251, -14.903975], [89.457573, -14.913513], [89.455055, -14.923128], [89.452682, -14.932822], [89.450455, -14.942596], [89.44838, -14.952453], [89.446457, -14.962393], [89.444672, -14.972418], [89.443039, -14.982531], [89.441551, -14.992732], [89.440208, -15.003024], [89.439011, -15.013408], [89.437958, -15.023886], [89.437042, -15.03446], [89.436272, -15.045131], [89.435646, -15.0559], [89.435158, -15.06677], [89.434807, -15.077743], [89.434601, -15.088819], [89.434532, -15.1], [89.434601, -15.111182], [89.434807, -15.122258], [89.435158, -15.133231], [89.435646, -15.144101], [89.436272, -15.15487], [89.437042, -15.165541], [89.437958, -15.176115], [89.439011, -15.186593], [89.440208, -15.196977], [89.441551, -15.207269], [89.443039, -15.21747], [89.444672, -15.227583], [89.446457, -15.237608], [89.44838, -15.247548], [89.450455, -15.257404], [89.452682, -15.267179], [89.455055, -15.276873], [89.457573, -15.286488], [89.460251, -15.296025], [89.463074, -15.305488], [89.466049, -15.314877], [89.469177, -15.324193], [89.472458, -15.333439], [89.475899, -15.342616], [89.479485, -15.351727], [89.483231, -15.360772], [89.487137, -15.369754], [89.491196, -15.378673], [89.495415, -15.387532], [89.499786, -15.396333], [89.504318, -15.405076], [89.509018, -15.413764], [89.51387, -15.422399], [89.518883, -15.430981], [89.524063, -15.439513], [89.529396, -15.447997], [89.534904, -15.456433], [89.540565, -15.464825], [89.546394, -15.473173], [89.552391, -15.481479], [89.558556, -15.489745], [89.56488, -15.497972], [89.571381, -15.506163], [89.578041, -15.514318], [89.584869, -15.522439], [89.591873, -15.530529], [89.599045, -15.538589], [89.606384, -15.546619], [89.613899, -15.554624], [89.621582, -15.562603], [89.62944, -15.570559], [89.637398, -15.578417], [89.645378, -15.586102], [89.653381, -15.593615], [89.661407, -15.600956], [89.669472, -15.608127], [89.677559, -15.615128], [89.685684, -15.62196], [89.69384, -15.628622], [89.702026, -15.635118], [89.710251, -15.641445], [89.718521, -15.647607], [89.726822, -15.653602], [89.735176, -15.659432], [89.743568, -15.665098], [89.751999, -15.6706], [89.760483, -15.67594], [89.76902, -15.681116], [89.777603, -15.686131], [89.786232, -15.690985], [89.794922, -15.695679], [89.803665, -15.700212], [89.812469, -15.704588], [89.821327, -15.708805], [89.830246, -15.712865], [89.839226, -15.716767], [89.848274, -15.720514], [89.857384, -15.724105], [89.866562, -15.727542], [89.875809, -15.730824], [89.885124, -15.733953], [89.894508, -15.736929], [89.903976, -15.739754], [89.913513, -15.742427], [89.923126, -15.744949], [89.932823, -15.747322], [89.942596, -15.749546], [89.952454, -15.751621], [89.962387, -15.753549], [89.972412, -15.755328], [89.982529, -15.756962], [89.992729, -15.758451], [90.003021, -15.759793], [90.013405, -15.760992], [90.023888, -15.762047], [90.034454, -15.762959], [90.045128, -15.763729], [90.055901, -15.764358], [90.066765, -15.764845], [90.077744, -15.765192], [90.088814, -15.7654], [90.099998, -15.76547], [90.111183, -15.7654], [90.122253, -15.765192], [90.133232, -15.764845], [90.144096, -15.764358], [90.154869, -15.763729], [90.165543, -15.762959], [90.176109, -15.762047], [90.186592, -15.760992], [90.196976, -15.759793], [90.207268, -15.758451], [90.217468, -15.756962], [90.227585, -15.755328], [90.23761, -15.753549], [90.247543, -15.751621], [90.257401, -15.749546], [90.267174, -15.747322], [90.276871, -15.744949], [90.286484, -15.742427], [90.296021, -15.739754], [90.305489, -15.736929], [90.314873, -15.733953], [90.324188, -15.730824], [90.333435, -15.727542], [90.342613, -15.724105], [90.351723, -15.720514], [90.360771, -15.716767], [90.369751, -15.712865], [90.37867, -15.708805], [90.387527, -15.704588], [90.396332, -15.700212], [90.405075, -15.695679], [90.413765, -15.690985], [90.422394, -15.686131], [90.430977, -15.681116], [90.439514, -15.67594], [90.447998, -15.6706], [90.456429, -15.665098], [90.464821, -15.659432], [90.473175, -15.653602], [90.481476, -15.647607], [90.489746, -15.641445], [90.497971, -15.635118], [90.506157, -15.628622], [90.514313, -15.62196], [90.522438, -15.615128], [90.530525, -15.608127], [90.538589, -15.600956], [90.546616, -15.593615], [90.554619, -15.586102], [90.562599, -15.578417], [90.570557, -15.570559], [90.578415, -15.562603], [90.586098, -15.554624], [90.593613, -15.546619], [90.600952, -15.538589], [90.608124, -15.530529], [90.615128, -15.522439], [90.621956, -15.514318], [90.628616, -15.506163], [90.635117, -15.497972], [90.641441, -15.489745], [90.647606, -15.481479], [90.653603, -15.473173], [90.659431, -15.464825], [90.665092, -15.456433], [90.670601, -15.447997], [90.675934, -15.439513], [90.681114, -15.430981], [90.686127, -15.422399], [90.690979, -15.413764], [90.695679, -15.405076], [90.700211, -15.396333], [90.704582, -15.387532], [90.708801, -15.378673], [90.71286, -15.369754], [90.716766, -15.360772], [90.720512, -15.351727], [90.724098, -15.342616], [90.727539, -15.333439], [90.73082, -15.324193], [90.733948, -15.314877], [90.736923, -15.305488], [90.739746, -15.296025], [90.742424, -15.286488], [90.744942, -15.276873], [90.747314, -15.267179], [90.749542, -15.257404], [90.751617, -15.247548], [90.75354, -15.237608], [90.755325, -15.227583], [90.756958, -15.21747], [90.758446, -15.207269], [90.759789, -15.196977], [90.760986, -15.186593], [90.762039, -15.176115], [90.762955, -15.165541], [90.763725, -15.15487], [90.764351, -15.144101], [90.764839, -15.133231], [90.76519, -15.122258], [90.765396, -15.111182], [90.765465, -15.1], [90.765396, -15.088819], [90.76519, -15.077743], [90.764839, -15.06677], [90.764351, -15.0559], [90.763725, -15.045131], [90.762955, -15.03446], [90.762039, -15.023886], [90.760986, -15.013408], [90.759789, -15.003024], [90.758446, -14.992732], [90.756958, -14.982531], [90.755325, -14.972418], [90.75354, -14.962393], [90.751617, -14.952453], [90.749542, -14.942596], [90.747314, -14.932822], [90.744942, -14.923128], [90.742424, -14.913513], [90.739746, -14.903975], [90.736923, -14.894513], [90.733948, -14.885124], [90.73082, -14.875808], [90.727539, -14.866562], [90.724098, -14.857385], [90.720512, -14.848274], [90.716766, -14.839229], [90.71286, -14.830247], [90.708801, -14.821328], [90.704582, -14.812469], [90.700211, -14.803668], [90.695679, -14.794925], [90.690979, -14.786237], [90.686127, -14.777602], [90.681114, -14.76902], [90.675934, -14.760488], [90.670601, -14.752004], [90.665092, -14.743567], [90.659431, -14.735176], [90.653603, -14.726828], [90.647606, -14.718522], [90.641441, -14.710256], [90.635117, -14.702029], [90.628616, -14.693838], [90.621956, -14.685683], [90.615128, -14.677562], [90.608124, -14.669472], [90.600952, -14.661412], [90.593613, -14.653381], [90.586098, -14.645377], [90.578415, -14.637398], [90.570557, -14.629442]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_RADII\", \"radiiType\": \"64kt\", \"ne\": null, \"se\": null, \"sw\": null, \"nw\": null, \"validDateTime\": \"2024-01-25T06:00:00Z\", \"category\": 3, \"windSpeedKnots\": 75.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[90.394096, -14.805902], [90.394096, -14.805902], [90.386162, -14.798125], [90.378197, -14.790623], [90.370178, -14.783393], [90.362122, -14.776432], [90.354012, -14.76974], [90.34584, -14.763315], [90.337616, -14.757154], [90.329323, -14.751257], [90.320961, -14.745621], [90.312523, -14.740244], [90.304016, -14.735126], [90.295425, -14.730263], [90.286743, -14.725655], [90.277977, -14.721299], [90.269119, -14.717194], [90.260162, -14.713338], [90.251099, -14.709729], [90.241928, -14.706367], [90.232651, -14.703247], [90.223259, -14.70037], [90.213745, -14.697733], [90.204102, -14.695334], [90.194336, -14.693172], [90.184441, -14.691246], [90.174408, -14.689552], [90.16423, -14.68809], [90.153915, -14.686858], [90.143448, -14.685854], [90.132828, -14.685077], [90.122047, -14.684523], [90.111107, -14.684192], [90.099998, -14.684082], [90.08889, -14.684192], [90.07795, -14.684523], [90.067169, -14.685077], [90.056549, -14.685854], [90.046082, -14.686858], [90.035767, -14.68809], [90.025589, -14.689552], [90.015556, -14.691246], [90.005661, -14.693172], [89.995895, -14.695334], [89.986252, -14.697733], [89.976738, -14.70037], [89.967346, -14.703247], [89.958069, -14.706367], [89.948898, -14.709729], [89.939835, -14.713338], [89.930878, -14.717194], [89.92202, -14.721299], [89.913254, -14.725655], [89.904572, -14.730263], [89.895981, -14.735126], [89.887474, -14.740244], [89.879036, -14.745621], [89.870674, -14.751257], [89.862381, -14.757154], [89.854156, -14.763315], [89.845985, -14.76974], [89.837875, -14.776432], [89.829819, -14.783393], [89.8218, -14.790623], [89.813835, -14.798125], [89.805901, -14.805902], [89.798126, -14.813833], [89.790619, -14.821803], [89.783394, -14.829817], [89.776428, -14.837877], [89.769737, -14.845989], [89.763313, -14.854157], [89.757156, -14.862386], [89.751259, -14.870678], [89.745621, -14.879039], [89.740242, -14.887472], [89.735123, -14.895983], [89.730263, -14.904575], [89.725655, -14.913253], [89.721298, -14.922019], [89.717194, -14.930881], [89.713341, -14.939839], [89.709732, -14.948901], [89.706367, -14.95807], [89.703247, -14.967349], [89.700371, -14.976743], [89.697731, -14.986257], [89.695335, -14.995894], [89.693176, -15.005659], [89.691246, -15.015557], [89.689552, -15.025591], [89.688087, -15.035765], [89.686859, -15.046084], [89.685852, -15.056552], [89.685074, -15.067174], [89.684525, -15.077952], [89.684189, -15.088894], [89.684082, -15.1], [89.684189, -15.111107], [89.684525, -15.122048], [89.685074, -15.132827], [89.685852, -15.143449], [89.686859, -15.153916], [89.688087, -15.164236], [89.689552, -15.17441], [89.691246, -15.184443], [89.693176, -15.194342], [89.695335, -15.204106], [89.697731, -15.213744], [89.700371, -15.223258], [89.703247, -15.232652], [89.706367, -15.241931], [89.709732, -15.2511], [89.713341, -15.260161], [89.717194, -15.26912], [89.721298, -15.277982], [89.725655, -15.286748], [89.730263, -15.295425], [89.735123, -15.304018], [89.740242, -15.312529], [89.745621, -15.320962], [89.751259, -15.329323], [89.757156, -15.337615], [89.763313, -15.345843], [89.769737, -15.354012], [89.776428, -15.362123], [89.783394, -15.370184], [89.790619, -15.378198], [89.798126, -15.386168], [89.805901, -15.394099], [89.813835, -15.401875], [89.8218, -15.409378], [89.829819, -15.416608], [89.837875, -15.423569], [89.845985, -15.430261], [89.854156, -15.436686], [89.862381, -15.442846], [89.870674, -15.448744], [89.879036, -15.45438], [89.887474, -15.459757], [89.895981, -15.464875], [89.904572, -15.469738], [89.913254, -15.474346], [89.92202, -15.478702], [89.930878, -15.482807], [89.939835, -15.486663], [89.948898, -15.490272], [89.958069, -15.493634], [89.967346, -15.496754], [89.976738, -15.499631], [89.986252, -15.502268], [89.995895, -15.504666], [90.005661, -15.506828], [90.015556, -15.508755], [90.025589, -15.510448], [90.035767, -15.51191], [90.046082, -15.513143], [90.056549, -15.514147], [90.067169, -15.514924], [90.07795, -15.515478], [90.08889, -15.515809], [90.099998, -15.515919], [90.111107, -15.515809], [90.122047, -15.515478], [90.132828, -15.514924], [90.143448, -15.514147], [90.153915, -15.513143], [90.16423, -15.51191], [90.174408, -15.510448], [90.184441, -15.508755], [90.194336, -15.506828], [90.204102, -15.504666], [90.213745, -15.502268], [90.223259, -15.499631], [90.232651, -15.496754], [90.241928, -15.493634], [90.251099, -15.490272], [90.260162, -15.486663], [90.269119, -15.482807], [90.277977, -15.478702], [90.286743, -15.474346], [90.295425, -15.469738], [90.304016, -15.464875], [90.312523, -15.459757], [90.320961, -15.45438], [90.329323, -15.448744], [90.337616, -15.442846], [90.34584, -15.436686], [90.354012, -15.430261], [90.362122, -15.423569], [90.370178, -15.416608], [90.378197, -15.409378], [90.386162, -15.401875], [90.394096, -15.394099], [90.401871, -15.386168], [90.409378, -15.378198], [90.416603, -15.370184], [90.423569, -15.362123], [90.43026, -15.354012], [90.436684, -15.345843], [90.442841, -15.337615], [90.448738, -15.329323], [90.454376, -15.320962], [90.459755, -15.312529], [90.464874, -15.304018], [90.469734, -15.295425], [90.474342, -15.286748], [90.478699, -15.277982], [90.482803, -15.26912], [90.486656, -15.260161], [90.490265, -15.2511], [90.493629, -15.241931], [90.49675, -15.232652], [90.499626, -15.223258], [90.502266, -15.213744], [90.504662, -15.204106], [90.506821, -15.194342], [90.508751, -15.184443], [90.510445, -15.17441], [90.511909, -15.164236], [90.513138, -15.153916], [90.514145, -15.143449], [90.514923, -15.132827], [90.515472, -15.122048], [90.515808, -15.111107], [90.515915, -15.1], [90.515808, -15.088894], [90.515472, -15.077952], [90.514923, -15.067174], [90.514145, -15.056552], [90.513138, -15.046084], [90.511909, -15.035765], [90.510445, -15.025591], [90.508751, -15.015557], [90.506821, -15.005659], [90.504662, -14.995894], [90.502266, -14.986257], [90.499626, -14.976743], [90.49675, -14.967349], [90.493629, -14.95807], [90.490265, -14.948901], [90.486656, -14.939839], [90.482803, -14.930881], [90.478699, -14.922019], [90.474342, -14.913253], [90.469734, -14.904575], [90.464874, -14.895983], [90.459755, -14.887472], [90.454376, -14.879039], [90.448738, -14.870678], [90.442841, -14.862386], [90.436684, -14.854157], [90.43026, -14.845989], [90.423569, -14.837877], [90.416603, -14.829817], [90.409378, -14.821803], [90.401871, -14.813833], [90.394096, -14.805902]]]}}], \"metadata\": {\"stormName\": \"Anggrek\", \"source\": \"BOM\", \"advisoryDateTime\": \"2024-01-25T06:00:00Z\", \"stormNum\": \"04U\", \"stormId\": 4634}}, {\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"stormElement\": \"FORECAST_RADII\", \"radiiType\": \"34kt\", \"ne\": 110, \"se\": 280, \"sw\": 220, \"nw\": 120, \"validDateTime\": \"2025-03-16T18:00:00Z\", \"category\": 0, \"windSpeedKnots\": 40.0, \"forecastHour\": 12}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[57.4, -26.07787], [57.21532, -26.09372], [57.03309, -26.12095], [56.85363, -26.15867], [56.67697, -26.20607], [56.50293, -26.26251], [56.3311, -26.32751], [56.16092, -26.40083], [55.99171, -26.48249], [55.82277, -26.57278], [55.65356, -26.67244], [55.48438, -26.78288], [55.31607, -26.90564], [55.14985, -27.04215], [54.98735, -27.1937], [54.83052, -27.36136], [54.68166, -27.54596], [54.54331, -27.748], [54.4183, -27.96767], [54.30961, -28.20475], [54.22034, -28.45865], [54.15369, -28.72833], [54.11282, -29.01234], [54.10085, -29.30879], [54.12074, -29.61535], [54.17524, -29.92928], [54.26681, -30.24746], [54.39752, -30.56638], [54.56912, -30.88211], [54.78327, -31.18986], [55.04079, -31.48431], [55.34148, -31.75989], [55.68396, -32.01088], [56.06558, -32.23161], [56.48246, -32.41661], [56.9294, -32.56084], [57.4, -32.65978], [57.88675, -32.70972], [58.38115, -32.70784], [58.87396, -32.65239], [59.35541, -32.54279], [59.81546, -32.37974], [60.24413, -32.1653], [60.63172, -31.90282], [60.96918, -31.59704], [61.24827, -31.25395], [61.46251, -30.88119], [61.60963, -30.48885], [61.69016, -30.08723], [61.70658, -29.68598], [61.66309, -29.29389], [61.56528, -28.91868], [61.41986, -28.56685], [61.23432, -28.24353], [61.01669, -27.95243], [60.77523, -27.69578], [60.51815, -27.47434], [60.25336, -27.28741], [59.98824, -27.13291], [59.72934, -27.00747], [59.48221, -26.90657], [59.25116, -26.82471], [59.03909, -26.7556], [58.84732, -26.6924], [58.71442, -26.58537], [58.57189, -26.48901], [58.4208, -26.40402], [58.26226, -26.33104], [58.09745, -26.27058], [57.92756, -26.2231], [57.75385, -26.18893], [57.58129, -26.12928], [57.4, -26.07787]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"CURRENT_RADII\", \"radiiType\": \"34kt\", \"ne\": 110, \"se\": 220, \"sw\": 185, \"nw\": 75, \"validDateTime\": \"2025-03-16T06:00:00Z\", \"category\": 0, \"windSpeedKnots\": 45.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[53.4, -24.85363], [53.25624, -24.90125], [53.12225, -24.96379], [52.99934, -25.03718], [52.88761, -25.1174], [52.78598, -25.20069], [52.69227, -25.28377], [52.6033, -25.36403], [52.51244, -25.43682], [52.42303, -25.51014], [52.32267, -25.5761], [52.21217, -25.64118], [52.0912, -25.7095], [51.96039, -25.78504], [51.82127, -25.87149], [51.67617, -25.97214], [51.52818, -26.08975], [51.38096, -26.22645], [51.2387, -26.38368], [51.10588, -26.56208], [50.98725, -26.76153], [50.88758, -26.98104], [50.81155, -27.21881], [50.76361, -27.47223], [50.7478, -27.73792], [50.76761, -28.0118], [50.82581, -28.28916], [50.92435, -28.56478], [51.06405, -28.8332], [51.24417, -29.08937], [51.463, -29.32852], [51.71808, -29.5461], [52.00617, -29.73788], [52.32331, -29.90001], [52.66488, -30.02916], [53.02568, -30.12251], [53.4, -30.17791], [53.78176, -30.19387], [54.16464, -30.16964], [54.54218, -30.10521], [54.90797, -30.00134], [55.25574, -29.85957], [55.57958, -29.68216], [55.87395, -29.47209], [56.13392, -29.23301], [56.35518, -28.96916], [56.53438, -28.68545], [56.66997, -28.38773], [56.76171, -28.08195], [56.81042, -27.77382], [56.81784, -27.46867], [56.78651, -27.17138], [56.71966, -26.88627], [56.62103, -26.61699], [56.49479, -26.36653], [56.34536, -26.13714], [56.17727, -25.93032], [55.99508, -25.74683], [55.80317, -25.5867], [55.60569, -25.44928], [55.40641, -25.33327], [55.20865, -25.23679], [55.01512, -25.15749], [54.82794, -25.09261], [54.64827, -25.03932], [54.47597, -24.99555], [54.31037, -24.95965], [54.1506, -24.93027], [53.9956, -24.90633], [53.84423, -24.88702], [53.69529, -24.87189], [53.54759, -24.86073], [53.4, -24.85363]]]}}], \"metadata\": {\"stormName\": \"Jude\", \"source\": \"JTWC\", \"advisoryDateTime\": \"2025-03-16T09:00:00Z\", \"stormNum\": \"25S\", \"stormId\": 4686}}]}"}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/cyclone-swaths":{"get":{"tags":["DTN"],"summary":"Get Swaths","description":"Returns Array of FeatureCollection Objects, Contain wind swath features.\n\n**Data returned from this endpoint contains data from DTN advisories ONLY**\n\nGeoJSON Properties:\n\n* **stormElement** ***(string)***: Type of storm element (\"SWATH\" in this case).\n* **swathType** ***(string)***: Type of swath (34kt, 50kt, 64kt).","operationId":"get_swaths_v1_cyclone_swaths_get","security":[{"clientCredentials":[]}],"parameters":[{"name":"stormName","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by name of storm","title":"Stormname"},"description":"Optional: Filter results by name of storm"},{"name":"stormNum","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by number of storm","title":"Stormnum"},"description":"Optional: Filter results by number of storm"}],"responses":{"200":{"description":"Array of FeatureCollection Objects, Contain wind swath features. DTN advisories only.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TropicalResponse"},"example":"{\"url\": \"http://tropical.api.dtn.com/v1/cyclone-swaths\", \"cycloneCount\": 1, \"data\": [{\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"stormElement\": \"SWATH\", \"swathType\": \"34kt\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[110.99385, 17.43777], [111.2, 17.41132], [111.40948, 17.40073], [111.6211, 17.40637], [111.83363, 17.42857], [112.04579, 17.46754], [112.25625, 17.52344], [112.46368, 17.59631], [112.66667, 17.68613], [112.86381, 17.79276], [113.05368, 17.91597], [113.23475, 18.05545], [113.40524, 18.21095], [113.56322, 18.38202], [113.70673, 18.56796], [113.83376, 18.76777], [113.94236, 18.98018], [114.03067, 19.20363], [114.09692, 19.43625], [114.13956, 19.67593], [114.15724, 19.92026], [114.1489, 20.16664], [114.11381, 20.41225], [114.05159, 20.65409], [113.96228, 20.88909], [113.84637, 21.11409], [113.70482, 21.32591], [113.53905, 21.52144], [113.35103, 21.69769], [113.14339, 21.85209], [112.91996, 21.98341], [112.68468, 22.09127], [112.44125, 22.17593], [112.19297, 22.2382], [110.44345, 22.67268], [110.21021, 22.71851], [109.97793, 22.7463], [109.74824, 22.75801], [108.10618, 22.79788], [107.92073, 22.80145], [105.8419, 22.7722], [105.71939, 22.76571], [105.6, 22.75438], [105.48424, 22.72755], [105.37446, 22.68694], [105.27238, 22.63482], [105.17909, 22.57359], [105.09499, 22.50562], [105.01987, 22.4332], [104.95294, 22.35837], [104.77485, 22.14302], [104.71807, 22.07327], [104.66808, 21.99917], [104.62527, 21.92127], [104.58993, 21.84018], [104.52524, 21.67367], [104.4921, 21.58698], [104.46381, 21.49614], [104.44141, 21.40106], [104.42597, 21.30189], [104.41859, 21.19897], [104.42034, 21.09291], [104.43219, 20.98452], [104.45501, 20.87481], [104.48951, 20.765], [104.53621, 20.65648], [104.59537, 20.55076], [104.66699, 20.44942], [104.75062, 20.35382], [104.84558, 20.26524], [104.95109, 20.18485], [106.50842, 19.18088], [106.66609, 19.08123], [106.83579, 18.99592], [108.8894, 18.17331], [110.59607, 17.53642], [110.79218, 17.47965], [110.99385, 17.43777]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"SWATH\", \"swathType\": \"50kt\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[111.42088, 18.91536], [111.50302, 18.90738], [111.58863, 18.90638], [111.67687, 18.9133], [111.76671, 18.92892], [111.85694, 18.95389], [111.94618, 18.98865], [112.03297, 19.03338], [112.11601, 19.08791], [112.19409, 19.15184], [112.26604, 19.22466], [112.33074, 19.30571], [112.38717, 19.39424], [112.43439, 19.48935], [112.47157, 19.59007], [112.49799, 19.69531], [112.51308, 19.80392], [112.51639, 19.9147], [112.50764, 20.02638], [112.48668, 20.13768], [112.45355, 20.24729], [112.40841, 20.35393], [112.35161, 20.45631], [112.28367, 20.55323], [112.20524, 20.64349], [112.11427, 20.72285], [112.0162, 20.7944], [111.91179, 20.85757], [111.80184, 20.91188], [111.68721, 20.95691], [109.89656, 21.59559], [109.77845, 21.62862], [109.65838, 21.65018], [109.53786, 21.66103], [107.61251439693804, 21.751050819434763], [105.82746, 22.08231], [105.76928, 22.08873], [105.71182, 22.091], [105.65536, 22.08969], [105.6, 22.0854], [105.54606, 22.07468], [105.49441, 22.05822], [105.44568, 22.03689], [105.40027, 22.0116], [105.35831, 21.98325], [105.3197, 21.95268], [105.28413, 21.92063], [105.2511, 21.88772], [105.18834, 21.82203], [105.15991, 21.78723], [105.13302, 21.75122], [105.10617, 21.71445], [105.08073, 21.67585], [105.05707, 21.63513], [105.03563, 21.59212], [105.01694, 21.5467], [105.00158, 21.49893], [104.99012, 21.44893], [104.98314, 21.397], [104.9812, 21.34352], [104.98478, 21.28901], [104.9943, 21.2341], [105.01008, 21.17952], [105.03229, 21.12607], [105.061, 21.07464], [105.0961, 21.02614], [105.14205, 20.98683], [105.19146, 20.95143], [105.24394, 20.92019], [105.2991, 20.89334], [105.35652, 20.8711], [107.25376071885825, 20.282299442438678], [108.99809, 19.61372], [109.07157, 19.59189], [111.26912, 18.94823], [111.34279, 18.92932], [111.42088, 18.91536]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"SWATH\", \"swathType\": \"64kt\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[111.35043, 19.16646], [111.40455, 19.16585], [111.46054, 19.16889], [111.51821, 19.17602], [111.57729, 19.18766], [111.63742, 19.20423], [111.69817, 19.22611], [111.75899, 19.25367], [111.81914, 19.28729], [111.87774, 19.32727], [111.93386, 19.37375], [111.98646, 19.42672], [112.03449, 19.48601], [112.0769, 19.55128], [112.11266, 19.62202], [112.14078, 19.69753], [112.16036, 19.77697], [112.17065, 19.8593], [112.17098, 19.9434], [112.16091, 20.02797], [112.14016, 20.11166], [112.10868, 20.19301], [112.06663, 20.27054], [112.01444, 20.34275], [111.95279, 20.40817], [111.88269, 20.46551], [111.80578, 20.51411], [111.72374, 20.55372], [111.63816, 20.58439], [109.66442, 21.13288], [109.59077, 21.14925], [107.61221, 21.426], [107.56767, 21.43125], [107.52375, 21.43237], [107.48099, 21.43006], [107.43972, 21.42506], [107.4, 21.41817], [107.36169, 21.41005], [107.3252, 21.39728], [107.29113, 21.38052], [107.2599, 21.36052], [107.23173, 21.33801], [107.20664, 21.31372], [107.1845, 21.28831], [107.1078, 21.19163], [107.09113, 21.16699], [107.07682, 21.14108], [107.06497, 21.11409], [107.05569, 21.08624], [107.04902, 21.05773], [107.04503, 21.02879], [107.04375, 20.99963], [107.04517, 20.97047], [107.04929, 20.94155], [107.05608, 20.91307], [107.06548, 20.88525], [107.07743, 20.85831], [107.09182, 20.83245], [107.10854, 20.80786], [107.12748, 20.78474], [107.14848, 20.76325], [107.17139, 20.74357], [107.19603, 20.72583], [107.22221, 20.71018], [107.24974, 20.69673], [107.27841, 20.68558], [109.16447998736683, 20.090106399353928], [110.97667, 19.24498], [111.01928, 19.22827], [111.06325, 19.21514], [111.2, 19.18614], [111.24816, 19.177], [111.29829, 19.17031], [111.35043, 19.16646]]]}}], \"metadata\": {\"stormName\": \"Yagi\", \"source\": \"DTN\", \"advisoryDateTime\": \"2024-09-05T21:00:00Z\", \"stormNum\": \"20S\", \"stormId\": 101}}]}"}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/agency-cyclone-swaths":{"get":{"tags":["Agency"],"summary":"Agency Get Swaths","description":"Returns Array of FeatureCollection Objects, Contain wind swath features.\n\n**Data returned from this endpoint contains data from Agency advisories ONLY**\n\nMutliple Agency sources can be specified in a single query:\n\nhttp://tropical.api.dtn.com/v1/agency-swaths?source=JTWC&source=NHC\n\nGeoJSON Properties:\n\n* **stormElement** ***(string)***: Type of storm element (\"SWATH\" in this case).\n* **swathType** ***(string)***: Type of swath (34kt, 50kt, 64kt).","operationId":"agency_get_swaths_v1_agency_cyclone_swaths_get","security":[{"clientCredentials":[]}],"parameters":[{"name":"stormName","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by name of storm","title":"Stormname"},"description":"Optional: Filter results by name of storm"},{"name":"stormNum","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by number of storm","title":"Stormnum"},"description":"Optional: Filter results by number of storm"},{"name":"source","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"description":"Optional: Filter results by source of weather advisories","default":["JTWC","NHC","CPHC","BOM"],"title":"Source"},"description":"Optional: Filter results by source of weather advisories"}],"responses":{"200":{"description":"Array of FeatureCollection Objects, Contain wind swath features. Agency advisories only.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TropicalResponse"},"example":"{\"url\": \"http://tropical.api.dtn.com/v1/agency-cyclone-swaths\", \"cycloneCount\": 1, \"data\": [{\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"stormElement\": \"SWATH\", \"swathType\": \"34kt\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[110.99385, 17.43777], [111.2, 17.41132], [111.40948, 17.40073], [111.6211, 17.40637], [111.83363, 17.42857], [112.04579, 17.46754], [112.25625, 17.52344], [112.46368, 17.59631], [112.66667, 17.68613], [112.86381, 17.79276], [113.05368, 17.91597], [113.23475, 18.05545], [113.40524, 18.21095], [113.56322, 18.38202], [113.70673, 18.56796], [113.83376, 18.76777], [113.94236, 18.98018], [114.03067, 19.20363], [114.09692, 19.43625], [114.13956, 19.67593], [114.15724, 19.92026], [114.1489, 20.16664], [114.11381, 20.41225], [114.05159, 20.65409], [113.96228, 20.88909], [113.84637, 21.11409], [113.70482, 21.32591], [113.53905, 21.52144], [113.35103, 21.69769], [113.14339, 21.85209], [112.91996, 21.98341], [112.68468, 22.09127], [112.44125, 22.17593], [112.19297, 22.2382], [110.44345, 22.67268], [110.21021, 22.71851], [109.97793, 22.7463], [109.74824, 22.75801], [108.10618, 22.79788], [107.92073, 22.80145], [105.8419, 22.7722], [105.71939, 22.76571], [105.6, 22.75438], [105.48424, 22.72755], [105.37446, 22.68694], [105.27238, 22.63482], [105.17909, 22.57359], [105.09499, 22.50562], [105.01987, 22.4332], [104.95294, 22.35837], [104.77485, 22.14302], [104.71807, 22.07327], [104.66808, 21.99917], [104.62527, 21.92127], [104.58993, 21.84018], [104.52524, 21.67367], [104.4921, 21.58698], [104.46381, 21.49614], [104.44141, 21.40106], [104.42597, 21.30189], [104.41859, 21.19897], [104.42034, 21.09291], [104.43219, 20.98452], [104.45501, 20.87481], [104.48951, 20.765], [104.53621, 20.65648], [104.59537, 20.55076], [104.66699, 20.44942], [104.75062, 20.35382], [104.84558, 20.26524], [104.95109, 20.18485], [106.50842, 19.18088], [106.66609, 19.08123], [106.83579, 18.99592], [108.8894, 18.17331], [110.59607, 17.53642], [110.79218, 17.47965], [110.99385, 17.43777]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"SWATH\", \"swathType\": \"50kt\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[111.42088, 18.91536], [111.50302, 18.90738], [111.58863, 18.90638], [111.67687, 18.9133], [111.76671, 18.92892], [111.85694, 18.95389], [111.94618, 18.98865], [112.03297, 19.03338], [112.11601, 19.08791], [112.19409, 19.15184], [112.26604, 19.22466], [112.33074, 19.30571], [112.38717, 19.39424], [112.43439, 19.48935], [112.47157, 19.59007], [112.49799, 19.69531], [112.51308, 19.80392], [112.51639, 19.9147], [112.50764, 20.02638], [112.48668, 20.13768], [112.45355, 20.24729], [112.40841, 20.35393], [112.35161, 20.45631], [112.28367, 20.55323], [112.20524, 20.64349], [112.11427, 20.72285], [112.0162, 20.7944], [111.91179, 20.85757], [111.80184, 20.91188], [111.68721, 20.95691], [109.89656, 21.59559], [109.77845, 21.62862], [109.65838, 21.65018], [109.53786, 21.66103], [107.61251439693804, 21.751050819434763], [105.82746, 22.08231], [105.76928, 22.08873], [105.71182, 22.091], [105.65536, 22.08969], [105.6, 22.0854], [105.54606, 22.07468], [105.49441, 22.05822], [105.44568, 22.03689], [105.40027, 22.0116], [105.35831, 21.98325], [105.3197, 21.95268], [105.28413, 21.92063], [105.2511, 21.88772], [105.18834, 21.82203], [105.15991, 21.78723], [105.13302, 21.75122], [105.10617, 21.71445], [105.08073, 21.67585], [105.05707, 21.63513], [105.03563, 21.59212], [105.01694, 21.5467], [105.00158, 21.49893], [104.99012, 21.44893], [104.98314, 21.397], [104.9812, 21.34352], [104.98478, 21.28901], [104.9943, 21.2341], [105.01008, 21.17952], [105.03229, 21.12607], [105.061, 21.07464], [105.0961, 21.02614], [105.14205, 20.98683], [105.19146, 20.95143], [105.24394, 20.92019], [105.2991, 20.89334], [105.35652, 20.8711], [107.25376071885825, 20.282299442438678], [108.99809, 19.61372], [109.07157, 19.59189], [111.26912, 18.94823], [111.34279, 18.92932], [111.42088, 18.91536]]]}}, {\"type\": \"Feature\", \"properties\": {\"stormElement\": \"SWATH\", \"swathType\": \"64kt\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[111.35043, 19.16646], [111.40455, 19.16585], [111.46054, 19.16889], [111.51821, 19.17602], [111.57729, 19.18766], [111.63742, 19.20423], [111.69817, 19.22611], [111.75899, 19.25367], [111.81914, 19.28729], [111.87774, 19.32727], [111.93386, 19.37375], [111.98646, 19.42672], [112.03449, 19.48601], [112.0769, 19.55128], [112.11266, 19.62202], [112.14078, 19.69753], [112.16036, 19.77697], [112.17065, 19.8593], [112.17098, 19.9434], [112.16091, 20.02797], [112.14016, 20.11166], [112.10868, 20.19301], [112.06663, 20.27054], [112.01444, 20.34275], [111.95279, 20.40817], [111.88269, 20.46551], [111.80578, 20.51411], [111.72374, 20.55372], [111.63816, 20.58439], [109.66442, 21.13288], [109.59077, 21.14925], [107.61221, 21.426], [107.56767, 21.43125], [107.52375, 21.43237], [107.48099, 21.43006], [107.43972, 21.42506], [107.4, 21.41817], [107.36169, 21.41005], [107.3252, 21.39728], [107.29113, 21.38052], [107.2599, 21.36052], [107.23173, 21.33801], [107.20664, 21.31372], [107.1845, 21.28831], [107.1078, 21.19163], [107.09113, 21.16699], [107.07682, 21.14108], [107.06497, 21.11409], [107.05569, 21.08624], [107.04902, 21.05773], [107.04503, 21.02879], [107.04375, 20.99963], [107.04517, 20.97047], [107.04929, 20.94155], [107.05608, 20.91307], [107.06548, 20.88525], [107.07743, 20.85831], [107.09182, 20.83245], [107.10854, 20.80786], [107.12748, 20.78474], [107.14848, 20.76325], [107.17139, 20.74357], [107.19603, 20.72583], [107.22221, 20.71018], [107.24974, 20.69673], [107.27841, 20.68558], [109.16447998736683, 20.090106399353928], [110.97667, 19.24498], [111.01928, 19.22827], [111.06325, 19.21514], [111.2, 19.18614], [111.24816, 19.177], [111.29829, 19.17031], [111.35043, 19.16646]]]}}], \"metadata\": {\"stormName\": \"Yagi\", \"source\": \"JTWC\", \"advisoryDateTime\": \"2024-09-05T21:00:00Z\", \"stormNum\": \"20S\", \"stormId\": 101}}]}"}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/cyclone-models":{"get":{"tags":["Agency"],"summary":"Get Spaghetti Models","description":"Returns FeatureCollections containing model forecast point and line Features.\n\n**Data returned from this endpoint contains data from Agency advisories ONLY**\n\nThis GeoJSON feature contains properties related to a storm forecast point from a specific model:\n\n* **forecastModel** ***(string)***: Name of the weather forecast model that generated the data (e.g., HWRF - Hurricane Weather Research and Forecasting model).\n* **stormElement** ***(string)***: Type of storm element (\"MODEL_POINT\" in this case).\n* **minCentralPressureMb** ***(float)***: Minimum central pressure of the storm in millibars as predicted by the model.\n* **windSpeedKnots** ***(float)***: Wind speed of the storm in knots as predicted by the model.\n* **initialDatetime** ***(string)***: Date and time for which the forecast is initialized in UTC format (YYYY-MM-DDTHH:MM:SSZ).\n* **forecastHour** ***(integer)***: Forecast hour for the data.\n* **validDatetime** ***(string)***: Date and time when the data is valid in UTC format (YYYY-MM-DDTHH:MM:SSZ).","operationId":"get_spaghetti_models_v1_cyclone_models_get","security":[{"clientCredentials":[]}],"parameters":[{"name":"stormName","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by name of storm","title":"Stormname"},"description":"Optional: Filter results by name of storm"},{"name":"stormNum","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by number of storm","title":"Stormnum"},"description":"Optional: Filter results by number of storm"}],"responses":{"200":{"description":"Array of FeatureCollection Objects","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TropicalResponse"},"example":"{\"url\": \"https://tropical.api.dtn.com/v1/cyclone-models/\", \"cycloneCount\": 1, \"data\": [{\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-73.3, 44.0]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 998.0, \"windSpeedKnots\": 56.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T00:00:00Z\", \"forecastHour\": 0}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-72.3, 46.8]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 998.0, \"windSpeedKnots\": 32.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T06:00:00Z\", \"forecastHour\": 6}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.5, 49.1]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1000.0, \"windSpeedKnots\": 37.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T12:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.4, 51.2]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 24.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T18:00:00Z\", \"forecastHour\": 18}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.1, 52.9]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 996.0, \"windSpeedKnots\": 23.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T00:00:00Z\", \"forecastHour\": 24}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-70.5, 53.7]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 993.0, \"windSpeedKnots\": 22.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T06:00:00Z\", \"forecastHour\": 30}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-69.2, 53.8]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 994.0, \"windSpeedKnots\": 23.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T12:00:00Z\", \"forecastHour\": 36}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-67.1, 53.1]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 998.0, \"windSpeedKnots\": 23.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T18:00:00Z\", \"forecastHour\": 42}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-63.2, 53.0]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1003.0, \"windSpeedKnots\": 27.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T00:00:00Z\", \"forecastHour\": 48}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-57.7, 53.6]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1000.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T06:00:00Z\", \"forecastHour\": 54}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-52.8, 56.2]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 20.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T12:00:00Z\", \"forecastHour\": 60}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-47.2, 55.5]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 998.0, \"windSpeedKnots\": 20.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T18:00:00Z\", \"forecastHour\": 66}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-44.4, 55.3]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1000.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-08T00:00:00Z\", \"forecastHour\": 72}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-40.0, 56.3]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 17.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-08T06:00:00Z\", \"forecastHour\": 78}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-36.3, 58.1]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1000.0, \"windSpeedKnots\": 16.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-08T12:00:00Z\", \"forecastHour\": 84}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-34.4, 58.8]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 19.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-08T18:00:00Z\", \"forecastHour\": 90}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-30.9, 59.9]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1000.0, \"windSpeedKnots\": 22.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-09T00:00:00Z\", \"forecastHour\": 96}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-27.7, 61.9]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-09T06:00:00Z\", \"forecastHour\": 102}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-26.7, 62.8]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 26.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-09T12:00:00Z\", \"forecastHour\": 108}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-25.3, 62.6]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1003.0, \"windSpeedKnots\": 24.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-09T18:00:00Z\", \"forecastHour\": 114}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-22.6, 62.4]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1006.0, \"windSpeedKnots\": 22.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-10T00:00:00Z\", \"forecastHour\": 120}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-19.9, 63.1]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1007.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-10T06:00:00Z\", \"forecastHour\": 126}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-73.3, 44.0], [-72.3, 46.8], [-71.5, 49.1], [-71.4, 51.2], [-71.1, 52.9], [-70.5, 53.7], [-69.2, 53.8], [-67.1, 53.1], [-63.2, 53.0], [-57.7, 53.6], [-52.8, 56.2], [-47.2, 55.5], [-44.4, 55.3], [-40.0, 56.3], [-36.3, 58.1], [-34.4, 58.8], [-30.9, 59.9], [-27.7, 61.9], [-26.7, 62.8], [-25.3, 62.6], [-22.6, 62.4], [-19.9, 63.1]]}, \"properties\": {\"forecastModel\": \"HWRF\", \"stormElement\": \"MODEL_TRACK\"}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-68.5, 51.1]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-05T18:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-61.1, 54.9]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-06T06:00:00Z\", \"forecastHour\": 24}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-50.5, 56.9]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-06T18:00:00Z\", \"forecastHour\": 36}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-38.7, 58.6]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-07T06:00:00Z\", \"forecastHour\": 48}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-28.6, 57.8]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-07T18:00:00Z\", \"forecastHour\": 60}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-20.9, 56.4]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-08T06:00:00Z\", \"forecastHour\": 72}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-16.2, 55.0]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-08T18:00:00Z\", \"forecastHour\": 84}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-14.0, 55.6]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-09T06:00:00Z\", \"forecastHour\": 96}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-12.3, 56.3]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-09T18:00:00Z\", \"forecastHour\": 108}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-11.8, 55.5]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-10T06:00:00Z\", \"forecastHour\": 120}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-68.5, 51.1], [-61.1, 54.9], [-50.5, 56.9], [-38.7, 58.6], [-28.6, 57.8], [-20.9, 56.4], [-16.2, 55.0], [-14.0, 55.6], [-12.3, 56.3], [-11.8, 55.5]]}, \"properties\": {\"forecastModel\": \"CLP5\", \"stormElement\": \"MODEL_TRACK\"}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-72.8, 43.9]}, \"properties\": {\"forecastModel\": \"EGRR\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T00:00:00Z\", \"forecastHour\": 0}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.1, 48.8]}, \"properties\": {\"forecastModel\": \"EGRR\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T12:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.0, 52.2]}, \"properties\": {\"forecastModel\": \"EGRR\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T00:00:00Z\", \"forecastHour\": 24}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-69.6, 53.7]}, \"properties\": {\"forecastModel\": \"EGRR\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T12:00:00Z\", \"forecastHour\": 36}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-72.8, 43.9], [-71.1, 48.8], [-71.0, 52.2], [-69.6, 53.7]]}, \"properties\": {\"forecastModel\": \"EGRR\", \"stormElement\": \"MODEL_TRACK\"}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-73.0, 44.1]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 34.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T00:00:00Z\", \"forecastHour\": 0}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-72.2, 46.8]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1000.0, \"windSpeedKnots\": 25.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T06:00:00Z\", \"forecastHour\": 6}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.5, 49.5]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1002.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T12:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.5, 51.8]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1002.0, \"windSpeedKnots\": 14.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T18:00:00Z\", \"forecastHour\": 18}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.5, 53.3]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1000.0, \"windSpeedKnots\": 14.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T00:00:00Z\", \"forecastHour\": 24}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.4, 54.0]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 998.0, \"windSpeedKnots\": 12.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T06:00:00Z\", \"forecastHour\": 30}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-69.8, 54.3]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 998.0, \"windSpeedKnots\": 12.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T12:00:00Z\", \"forecastHour\": 36}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-67.4, 53.9]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 14.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T18:00:00Z\", \"forecastHour\": 42}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-63.5, 53.1]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 20.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T00:00:00Z\", \"forecastHour\": 48}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-59.1, 52.4]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T06:00:00Z\", \"forecastHour\": 54}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-54.4, 53.0]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1000.0, \"windSpeedKnots\": 22.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T12:00:00Z\", \"forecastHour\": 60}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-73.0, 44.1], [-72.2, 46.8], [-71.5, 49.5], [-71.5, 51.8], [-71.5, 53.3], [-71.4, 54.0], [-69.8, 54.3], [-67.4, 53.9], [-63.5, 53.1], [-59.1, 52.4], [-54.4, 53.0]]}, \"properties\": {\"forecastModel\": \"AEMN\", \"stormElement\": \"MODEL_TRACK\"}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-72.1, 46.4]}, \"properties\": {\"forecastModel\": \"TVCN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-05T06:00:00Z\", \"forecastHour\": 0}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-70.9, 50.7]}, \"properties\": {\"forecastModel\": \"TVCN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-05T18:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-69.5, 53.2]}, \"properties\": {\"forecastModel\": \"TVCN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-06T06:00:00Z\", \"forecastHour\": 24}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-66.8, 53.7]}, \"properties\": {\"forecastModel\": \"TVCN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-06T18:00:00Z\", \"forecastHour\": 36}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-59.8, 51.9]}, \"properties\": {\"forecastModel\": \"TVCN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-07T06:00:00Z\", \"forecastHour\": 48}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-52.5, 50.9]}, \"properties\": {\"forecastModel\": \"TVCN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-07T18:00:00Z\", \"forecastHour\": 60}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-43.4, 50.9]}, \"properties\": {\"forecastModel\": \"TVCN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-08T06:00:00Z\", \"forecastHour\": 72}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-72.1, 46.4], [-70.9, 50.7], [-69.5, 53.2], [-66.8, 53.7], [-59.8, 51.9], [-52.5, 50.9], [-43.4, 50.9]]}, \"properties\": {\"forecastModel\": \"TVCN\", \"stormElement\": \"MODEL_TRACK\"}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-73.1, 44.0]}, \"properties\": {\"forecastModel\": \"CMC\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 40.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T00:00:00Z\", \"forecastHour\": 0}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-72.1, 46.7]}, \"properties\": {\"forecastModel\": \"CMC\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1002.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T06:00:00Z\", \"forecastHour\": 6}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.6, 49.3]}, \"properties\": {\"forecastModel\": \"CMC\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1004.0, \"windSpeedKnots\": 26.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T12:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-73.1, 44.0], [-72.1, 46.7], [-71.6, 49.3]]}, \"properties\": {\"forecastModel\": \"CMC\", \"stormElement\": \"MODEL_TRACK\"}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-73.0, 43.9]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 998.0, \"windSpeedKnots\": 34.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T00:00:00Z\", \"forecastHour\": 0}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.9, 46.7]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 15.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T06:00:00Z\", \"forecastHour\": 6}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.3, 49.2]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1002.0, \"windSpeedKnots\": 23.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T12:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.5, 51.4]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 22.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T18:00:00Z\", \"forecastHour\": 18}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.4, 52.8]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T00:00:00Z\", \"forecastHour\": 24}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.0, 53.4]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 997.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T06:00:00Z\", \"forecastHour\": 30}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-69.1, 53.6]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 997.0, \"windSpeedKnots\": 22.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T12:00:00Z\", \"forecastHour\": 36}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-66.2, 53.4]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 24.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T18:00:00Z\", \"forecastHour\": 42}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-62.8, 52.8]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 25.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T00:00:00Z\", \"forecastHour\": 48}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-59.0, 52.2]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1002.0, \"windSpeedKnots\": 23.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T06:00:00Z\", \"forecastHour\": 54}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-54.2, 53.1]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T12:00:00Z\", \"forecastHour\": 60}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-73.0, 43.9], [-71.9, 46.7], [-71.3, 49.2], [-71.5, 51.4], [-71.4, 52.8], [-71.0, 53.4], [-69.1, 53.6], [-66.2, 53.4], [-62.8, 52.8], [-59.0, 52.2], [-54.2, 53.1]]}, \"properties\": {\"forecastModel\": \"CEMN\", \"stormElement\": \"MODEL_TRACK\"}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-72.1, 46.4]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-05T06:00:00Z\", \"forecastHour\": 0}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-68.6, 51.9]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-05T18:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-64.8, 57.4]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-06T06:00:00Z\", \"forecastHour\": 24}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-60.3, 62.8]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-06T18:00:00Z\", \"forecastHour\": 36}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-54.9, 68.3]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-07T06:00:00Z\", \"forecastHour\": 48}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-48.1, 73.8]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-07T18:00:00Z\", \"forecastHour\": 60}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-38.4, 79.3]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-08T06:00:00Z\", \"forecastHour\": 72}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-21.8, 84.8]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": null, \"windSpeedKnots\": null, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T06:00:00Z\", \"validDatetime\": \"2020-08-08T18:00:00Z\", \"forecastHour\": 84}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-72.1, 46.4], [-68.6, 51.9], [-64.8, 57.4], [-60.3, 62.8], [-54.9, 68.3], [-48.1, 73.8], [-38.4, 79.3], [-21.8, 84.8]]}, \"properties\": {\"forecastModel\": \"XTRP\", \"stormElement\": \"MODEL_TRACK\"}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-72.8, 43.9]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 33.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T00:00:00Z\", \"forecastHour\": 0}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.8, 46.8]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 998.0, \"windSpeedKnots\": 23.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T06:00:00Z\", \"forecastHour\": 6}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-71.0, 49.1]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 33.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T12:00:00Z\", \"forecastHour\": 12}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-70.6, 51.3]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1001.0, \"windSpeedKnots\": 20.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-05T18:00:00Z\", \"forecastHour\": 18}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-69.8, 53.4]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 999.0, \"windSpeedKnots\": 21.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T00:00:00Z\", \"forecastHour\": 24}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-69.5, 54.5]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 996.0, \"windSpeedKnots\": 20.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T06:00:00Z\", \"forecastHour\": 30}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-69.1, 54.5]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 995.0, \"windSpeedKnots\": 24.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T12:00:00Z\", \"forecastHour\": 36}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-67.3, 53.6]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 997.0, \"windSpeedKnots\": 26.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-06T18:00:00Z\", \"forecastHour\": 42}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-64.2, 52.1]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1003.0, \"windSpeedKnots\": 33.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T00:00:00Z\", \"forecastHour\": 48}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-61.8, 50.2]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1005.0, \"windSpeedKnots\": 29.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T06:00:00Z\", \"forecastHour\": 54}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-58.7, 48.8]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1009.0, \"windSpeedKnots\": 24.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T12:00:00Z\", \"forecastHour\": 60}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"Point\", \"coordinates\": [-54.0, 47.9]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_POINT\", \"minCentralPressureMb\": 1007.0, \"windSpeedKnots\": 26.0, \"movementSpeedKnots\": null, \"movementHeadingDeg\": null, \"initialDatetime\": \"2020-08-05T00:00:00Z\", \"validDatetime\": \"2020-08-07T18:00:00Z\", \"forecastHour\": 66}}, {\"type\": \"Feature\", \"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-72.8, 43.9], [-71.8, 46.8], [-71.0, 49.1], [-70.6, 51.3], [-69.8, 53.4], [-69.5, 54.5], [-69.1, 54.5], [-67.3, 53.6], [-64.2, 52.1], [-61.8, 50.2], [-58.7, 48.8], [-54.0, 47.9]]}, \"properties\": {\"forecastModel\": \"AVNO\", \"stormElement\": \"MODEL_TRACK\"}}], \"metadata\": {\"stormName\": \"Isaias\", \"source\": \"NHC\", \"stormNum\": \"20S\", \"stormId\": \"101\", \"advisoryDateTime\": \"2020-08-05T09:00:00Z\"}}]}"}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/cyclone-recon":{"get":{"tags":["Agency"],"summary":"Get Recon","description":"Returned GeoJson FeatureCollections contain recon points and lines.\n\n**Data returned from this endpoint contains data from Agency advisories ONLY**\n\nGeoJson properties:\n\n* **stormElement** ***(string)***: Type of storm element (\"RECON_POINT\" in this case).\n* **aircraft** ***(string)***: Aircraft callsign that made the observation.\n* **reconAgency** ***(string)***: Agency responsible for the reconnaissance mission (e.g., KNHC - National Hurricane Center Reconnaissance).\n* **mission** ***(integer)***: Mission number of the reconnaissance flight.\n* **observation** ***(integer)***: Observation number within the mission.\n* **altitudeMeters** ***(integer)***: Altitude of the observation in meters.\n* **windDirectionDeg** ***(integer)***: Wind direction at the observation point in degrees (clockwise from north).\n* **windSpeedKnots** ***(float)***: Wind speed at the observation point in knots.\n* **temperatureCel** ***(int)***: Air temperature at the observation point in degrees Celsius.\n* **dewpointCel** ***(int)***: Dewpoint temperature at the observation point in degrees Celsius.\n* **heightType** ***(string)***: Height information for flight level\n* **heightValue** ***(integer)***: Height value based on type indicator\n* **validDateTime** ***(string)***: Date and time when the observation was made in UTC format (YYYY-MM-DDTHH:MM:SSZ).","operationId":"get_recon_v1_cyclone_recon_get","security":[{"clientCredentials":[]}],"parameters":[{"name":"stormName","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by name of storm","title":"Stormname"},"description":"Optional: Filter results by name of storm"},{"name":"stormNum","in":"query","required":false,"schema":{"type":"string","description":"Optional: Filter results by number of storm","title":"Stormnum"},"description":"Optional: Filter results by number of storm"}],"responses":{"200":{"description":"Array of FeatureCollection Objects","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TropicalResponse"},"example":{"url":"https://tropical.api.dtn.com/v1/cyclone-recon/?stormName=Isaias","cycloneCount":1,"data":[{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.4,30.8]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":1,"altitudeMeters":7010,"windDirectionDeg":250,"windSpeedKnots":32,"temperatureCel":-15,"heightType":"400mb SFC","heightValue":7590,"validDateTime":"2020-08-03T21:59:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.4,31.7]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":2,"altitudeMeters":3050,"windDirectionDeg":300,"windSpeedKnots":31,"temperatureCel":9,"dewpointCel":5,"heightType":"700mb SFC","heightValue":133,"validDateTime":"2020-08-03T22:53:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.4,34.1]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":6,"altitudeMeters":3050,"windDirectionDeg":150,"windSpeedKnots":50,"temperatureCel":8,"dewpointCel":8,"heightType":"700mb SFC","heightValue":149,"validDateTime":"2020-08-03T23:50:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.4,34.2]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":7,"altitudeMeters":3050,"windDirectionDeg":150,"windSpeedKnots":44,"temperatureCel":7,"dewpointCel":7,"heightType":"700mb SFC","heightValue":148,"validDateTime":"2020-08-04T00:01:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.8,33]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":12,"altitudeMeters":3050,"windDirectionDeg":190,"windSpeedKnots":63,"temperatureCel":10,"dewpointCel":9,"heightType":"700mb SFC","heightValue":159,"validDateTime":"2020-08-04T01:01:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77,34.6]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":14,"altitudeMeters":3050,"windDirectionDeg":150,"windSpeedKnots":44,"temperatureCel":5,"heightType":"700mb SFC","heightValue":153,"validDateTime":"2020-08-04T01:24:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.6,32.8]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":20,"altitudeMeters":3050,"windDirectionDeg":290,"windSpeedKnots":42,"temperatureCel":8,"dewpointCel":8,"heightType":"700mb SFC","heightValue":115,"validDateTime":"2020-08-04T02:20:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.5,32.7]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":21,"altitudeMeters":3050,"windDirectionDeg":280,"windSpeedKnots":39,"temperatureCel":8,"heightType":"700mb SFC","heightValue":114,"validDateTime":"2020-08-04T02:22:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.6,33.9]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":26,"altitudeMeters":3050,"windDirectionDeg":200,"windSpeedKnots":65,"temperatureCel":9,"dewpointCel":7,"heightType":"700mb SFC","heightValue":149,"validDateTime":"2020-08-04T03:11:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.6,34.6]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":28,"altitudeMeters":3050,"windDirectionDeg":170,"windSpeedKnots":57,"temperatureCel":8,"dewpointCel":8,"heightType":"700mb SFC","heightValue":146,"validDateTime":"2020-08-04T03:23:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.1,33.8]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":32,"altitudeMeters":3050,"windDirectionDeg":250,"windSpeedKnots":66,"temperatureCel":8,"heightType":"700mb SFC","heightValue":65,"validDateTime":"2020-08-04T04:02:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.1,33.2]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":34,"altitudeMeters":3050,"windDirectionDeg":270,"windSpeedKnots":42,"temperatureCel":9,"dewpointCel":7,"heightType":"700mb SFC","heightValue":147,"validDateTime":"2020-08-04T04:27:00Z"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.1,32.9]},"properties":{"stormElement":"RECON_POINT","aircraft":"AF305","reconAgency":"KNHC","mission":25,"observation":35,"altitudeMeters":7330,"windDirectionDeg":260,"windSpeedKnots":38,"temperatureCel":-16,"dewpointCel":-40,"heightType":"400mb SFC","heightValue":7570,"validDateTime":"2020-08-04T04:42:00Z"}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-85.4,30.8],[-80.4,31.7],[-77.4,34.1],[-77.4,34.2],[-76.8,33],[-77,34.6],[-79.6,32.8],[-79.5,32.7],[-76.6,33.9],[-76.6,34.6],[-78.1,33.8],[-79.1,33.2],[-80.1,32.9]]},"properties":{"stormElement":"RECON_TRACK","aircraft":"AF305","reconAgency":"KNHC","mission":25}}],"metadata":{"stormName":"Isaias","source":"NHC","stormNum":"20S","stormId":"101","advisoryDateTime":"2020-08-05T09:00:00Z"}}]}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/":{"get":{"summary":"Redirect Docs","operationId":"redirect_docs__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}}},"components":{"schemas":{"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"StormMetadata":{"properties":{"stormName":{"type":"string","title":"Stormname"},"source":{"type":"string","title":"Source"},"advisoryDateTime":{"type":"string","title":"Advisorydatetime"},"stormNum":{"type":"string","title":"Stormnum"},"stormId":{"type":"integer","title":"Stormid"}},"type":"object","required":["stormName","source","advisoryDateTime","stormNum","stormId"],"title":"StormMetadata"},"TropicalFeature":{"properties":{"type":{"type":"string","title":"Type","default":"Feature"},"properties":{"type":"object","title":"Properties","default":{}},"geometry":{"$ref":"#/components/schemas/TropicalGeometry"}},"type":"object","required":["geometry"],"title":"TropicalFeature"},"TropicalFeatureCollection":{"properties":{"type":{"type":"string","title":"Type","default":"FeatureCollection"},"features":{"items":{"$ref":"#/components/schemas/TropicalFeature"},"type":"array","title":"Features","default":[]},"metadata":{"$ref":"#/components/schemas/StormMetadata"}},"type":"object","required":["metadata"],"title":"TropicalFeatureCollection"},"TropicalGeometry":{"properties":{"type":{"type":"string","enum":["Point","LineString","Polygon","MultiPoint","MultiLineString","MultiPolygon"],"title":"Type"},"coordinates":{"items":{},"type":"array","title":"Coordinates"}},"type":"object","required":["type","coordinates"],"title":"TropicalGeometry"},"TropicalResponse":{"properties":{"url":{"type":"string","title":"Url"},"cycloneCount":{"type":"integer","title":"Cyclonecount"},"data":{"items":{"$ref":"#/components/schemas/TropicalFeatureCollection"},"type":"array","title":"Data","default":[]}},"type":"object","required":["url","cycloneCount"],"title":"TropicalResponse"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"clientCredentials":{"type":"oauth2","x-receive-token-in":"request-body","flows":{"clientCredentials":{"tokenUrl":"https://api.auth.dtn.com/v1/tokens/authorize"}},"description":"# Using DAIS for M2M/API Auth\nYou have been given a Client ID and a Client Secret, which are used to request a DTN Access Token. DTN Access Tokens are required when making calls to each and every DTN API endpoint. The following information provides additional details on these tokens and how they are generated.\n## What is an Access Token and how is it different from an API Key?\nAn API Key is a random string of characters that an API uses to authorize whether or not a calling client has approved access to an endpoint. These keys are a non-standard approach to API authorization and are generally issued on a per-API basis.\n\nAn Access Token is also a string of characters but is a base-64 encoded JavaScript Object Notation Web Token, or JWT. JWTs are a widely accepted standard that use OAuth concepts and approaches. \n\nBoth API Keys and Access Tokens are used in an Authorization Request Header as a Bearer, meaning there is no difference in where you put this string of characters when you make calls to DTN APIs.\n## How to generate an Access Token?\nWhen requested, an Access Token is generated for your specific Client (ID/Secret) and for a specific API. The DTN Auth and Identity Service (DAIS) generates new Access Tokens for your client. The DAIS endpoint is `POST https://api.auth.dtn.com/v1/tokens/authorize`.\n\nThis endpoint takes two Header parameters:\n * `Content-Type: application/json`\n * `Accept: application/json`\n\nThis endpoint takes four parameters in the Request Body:\n * `grant_type`: this should always be client_credentials for generating machine-to-machine tokens.\n * `client_id`: this is the Client ID or Application ID using the token and is given to you by DTN's Identity Team. This ID will never change for your client/application.\n * `client_secret`: this is the Client Secret that is associated with the Application ID and is given to you by DTN's Identity Team. This key is subject to rotation for security purposes but always with the client's knowledge.\n * `audience`: this is the API for which this Access Token will be used. For the DTN Tropical Cyclone API, you need to use the following audience: https://tropical.api.dtn.com\n\nYou can use this CURL command template as a reference for obtaining an access token:\n ```\n curl --location --request POST 'https://api.auth.dtn.com/v1/tokens/authorize' \\\n--header 'Accept: application/json' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n\"grant_type\": \"client_credentials\",\n\"client_id\": \"insert your client id here\",\n\"client_secret\": \"insert your client secret here\",\n\"audience\": \"insert your audience here\"\n}' \n ```\n\n*This document, for demonstration purposes, supplies a client_id and client_secret in all code examples. This client/application is for a fictitious API and cannot be used in practice to gain unauthorized access to any other DTN API.*\nUpon generating a new Access Token, you should receive an HTTP Response from DAIS similar to this:\n ```\n {\n \"data\": {\n \"access_token\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6InpfX21pZW13NGhoTmdvQWQxR3N6ciJ9.eyJodHRwczovL2F1dGguZHRuLmNvbS9jdXN0b21lcklkIjoiMTIzNDU2Nzg5MERlbW8iLCJodHRwczovL2F1dGguZHRuLmNvbS9wcm9kdWN0Q29kZSI6IkRlbW9BcGlQIiwiaHR0cHM6Ly9hdXRoLmR0bi5jb20vcmVxdWVzdGVySXAiOiIxOC4yMTMuMTc0LjI3IiwiaHR0cHM6Ly9hdXRoLmR0bi5jb20vcnBzIjoiMTAwIiwiaHR0cHM6Ly9hdXRoLmR0bi5jb20vdGllciI6IkJhc2ljIiwiaHR0cHM6Ly9hdXRoLmR0bi5jb20vcXVvdGEiOiI5OTk5OTkiLCJpc3MiOiJodHRwczovL2lkLmF1dGguZHRuLmNvbS8iLCJzdWIiOiJuZnlPM0tpS1BSOE4wREtSNUNMOGpTOUdGQkNEZXlGTUBjbGllbnRzIiwiYXVkIjoiaHR0cHM6Ly9kZW1vLWFwaS5hdXRoLmR0bi5jb20vIiwiaWF0IjoxNjU2MDk5MDY4LCJleHAiOjE2NTYwOTkxNTgsImF6cCI6Im5meU8zS2lLUFI4TjBES1I1Q0w4alM5R0ZCQ0RleUZNIiwic2NvcGUiOiJyZWFkOmRlbW8gY3JlYXRlOmRlbW8gdXBkYXRlOmRlbW8iLCJndHkiOiJjbGllbnQtY3JlZGVudGlhbHMiLCJwZXJtaXNzaW9ucyI6WyJyZWFkOmRlbW8iLCJjcmVhdGU6ZGVtbyIsInVwZGF0ZTpkZW1vIl19.0VHdyp1w9PPFVI0FPheAwuKZwb5C25rwP-LPMXcSNoRmouvga1DZtNLA67ZzE_sAlc_VpaDRr6daLKr_Alw4347mw9sdjP8wKR27kCZa9JZK5PGQMmXHscATbzBEJYpCPklfyGaajgymqTBGnedcv8F0UvlRzQPsFeRPnVoX7BWOSXpMbyToGiXWkQLBQT7r96KAmLZOPJFZspPtjw-wH2mSL2WNa_nkB4j5vMGhGxlKiNRsKb30TH_WAel2hsxNlcPK3XHCmrMTYsNnu7HNqOTMn2i0__0rvBrhSWEw-_grqQDmWFJuWd7Qhi1q81AaJcdqgoSa_efz93QFclJUNw\",\n \"scope\": \"read:demo create:demo update:demo\",\n \"expires_in\": 90,\n \"token_type\": \"Bearer\"\n },\n \"meta\": {\n \"date_time\": \"2022-06-24T19:09:42.963Z\",\n \"name\": \"v1.tokens.authorize\",\n \"uuid\": \"ee6f9feb-dcf8-4421-a6fd-efd6beabdaa9\",\n \"start_timestamp\": 1656097782509,\n \"end_timestamp\": 1656097782963,\n \"execution_time\": 454\n }\n }\n ```\nLooking at this Response, you will see:\n * `access_token`: contains the JWT Access Token string you will use as your Bearer token.\n * `scope`: contains the scopes that this Access Token gives you permissions to access.\n * `expires_in`: contains the length of time before this Access Token will expire, in seconds.\n * `token_type`: verifies that this Access Token should be used as a Bearer token.\n\n## How to use an Access Token after one is generated?\nOnce a new Access Token is obtained, it is used in each call to a DTN API endpoint as a Bearer token in an Authorization Request Header. For example:\n ```\n Header: 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6InpfX21pZW13NGhoTmdvQWQxR3N6ciJ9.eyJodHRwczovL2F1dGguZHRuLmNvbS9jdXN0b21lcklkIjoiMTIzNDU2Nzg5MERlbW8iLCJodHRwczovL2F1dGguZHRuLmNvbS9wcm9kdWN0Q29kZSI6IkRlbW9BcGlQIiwiaHR0cHM6Ly9hdXRoLmR0bi5jb20vcmVxdWVzdGVySXAiOiIxOC4yMTMuMTc0LjI3IiwiaHR0cHM6Ly9hdXRoLmR0bi5jb20vcnBzIjoiMTAwIiwiaHR0cHM6Ly9hdXRoLmR0bi5jb20vdGllciI6IkJhc2ljIiwiaHR0cHM6Ly9hdXRoLmR0bi5jb20vcXVvdGEiOiI5OTk5OTkiLCJpc3MiOiJodHRwczovL2lkLmF1dGguZHRuLmNvbS8iLCJzdWIiOiJuZnlPM0tpS1BSOE4wREtSNUNMOGpTOUdGQkNEZXlGTUBjbGllbnRzIiwiYXVkIjoiaHR0cHM6Ly9kZW1vLWFwaS5hdXRoLmR0bi5jb20vIiwiaWF0IjoxNjU2MDk5MDY4LCJleHAiOjE2NTYwOTkxNTgsImF6cCI6Im5meU8zS2lLUFI4TjBES1I1Q0w4alM5R0ZCQ0RleUZNIiwic2NvcGUiOiJyZWFkOmRlbW8gY3JlYXRlOmRlbW8gdXBkYXRlOmRlbW8iLCJndHkiOiJjbGllbnQtY3JlZGVudGlhbHMiLCJwZXJtaXNzaW9ucyI6WyJyZWFkOmRlbW8iLCJjcmVhdGU6ZGVtbyIsInVwZGF0ZTpkZW1vIl19.0VHdyp1w9PPFVI0FPheAwuKZwb5C25rwP-LPMXcSNoRmouvga1DZtNLA67ZzE_sAlc_VpaDRr6daLKr_Alw4347mw9sdjP8wKR27kCZa9JZK5PGQMmXHscATbzBEJYpCPklfyGaajgymqTBGnedcv8F0UvlRzQPsFeRPnVoX7BWOSXpMbyToGiXWkQLBQT7r96KAmLZOPJFZspPtjw-wH2mSL2WNa_nkB4j5vMGhGxlKiNRsKb30TH_WAel2hsxNlcPK3XHCmrMTYsNnu7HNqOTMn2i0__0rvBrhSWEw-_grqQDmWFJuWd7Qhi1q81AaJcdqgoSa_efz93QFclJUNw'\n ```\n\n## Deconstructing the Access Token\nA DTN Access Token carries information within its JWT Body that is available on every API call. By deconstructing the JWT token, our Access Tokens will resemble:\n ```\n {\n \"https://auth.dtn.com/customerId\": \"1234567890Demo\",\n \"https://auth.dtn.com/productCode\": \"DemoApiP\",\n \"https://auth.dtn.com/requesterIp\": \"18.213.174.27\",\n \"https://auth.dtn.com/rps\": \"100\",\n \"https://auth.dtn.com/tier\": \"Basic\",\n \"https://auth.dtn.com/quota\": \"999999\",\n \"iss\": \"https://id.auth.dtn.com/\",\n \"sub\": \"nfyO3KiKPR8N0DKR5CL8jS9GFBCDeyFM@clients\",\n \"aud\": \"https://demo-api.auth.dtn.com/\",\n \"iat\": 1656099068,\n \"exp\": 1656099158,\n \"azp\": \"nfyO3KiKPR8N0DKR5CL8jS9GFBCDeyFM\",\n \"scope\": \"read:demo create:demo update:demo\",\n \"gty\": \"client-credentials\",\n \"permissions\": [\n \"read:demo\",\n \"create:demo\",\n \"update:demo\"\n ]\n }\n ```\n### Description of Claims\n\n | Claim | Type | Description |\n | -----------------------------------| --------------------------------------------| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n | `https://auth.dtn.com/customerId` | String | Custom DTN claim containing the Customer ID found in the DTN Order Management/Salesforce system associated with this token. |\n | `https://auth.dtn.com/productCode` | String | Custom DTN claim containing the Identity product code associated with this token. |\n | `https://auth.dtn.com/requesterIp` | String | Custom DTN claim containing the IP address of the requesting client. |\n | `https://auth.dtn.com/rps` | String | Custom DTN claim containing the maximum rate per second this customer is authorized to utilize. |\n | `https://auth.dtn.com/tier` | String | Custom DTN claim containing the data tier the customer purchased for the requested access. |\n | `https://auth.dtn.com/quota` | String | Custom DTN claim containing the maximum yearly quota the customer purchased for calling DTN endpoints for the specific product. |\n | `iss` | String (URI) | The Security Token Service (STS) that issues and returns the token. If this value is not from `https://id.auth.dtn.com/`, the token should not be considered trusted. |\n | `sub` | String (URI) | The principle about which the token asserts information (the User ID or Client ID within the Identity Provider). A User ID will start with a prefix of `auth0\\|`, while the Client ID will end with the suffix `@clients`. |\n | `aud` | String \\| Array (Strings) (URI \\| [URI, …]) | Identifies the intended recipient(s) of the token – its audience. The token should be rejected if the audience does not contain values expected by the calling application. |\n | `iat` | Number (Timestamp) | “Issued At” indicates when the authentication for this token occurred. |\n | `exp` | Number (Timestamp) | The “expiration time” on or after which the JWT must not be accepted for processing. |\n | `azp` | String | The application/client ID of the client using the token. The application can cat as itself or on behalf of a user. |\n | `gty` | String (Space-delimited) | The grant type that was used to request the token – not an RFC 7519 registered claim (Auth0-specific). |\n | `permissions` | Array (Strings) | The grant type that was used to request the token – not an RFC 7519 registered claim (Auth0-specific). |\n\n "}}}}