From: Jeremy Stanley Date: Thu, 9 May 2024 12:07:56 +0000 (+0000) Subject: Include time zones in WX weather zone data X-Git-Tag: 2.5.0~8 X-Git-Url: https://yuggoth.org/gitweb?a=commitdiff_plain;ds=inline;h=cb9c9cf74be0d3b42b5cb1f5818f40560e23091b;p=weather.git Include time zones in WX weather zone data Some NWS products, such as forecasts and other alerts, have expiration times marked relative to the issuing authority's local time zone. In preparation for being able to calculate expirations accurately relative to the user's local time, embed IANA TZDB compliant identifiers in all WX weather zone definitions, translated from their NWS time zone codes. Correlation files are all updated because of amending overrides accordingly. --- diff --git a/airports b/airports index f58621b..dec3fc0 100644 --- a/airports +++ b/airports @@ -2,7 +2,7 @@ # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. # -# generated by weather on 2024-05-08 from these public domain sources: +# generated by weather on 2024-05-09 from these public domain sources: # # https://www.census.gov/geographies/reference-files/time-series/geo/gazetteer-files.html # e1a7a8c036d2a631468e2402330e0734 2023-09-26 2023_Gaz_counties_national.zip @@ -20,7 +20,7 @@ # fb1d5e8ee6b1ff8d9f3cdb6f5794474f 2024-05-07 airports.csv # # ...and these manually-generated or hand-compiled adjustments: -# bc8445c46a3a21c565ce160c79d272b9 2024-05-08 overrides.conf +# 936686d449c96552c504a5a949074458 2024-05-09 overrides.conf # a6d1fbe41d0d1e985063bc3e1a5cc82d 2024-05-08 slist # 94635edc521fe4622eba10f1c56d1c65 2024-05-08 zlist diff --git a/overrides.conf b/overrides.conf index 68385ac..7be6b5b 100644 --- a/overrides.conf +++ b/overrides.conf @@ -1627,4 +1627,5 @@ location = None centroid = (0.3897902, 1.9928751) comment = suggested by Bill Agee description = Hong Kong Observatory +tz = Asia/Hong_Kong zone_forecast = https://www.hko.gov.hk/textonly/v2/forecast/nday.htm diff --git a/overrides.log b/overrides.log index 09597e0..0b19263 100644 --- a/overrides.log +++ b/overrides.log @@ -2,7 +2,7 @@ # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. -added zone hkz000 (+4 options) +added zone hkz000 (+5 options) changed station bk12 (+2 options) changed station cahr (+3 options) changed station cerm (+3 options) diff --git a/places b/places index 0a11da4..dbe2c93 100644 --- a/places +++ b/places @@ -2,7 +2,7 @@ # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. # -# generated by weather on 2024-05-08 from these public domain sources: +# generated by weather on 2024-05-09 from these public domain sources: # # https://www.census.gov/geographies/reference-files/time-series/geo/gazetteer-files.html # e1a7a8c036d2a631468e2402330e0734 2023-09-26 2023_Gaz_counties_national.zip @@ -20,7 +20,7 @@ # fb1d5e8ee6b1ff8d9f3cdb6f5794474f 2024-05-07 airports.csv # # ...and these manually-generated or hand-compiled adjustments: -# bc8445c46a3a21c565ce160c79d272b9 2024-05-08 overrides.conf +# 936686d449c96552c504a5a949074458 2024-05-09 overrides.conf # a6d1fbe41d0d1e985063bc3e1a5cc82d 2024-05-08 slist # 94635edc521fe4622eba10f1c56d1c65 2024-05-08 zlist diff --git a/stations b/stations index 693ea5b..3bc120e 100644 --- a/stations +++ b/stations @@ -2,7 +2,7 @@ # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. # -# generated by weather on 2024-05-08 from these public domain sources: +# generated by weather on 2024-05-09 from these public domain sources: # # https://www.census.gov/geographies/reference-files/time-series/geo/gazetteer-files.html # e1a7a8c036d2a631468e2402330e0734 2023-09-26 2023_Gaz_counties_national.zip @@ -20,7 +20,7 @@ # fb1d5e8ee6b1ff8d9f3cdb6f5794474f 2024-05-07 airports.csv # # ...and these manually-generated or hand-compiled adjustments: -# bc8445c46a3a21c565ce160c79d272b9 2024-05-08 overrides.conf +# 936686d449c96552c504a5a949074458 2024-05-09 overrides.conf # a6d1fbe41d0d1e985063bc3e1a5cc82d 2024-05-08 slist # 94635edc521fe4622eba10f1c56d1c65 2024-05-08 zlist diff --git a/weather.py b/weather.py index 4103dee..17a0e12 100644 --- a/weather.py +++ b/weather.py @@ -350,7 +350,7 @@ def get_alert( # report alerts and forecasts that expired less than offset ago; # this is a cheap hack since expiration times seem to be relative - # to the zone's local timezone, and converting from the user's + # to the zone's local time zone, and converting from the user's # would get complicated, but also there can sometimes be a lag # between expiration and the next update valid_time = time.strftime( @@ -1578,6 +1578,37 @@ def correlate(): zones[zone]["zone_forecast"] = ( "https://tgftp.nws.noaa.gov/data/forecasts/zone/" "%s/%s.txt" % (state.lower(), zone)) + tzcode = fields[7] + if tzcode == "A": + zones[zone]["tz"] = "US/Alaska" + elif tzcode == "AH": + zones[zone]["tz"] = "US/Aleutian" + elif tzcode in ("C", "CE", "CM"): + zones[zone]["tz"] = "US/Central" + elif tzcode in ("E", "e"): + zones[zone]["tz"] = "US/Eastern" + elif tzcode == "F": + zones[zone]["tz"] = "Pacific/Guadalcanal" + elif tzcode == "G": + zones[zone]["tz"] = "Pacific/Guam" + elif tzcode == "H": + zones[zone]["tz"] = "US/Hawaii" + elif tzcode == "J": + zones[zone]["tz"] = "Japan" + elif tzcode == "K": + zones[zone]["tz"] = "Pacific/Kwajalein" + elif tzcode in ("M", "MC", "MP"): + zones[zone]["tz"] = "US/Mountain" + elif tzcode == "m": + zones[zone]["tz"] = "US/Arizona" + elif tzcode == "P": + zones[zone]["tz"] = "US/Pacific" + elif tzcode == "S": + zones[zone]["tz"] = "US/Samoa" + elif tzcode == "V": + zones[zone]["tz"] = "America/Virgin" + else: + zones[zone]["tz"] = "" county = fields[5] if county: if description.endswith(county): diff --git a/zctas b/zctas index a6f57f4..8538f1b 100644 --- a/zctas +++ b/zctas @@ -2,7 +2,7 @@ # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. # -# generated by weather on 2024-05-08 from these public domain sources: +# generated by weather on 2024-05-09 from these public domain sources: # # https://www.census.gov/geographies/reference-files/time-series/geo/gazetteer-files.html # e1a7a8c036d2a631468e2402330e0734 2023-09-26 2023_Gaz_counties_national.zip @@ -20,7 +20,7 @@ # fb1d5e8ee6b1ff8d9f3cdb6f5794474f 2024-05-07 airports.csv # # ...and these manually-generated or hand-compiled adjustments: -# bc8445c46a3a21c565ce160c79d272b9 2024-05-08 overrides.conf +# 936686d449c96552c504a5a949074458 2024-05-09 overrides.conf # a6d1fbe41d0d1e985063bc3e1a5cc82d 2024-05-08 slist # 94635edc521fe4622eba10f1c56d1c65 2024-05-08 zlist diff --git a/zones b/zones index 7aa2472..da32e6a 100644 --- a/zones +++ b/zones @@ -2,7 +2,7 @@ # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. # -# generated by weather on 2024-05-08 from these public domain sources: +# generated by weather on 2024-05-09 from these public domain sources: # # https://www.census.gov/geographies/reference-files/time-series/geo/gazetteer-files.html # e1a7a8c036d2a631468e2402330e0734 2023-09-26 2023_Gaz_counties_national.zip @@ -20,7 +20,7 @@ # fb1d5e8ee6b1ff8d9f3cdb6f5794474f 2024-05-07 airports.csv # # ...and these manually-generated or hand-compiled adjustments: -# bc8445c46a3a21c565ce160c79d272b9 2024-05-08 overrides.conf +# 936686d449c96552c504a5a949074458 2024-05-09 overrides.conf # a6d1fbe41d0d1e985063bc3e1a5cc82d 2024-05-08 slist # 94635edc521fe4622eba10f1c56d1c65 2024-05-08 zlist @@ -39,6 +39,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz102.txt station = ('pabv', 0.0035685) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc020.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz102.txt @@ -57,6 +58,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz103.txt station = ('pato', 0.0044836) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc020.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz103.txt @@ -75,6 +77,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz112.txt station = ('paaq', 0.0012479) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc170.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz112.txt @@ -93,6 +96,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz121.txt station = ('pasx', 0.0039260) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc122.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz121.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz121.txt @@ -111,6 +115,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz126.txt station = ('pawd', 0.0051454) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc063.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz126.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz126.txt @@ -129,6 +134,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz132.txt station = ('pavd', 0.0005209) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc063.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz132.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz132.txt @@ -147,6 +153,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz135.txt station = ('pacv', 0.0047418) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc063.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz135.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz135.txt @@ -165,6 +172,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz142.txt station = ('pagk', 0.0065975) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc063.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz142.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz142.txt @@ -183,6 +191,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz145.txt station = ('patk', 0.0064946) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc170.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz145.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz145.txt @@ -201,6 +210,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz152.txt station = ('pasl', 0.0073722) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc170.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz152.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz152.txt @@ -219,6 +229,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz155.txt station = ('ppit', 0.0049036) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc050.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz155.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz155.txt @@ -237,6 +248,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz161.txt station = ('panw', 0.0029123) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc164.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz161.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz161.txt @@ -255,6 +267,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz171.txt station = ('padq', 0.0181711) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc164.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz171.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz171.txt @@ -273,6 +286,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz181.txt station = ('paou', 0.0069577) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc164.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz181.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz181.txt @@ -291,6 +305,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz185.txt station = ('padu', 0.0087042) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc016.txt +tz = US/Aleutian urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz185.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz185.txt @@ -309,6 +324,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz187.txt station = ('paak', 0.0096731) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc016.txt +tz = US/Aleutian urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz187.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz187.txt @@ -327,6 +343,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz191.txt station = ('pasy', 0.0162952) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc016.txt +tz = US/Aleutian urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz191.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz191.txt @@ -345,6 +362,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz195.txt station = ('pasn', 0.0050285) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc016.txt +tz = US/Aleutian urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz195.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz195.txt @@ -363,6 +381,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz317.txt station = ('paya', 0.0095187) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc282.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz317.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz317.txt @@ -381,6 +400,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz318.txt station = ('pagy', 0.0016972) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc230.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz318.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz318.txt @@ -399,6 +419,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz319.txt station = ('pahn', 0.0022182) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc100.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz319.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz319.txt @@ -417,6 +438,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz320.txt station = ('pael', 0.0103329) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc105.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz320.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz320.txt @@ -435,6 +457,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz321.txt station = ('paoh', 0.0016521) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc105.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz321.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz321.txt @@ -453,6 +476,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz322.txt station = ('pael', 0.0061433) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc105.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz322.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz322.txt @@ -471,6 +495,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz323.txt station = ('pasi', 0.0033176) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc220.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz323.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz323.txt @@ -489,6 +514,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz324.txt station = ('pagn', 0.0058562) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc105.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz324.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz324.txt @@ -507,6 +533,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz325.txt station = ('pajn', 0.0040206) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc110.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz325.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz325.txt @@ -525,6 +552,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz326.txt station = ('papg', 0.0055473) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc195.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz326.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz326.txt @@ -543,6 +571,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz327.txt station = ('pafe', 0.0053425) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc198.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz327.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz327.txt @@ -561,6 +590,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz328.txt station = ('pakw', 0.0024709) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc198.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz328.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz328.txt @@ -579,6 +609,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz329.txt station = ('pawg', 0.0043224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc275.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz329.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz329.txt @@ -597,6 +628,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz330.txt station = ('czst', 0.0109952) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc130.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz330.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz330.txt @@ -615,6 +647,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz331.txt station = ('czst', 0.0019026) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc198.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz331.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz331.txt @@ -633,6 +666,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz332.txt station = ('pamm', 0.0009275) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc198.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz332.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz332.txt @@ -651,6 +685,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz801.txt station = ('padg', 0.0187695) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz801.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz801.txt @@ -669,6 +704,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz802.txt station = ('pawi', 0.0065466) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz802.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz802.txt @@ -687,6 +723,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz803.txt station = ('pabr', 0.0130831) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz803.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz803.txt @@ -705,6 +742,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz804.txt station = ('paku', 0.0019200) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz804.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz804.txt @@ -723,6 +761,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz805.txt station = ('paba', 0.0055125) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz805.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz805.txt @@ -741,6 +780,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz806.txt station = ('patq', 0.0179979) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz806.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz806.txt @@ -759,6 +799,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz807.txt station = ('pafm', 0.0260122) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz807.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz807.txt @@ -777,6 +818,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz808.txt station = ('pagb', 0.0162989) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz808.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz808.txt @@ -795,6 +837,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz809.txt station = ('pakp', 0.0073096) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz809.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz809.txt @@ -813,6 +856,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz810.txt station = ('paad', 0.0222923) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc185.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz810.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz810.txt @@ -831,6 +875,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz811.txt station = ('pfyu', 0.0224702) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz811.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz811.txt @@ -849,6 +894,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz812.txt station = ('pakp', 0.0100336) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz812.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz812.txt @@ -867,6 +913,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz813.txt station = ('pafm', 0.0098987) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz813.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz813.txt @@ -885,6 +932,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz814.txt station = ('padg', 0.0087202) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz814.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz814.txt @@ -903,6 +951,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz815.txt station = ('pavl', 0.0034421) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz815.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz815.txt @@ -921,6 +970,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz816.txt station = ('paik', 0.0050268) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz816.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz816.txt @@ -939,6 +989,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz817.txt station = ('pabl', 0.0108582) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz817.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz817.txt @@ -957,6 +1008,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz818.txt station = ('pabl', 0.0043877) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz818.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz818.txt @@ -975,6 +1027,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz819.txt station = ('pagh', 0.0025016) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc188.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz819.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz819.txt @@ -993,6 +1046,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz820.txt station = ('pash', 0.0030243) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz820.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz820.txt @@ -1011,6 +1065,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz821.txt station = ('pfkt', 0.0020147) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz821.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz821.txt @@ -1029,6 +1084,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz822.txt station = ('pagl', 0.0109169) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz822.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz822.txt @@ -1047,6 +1103,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz823.txt station = ('pawm', 0.0104658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz823.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz823.txt @@ -1065,6 +1122,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz824.txt station = ('paun', 0.0057513) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz824.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz824.txt @@ -1083,6 +1141,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz825.txt station = ('pamo', 0.0047080) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc158.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz825.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz825.txt @@ -1101,6 +1160,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz826.txt station = ('padm', 0.0051846) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc158.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz826.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz826.txt @@ -1119,6 +1179,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz827.txt station = ('pasa', 0.0052734) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc180.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz827.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz827.txt @@ -1137,6 +1198,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz828.txt station = ('pahl', 0.0036085) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz828.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz828.txt @@ -1155,6 +1217,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz829.txt station = ('paga', 0.0047547) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz829.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz829.txt @@ -1173,6 +1236,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz830.txt station = ('pahc', 0.0192357) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz830.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz830.txt @@ -1191,6 +1255,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz831.txt station = ('pabt', 0.0134813) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz831.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz831.txt @@ -1209,6 +1274,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz832.txt station = ('papr', 0.0092151) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz832.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz832.txt @@ -1227,6 +1293,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz833.txt station = ('pfyu', 0.0046862) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz833.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz833.txt @@ -1245,6 +1312,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz834.txt station = ('pafb', 0.0121636) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz834.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz834.txt @@ -1263,6 +1331,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz835.txt station = ('paeg', 0.0129085) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz835.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz835.txt @@ -1281,6 +1350,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz836.txt station = ('pfto', 0.0066344) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz836.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz836.txt @@ -1299,6 +1369,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz837.txt station = ('pabi', 0.0012478) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz837.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz837.txt @@ -1317,6 +1388,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz838.txt station = ('pabi', 0.0147183) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz838.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz838.txt @@ -1335,6 +1407,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz839.txt station = ('paei', 0.0045996) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz839.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz839.txt @@ -1353,6 +1426,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz840.txt station = ('paei', 0.0025950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz840.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz840.txt @@ -1371,6 +1445,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz841.txt station = ('pafa', 0.0039367) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz841.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz841.txt @@ -1389,6 +1464,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz842.txt station = ('pafb', 0.0054928) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz842.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz842.txt @@ -1407,6 +1483,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz843.txt station = ('paei', 0.0049419) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz843.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz843.txt @@ -1425,6 +1502,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz844.txt station = ('pafa', 0.0016349) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc090.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz844.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz844.txt @@ -1443,6 +1521,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz845.txt station = ('pann', 0.0021089) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz845.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz845.txt @@ -1461,6 +1540,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz846.txt station = ('pata', 0.0075256) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz846.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz846.txt @@ -1479,6 +1559,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz847.txt station = ('pain', 0.0092355) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc068.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz847.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz847.txt @@ -1497,6 +1578,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz848.txt station = ('pain', 0.0098210) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc068.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz848.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz848.txt @@ -1515,6 +1597,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz849.txt station = ('pabi', 0.0048451) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz849.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz849.txt @@ -1533,6 +1616,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz850.txt station = ('pabi', 0.0128607) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc240.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz850.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz850.txt @@ -1551,6 +1635,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz851.txt station = ('pafs', 0.0097492) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz851.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz851.txt @@ -1569,6 +1654,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ak/akz852.txt station = ('pamc', 0.0034377) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ak/akc290.txt +tz = US/Alaska urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ak/akz852.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ak/akz852.txt @@ -1587,6 +1673,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz001.txt station = ('kmsl', 0.0027567) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz001.txt @@ -1605,6 +1692,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz002.txt station = ('kmsl', 0.0030636) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz002.txt @@ -1623,6 +1711,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz003.txt station = ('k1m4', 0.0044997) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz003.txt @@ -1641,6 +1730,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz004.txt station = ('kmsl', 0.0057497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz004.txt @@ -1659,6 +1749,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz005.txt station = ('kdcu', 0.0028301) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz005.txt @@ -1677,6 +1768,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz006.txt station = ('kmdq', 0.0017184) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz006.txt @@ -1695,6 +1787,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz007.txt station = ('kcmd', 0.0032262) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz007.txt @@ -1713,6 +1806,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz008.txt station = ('k8a0', 0.0025187) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz008.txt @@ -1731,6 +1825,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz009.txt station = ('k4a6', 0.0015858) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz009.txt @@ -1749,6 +1844,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz010.txt station = ('k4a9', 0.0012143) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz010.txt @@ -1767,6 +1863,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz011.txt station = ('k1m4', 0.0048402) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz011.txt @@ -1785,6 +1882,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz012.txt station = ('kcbm', 0.0056003) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz012.txt @@ -1803,6 +1901,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz013.txt station = ('kjfx', 0.0069201) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz013.txt @@ -1821,6 +1920,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz014.txt station = ('k1m4', 0.0039909) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz014.txt @@ -1839,6 +1939,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz015.txt station = ('kjfx', 0.0017382) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz015.txt @@ -1857,6 +1958,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz016.txt station = ('kcmd', 0.0023899) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz016.txt @@ -1875,6 +1977,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz017.txt station = ('k8a0', 0.0062485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz017.txt @@ -1893,6 +1996,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz018.txt station = ('kgad', 0.0015416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz018.txt @@ -1911,6 +2015,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz019.txt station = ('kanb', 0.0033007) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz019.txt @@ -1929,6 +2034,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz020.txt station = ('k4a9', 0.0054638) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz020.txt @@ -1947,6 +2053,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz021.txt station = ('kanb', 0.0050693) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz021.txt @@ -1965,6 +2072,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz022.txt station = ('ktcl', 0.0069805) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz022.txt @@ -1983,6 +2091,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz023.txt station = ('ktcl', 0.0018455) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz023.txt @@ -2001,6 +2110,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz024.txt station = ('kbhm', 0.0021416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz024.txt @@ -2019,6 +2129,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz025.txt station = ('keet', 0.0022810) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz025.txt @@ -2037,6 +2148,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz026.txt station = ('kplr', 0.0028996) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz026.txt @@ -2055,6 +2167,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz027.txt station = ('kplr', 0.0033475) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz027.txt @@ -2073,6 +2186,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz028.txt station = ('kanb', 0.0054865) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz028.txt @@ -2091,6 +2205,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz029.txt station = ('kctj', 0.0073912) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz029.txt @@ -2109,6 +2224,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz030.txt station = ('kdya', 0.0042302) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz030.txt @@ -2127,6 +2243,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz031.txt station = ('kdya', 0.0067947) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz031.txt @@ -2145,6 +2262,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz032.txt station = ('kdya', 0.0070742) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz032.txt @@ -2163,6 +2281,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz033.txt station = ('ksem', 0.0068041) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz033.txt @@ -2181,6 +2300,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz034.txt station = ('keet', 0.0059633) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz034.txt @@ -2199,6 +2319,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz035.txt station = ('keet', 0.0059301) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz035.txt @@ -2217,6 +2338,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz036.txt station = ('kalx', 0.0041894) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz036.txt @@ -2235,6 +2357,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz037.txt station = ('kalx', 0.0025887) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz037.txt @@ -2253,6 +2376,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz038.txt station = ('kauo', 0.0052317) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz038.txt @@ -2271,6 +2395,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz039.txt station = ('kdya', 0.0044864) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz039.txt @@ -2289,6 +2414,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz040.txt station = ('ksem', 0.0018647) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz040.txt @@ -2307,6 +2433,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz041.txt station = ('k1a9', 0.0025470) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz041.txt @@ -2325,6 +2452,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz042.txt station = ('kmgm', 0.0044795) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz042.txt @@ -2343,6 +2471,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz043.txt station = ('kmxf', 0.0049096) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz043.txt @@ -2361,6 +2490,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz044.txt station = ('kmgm', 0.0031628) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz044.txt @@ -2379,6 +2509,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz045.txt station = ('kauo', 0.0055473) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz045.txt @@ -2397,6 +2528,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz046.txt station = ('ktoi', 0.0060377) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz046.txt @@ -2415,6 +2547,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz047.txt station = ('kauo', 0.0011743) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz047.txt @@ -2433,6 +2566,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz048.txt station = ('kcsg', 0.0052777) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz048.txt @@ -2451,6 +2585,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz049.txt station = ('kprn', 0.0003591) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz049.txt @@ -2469,6 +2604,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz050.txt station = ('keuf', 0.0041255) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz050.txt @@ -2487,6 +2623,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz051.txt station = ('kdya', 0.0089989) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz051.txt @@ -2505,6 +2642,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz052.txt station = ('kmob', 0.0126487) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz052.txt @@ -2523,6 +2661,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz053.txt station = ('kgzh', 0.0124341) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz053.txt @@ -2541,6 +2680,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz054.txt station = ('ksem', 0.0079177) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz054.txt @@ -2559,6 +2699,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz055.txt station = ('kgzh', 0.0054136) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz055.txt @@ -2577,6 +2718,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz056.txt station = ('kgzh', 0.0008685) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz056.txt @@ -2595,6 +2737,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz057.txt station = ('kgzh', 0.0080342) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz057.txt @@ -2613,6 +2756,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz058.txt station = ('ktoi', 0.0049966) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz058.txt @@ -2631,6 +2775,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz059.txt station = ('kgzh', 0.0053360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz059.txt @@ -2649,6 +2794,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz060.txt station = ('k79j', 0.0013538) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz060.txt @@ -2667,6 +2813,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz065.txt station = ('kedn', 0.0022265) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz065.txt @@ -2685,6 +2832,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz066.txt station = ('khey', 0.0016511) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz066.txt @@ -2703,6 +2851,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz067.txt station = ('khdl', 0.0028266) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz067.txt @@ -2721,6 +2870,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz068.txt station = ('kedn', 0.0036866) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz068.txt @@ -2739,6 +2889,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz069.txt station = ('kdhn', 0.0036035) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz069.txt @@ -2757,6 +2908,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz261.txt station = ('kmob', 0.0042573) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz261.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz261.txt @@ -2775,6 +2927,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz262.txt station = ('kcqf', 0.0031695) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz262.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz262.txt @@ -2793,6 +2946,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz263.txt station = ('kmob', 0.0027062) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz263.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz263.txt @@ -2811,6 +2965,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz264.txt station = ('kbfm', 0.0071361) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz264.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz264.txt @@ -2829,6 +2984,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz265.txt station = ('kmob', 0.0027062) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz265.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz265.txt @@ -2847,6 +3003,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/al/alz266.txt station = ('kcqf', 0.0031695) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/al/alc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/al/alz266.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/al/alz266.txt @@ -2865,6 +3022,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz001.txt station = ('kvbt', 0.0006015) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz001.txt @@ -2883,6 +3041,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz002.txt station = ('kbbg', 0.0057966) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz002.txt @@ -2901,6 +3060,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz004.txt station = ('kflp', 0.0015225) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz004.txt @@ -2919,6 +3079,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz005.txt station = ('kbpk', 0.0022908) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz005.txt @@ -2937,6 +3098,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz006.txt station = ('k42a', 0.0054253) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz006.txt @@ -2955,6 +3117,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz007.txt station = ('k42a', 0.0051819) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz007.txt @@ -2973,6 +3136,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz008.txt station = ('karg', 0.0039557) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz008.txt @@ -2991,6 +3155,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz009.txt station = ('ktkx', 0.0059053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz009.txt @@ -3009,6 +3174,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz010.txt station = ('kfyv', 0.0007629) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz010.txt @@ -3027,6 +3193,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz011.txt station = ('kasg', 0.0062943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz011.txt @@ -3045,6 +3212,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz014.txt station = ('k42a', 0.0059042) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz014.txt @@ -3063,6 +3231,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz015.txt station = ('k42a', 0.0012468) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz015.txt @@ -3081,6 +3250,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz016.txt station = ('kbvx', 0.0011451) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz016.txt @@ -3099,6 +3269,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz017.txt station = ('karg', 0.0031296) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz017.txt @@ -3117,6 +3288,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz018.txt station = ('karg', 0.0050482) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz018.txt @@ -3135,6 +3307,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz019.txt station = ('kfsm', 0.0047944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz019.txt @@ -3153,6 +3326,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz020.txt station = ('kfsm', 0.0074567) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz020.txt @@ -3171,6 +3345,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz024.txt station = ('kbvx', 0.0063375) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz024.txt @@ -3189,6 +3364,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz025.txt station = ('km19', 0.0008605) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz025.txt @@ -3207,6 +3383,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz026.txt station = ('kjbr', 0.0002474) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz026.txt @@ -3225,6 +3402,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz027.txt station = ('kjbr', 0.0045299) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz027.txt @@ -3243,6 +3421,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz028.txt station = ('khka', 0.0043000) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz028.txt @@ -3261,6 +3440,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz029.txt station = ('kfsm', 0.0026863) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz029.txt @@ -3279,6 +3459,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz031.txt station = ('kcxw', 0.0047164) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz031.txt @@ -3297,6 +3478,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz032.txt station = ('kcxw', 0.0038816) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz032.txt @@ -3315,6 +3497,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz033.txt station = ('ksrc', 0.0007835) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz033.txt @@ -3333,6 +3516,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz034.txt station = ('kdrp', 0.0060563) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz034.txt @@ -3351,6 +3535,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz035.txt station = ('kdrp', 0.0031667) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz035.txt @@ -3369,6 +3554,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz036.txt station = ('kawm', 0.0016900) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz036.txt @@ -3387,6 +3573,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz039.txt station = ('kcxw', 0.0055290) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz039.txt @@ -3405,6 +3592,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz042.txt station = ('khot', 0.0017834) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz042.txt @@ -3423,6 +3611,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz043.txt station = ('ksuz', 0.0029963) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz043.txt @@ -3441,6 +3630,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz044.txt station = ('klit', 0.0012936) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz044.txt @@ -3459,6 +3649,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz045.txt station = ('klrf', 0.0046960) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz045.txt @@ -3477,6 +3668,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz046.txt station = ('ksgt', 0.0040140) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz046.txt @@ -3495,6 +3687,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz047.txt station = ('ksgt', 0.0053847) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz047.txt @@ -3513,6 +3706,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz048.txt station = ('kdrp', 0.0020476) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz048.txt @@ -3531,6 +3725,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz049.txt station = ('kdrp', 0.0059587) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz049.txt @@ -3549,6 +3744,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz050.txt station = ('kdeq', 0.0024744) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz050.txt @@ -3567,6 +3763,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz051.txt station = ('kdeq', 0.0059171) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz051.txt @@ -3585,6 +3782,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz052.txt station = ('kmwt', 0.0068256) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz052.txt @@ -3603,6 +3801,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz053.txt station = ('kadf', 0.0018078) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz053.txt @@ -3621,6 +3820,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz054.txt station = ('khot', 0.0036435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz054.txt @@ -3639,6 +3839,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz055.txt station = ('ksuz', 0.0053076) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz055.txt @@ -3657,6 +3858,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz056.txt station = ('kpbf', 0.0014919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz056.txt @@ -3675,6 +3877,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz057.txt station = ('ksgt', 0.0060614) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz057.txt @@ -3693,6 +3896,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz058.txt station = ('kckm', 0.0053319) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz058.txt @@ -3711,6 +3915,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz059.txt station = ('ktxk', 0.0056950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz059.txt @@ -3729,6 +3934,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz060.txt station = ('ktxk', 0.0067658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz060.txt @@ -3747,6 +3953,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz061.txt station = ('kago', 0.0077239) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz061.txt @@ -3765,6 +3972,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz062.txt station = ('kadf', 0.0063709) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz062.txt @@ -3783,6 +3991,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz063.txt station = ('kpbf', 0.0061644) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz063.txt @@ -3801,6 +4010,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz064.txt station = ('kpbf', 0.0048887) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz064.txt @@ -3819,6 +4029,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz065.txt station = ('kglh', 0.0072643) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz065.txt @@ -3837,6 +4048,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz066.txt station = ('kcdh', 0.0017254) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz066.txt @@ -3855,6 +4067,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz067.txt station = ('kcdh', 0.0039665) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz067.txt @@ -3873,6 +4086,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz068.txt station = ('kllq', 0.0066700) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz068.txt @@ -3891,6 +4105,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz069.txt station = ('kllq', 0.0008806) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz069.txt @@ -3909,6 +4124,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz070.txt station = ('ktxk', 0.0027472) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz070.txt @@ -3927,6 +4143,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz071.txt station = ('kago', 0.0057022) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz071.txt @@ -3945,6 +4162,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz072.txt station = ('kago', 0.0002825) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz072.txt @@ -3963,6 +4181,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz073.txt station = ('keld', 0.0033003) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz073.txt @@ -3981,6 +4200,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz074.txt station = ('kllq', 0.0077211) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz074.txt @@ -3999,6 +4219,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz075.txt station = ('kglh', 0.0058934) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz075.txt @@ -4017,6 +4238,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz103.txt station = ('khro', 0.0014216) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz103.txt @@ -4035,6 +4257,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz112.txt station = ('khro', 0.0066104) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz112.txt @@ -4053,6 +4276,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz113.txt station = ('kflp', 0.0059551) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz113.txt @@ -4071,6 +4295,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz121.txt station = ('krue', 0.0066051) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz121.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz121.txt @@ -4089,6 +4314,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz122.txt station = ('krue', 0.0017106) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz122.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz122.txt @@ -4107,6 +4333,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz123.txt station = ('kcca', 0.0016352) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz123.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz123.txt @@ -4125,6 +4352,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz130.txt station = ('kfsm', 0.0089612) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz130.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz130.txt @@ -4143,6 +4371,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz137.txt station = ('kfsm', 0.0075152) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz137.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz137.txt @@ -4161,6 +4390,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz138.txt station = ('krue', 0.0062347) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz138.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz138.txt @@ -4179,6 +4409,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz140.txt station = ('kmez', 0.0027531) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz140.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz140.txt @@ -4197,6 +4428,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz141.txt station = ('kmwt', 0.0005737) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz141.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz141.txt @@ -4215,6 +4447,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz203.txt station = ('khro', 0.0019647) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz203.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz203.txt @@ -4233,6 +4466,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz212.txt station = ('khro', 0.0038441) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz212.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz212.txt @@ -4251,6 +4485,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz213.txt station = ('khro', 0.0054889) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz213.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz213.txt @@ -4269,6 +4504,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz221.txt station = ('krue', 0.0086236) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz221.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz221.txt @@ -4287,6 +4523,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz222.txt station = ('krue', 0.0064053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz222.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz222.txt @@ -4305,6 +4542,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz223.txt station = ('kcca', 0.0022773) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz223.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz223.txt @@ -4323,6 +4561,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz230.txt station = ('krue', 0.0083077) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz230.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz230.txt @@ -4341,6 +4580,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz237.txt station = ('kmez', 0.0051667) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz237.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz237.txt @@ -4359,6 +4599,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz238.txt station = ('krue', 0.0063541) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz238.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz238.txt @@ -4377,6 +4618,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz240.txt station = ('kmez', 0.0017978) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz240.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz240.txt @@ -4395,6 +4637,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz241.txt station = ('kmwt', 0.0028142) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz241.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz241.txt @@ -4413,6 +4656,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz313.txt station = ('kcca', 0.0056474) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz313.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz313.txt @@ -4431,6 +4675,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz340.txt station = ('kmez', 0.0019991) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz340.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz340.txt @@ -4449,6 +4694,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ar/arz341.txt station = ('kmwt', 0.0041148) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ar/arc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ar/arz341.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ar/arz341.txt @@ -4467,6 +4713,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/as/asz001.txt station = ('nstu', 0.0004858) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/as/asc050.txt +tz = US/Samoa urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/as/asz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz001.txt @@ -4485,6 +4732,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/as/asz002.txt station = ('nstu', 0.0205729) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/as/asc020.txt +tz = US/Samoa urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/as/asz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz002.txt @@ -4503,6 +4751,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/as/asz003.txt station = ('nsfa', 0.0503820) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/as/asc040.txt +tz = US/Samoa urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/as/asz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz003.txt @@ -4521,6 +4770,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/as/asz004.txt station = ('nstu', 0.0434379) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/as/asc030.txt +tz = US/Samoa urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/as/asz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/as/asz004.txt @@ -4539,6 +4789,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz001.txt station = ('kazc', 0.0077797) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc015.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz001.txt @@ -4557,6 +4808,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz002.txt station = ('khii', 0.0018387) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc015.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz002.txt @@ -4575,6 +4827,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz003.txt station = ('kigm', 0.0016767) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc015.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz003.txt @@ -4593,6 +4846,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz004.txt station = ('kknb', 0.0077821) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz004.txt @@ -4611,6 +4865,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz005.txt station = ('kpga', 0.0040811) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz005.txt @@ -4629,6 +4884,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz006.txt station = ('kgcn', 0.0047248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz006.txt @@ -4647,6 +4903,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz007.txt station = ('kgcn', 0.0068805) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz007.txt @@ -4665,6 +4922,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz008.txt station = ('kprc', 0.0047194) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc025.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz008.txt @@ -4683,6 +4941,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz009.txt station = ('kpga', 0.0114063) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz009.txt @@ -4701,6 +4960,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz010.txt station = ('krqe', 0.0179722) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz010.txt @@ -4719,6 +4979,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz011.txt station = ('krqe', 0.0045048) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc001.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz011.txt @@ -4737,6 +4998,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz012.txt station = ('kflg', 0.0091057) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz012.txt @@ -4755,6 +5017,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz013.txt station = ('kinw', 0.0066565) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz013.txt @@ -4773,6 +5036,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz014.txt station = ('kjtc', 0.0079374) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc001.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz014.txt @@ -4791,6 +5055,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz015.txt station = ('kflg', 0.0022248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc005.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz015.txt @@ -4809,6 +5074,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz016.txt station = ('kpan', 0.0082491) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz016.txt @@ -4827,6 +5093,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz017.txt station = ('kjtc', 0.0060476) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz017.txt @@ -4845,6 +5112,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz018.txt station = ('kpan', 0.0071060) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz018.txt @@ -4863,6 +5131,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz036.txt station = ('kbvu', 0.0080431) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc015.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz036.txt @@ -4881,6 +5150,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz037.txt station = ('kprc', 0.0040766) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc025.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz037.txt @@ -4899,6 +5169,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz038.txt station = ('ksez', 0.0017491) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc025.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz038.txt @@ -4917,6 +5188,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz039.txt station = ('kpga', 0.0196868) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz039.txt @@ -4935,6 +5207,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz040.txt station = ('kinw', 0.0110077) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc017.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz040.txt @@ -4953,6 +5226,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz501.txt station = ('kgxf', 0.0123012) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc019.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz501.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz501.txt @@ -4971,6 +5245,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz502.txt station = ('kmzj', 0.0126054) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz502.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz502.txt @@ -4989,6 +5264,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz503.txt station = ('kols', 0.0058624) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc023.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz503.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz503.txt @@ -5007,6 +5283,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz504.txt station = ('kryn', 0.0018482) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc019.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz504.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz504.txt @@ -5025,6 +5302,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz505.txt station = ('kp08', 0.0035682) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz505.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz505.txt @@ -5043,6 +5321,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz506.txt station = ('kavq', 0.0099716) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz506.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz506.txt @@ -5061,6 +5340,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz507.txt station = ('kalk', 0.0059897) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc023.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz507.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz507.txt @@ -5079,6 +5359,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz508.txt station = ('kdug', 0.0078619) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc003.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz508.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz508.txt @@ -5097,6 +5378,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz509.txt station = ('ksad', 0.0016589) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc011.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz509.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz509.txt @@ -5115,6 +5397,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz510.txt station = ('ksad', 0.0096047) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc011.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz510.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz510.txt @@ -5133,6 +5416,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz511.txt station = ('ksad', 0.0078697) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz511.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz511.txt @@ -5151,6 +5435,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz512.txt station = ('kdug', 0.0077878) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc003.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz512.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz512.txt @@ -5169,6 +5454,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz513.txt station = ('kalk', 0.0006663) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc023.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz513.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz513.txt @@ -5187,6 +5473,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz514.txt station = ('kdma', 0.0042087) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz514.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz514.txt @@ -5205,6 +5492,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz515.txt station = ('kryn', 0.0083792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc019.txt +tz = US/Arizona urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz515.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz515.txt @@ -5223,6 +5511,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz530.txt station = ('kblh', 0.0040382) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc012.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz530.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz530.txt @@ -5241,6 +5530,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz531.txt station = ('klgf', 0.0082471) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz531.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz531.txt @@ -5259,6 +5549,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz532.txt station = ('knyl', 0.0013042) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz532.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz532.txt @@ -5277,6 +5568,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz533.txt station = ('kblh', 0.0135501) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc012.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz533.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz533.txt @@ -5295,6 +5587,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz534.txt station = ('kbxk', 0.0088329) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz534.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz534.txt @@ -5313,6 +5606,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz535.txt station = ('klgf', 0.0125257) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz535.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz535.txt @@ -5331,6 +5625,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz536.txt station = ('klgf', 0.0087210) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz536.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz536.txt @@ -5349,6 +5644,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz537.txt station = ('kluf', 0.0038896) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz537.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz537.txt @@ -5367,6 +5663,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz538.txt station = ('kbxk', 0.0041623) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz538.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz538.txt @@ -5385,6 +5682,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz539.txt station = ('kgxf', 0.0049683) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz539.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz539.txt @@ -5403,6 +5701,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz540.txt station = ('kgyr', 0.0005093) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz540.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz540.txt @@ -5421,6 +5720,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz541.txt station = ('kdvt', 0.0023214) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz541.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz541.txt @@ -5439,6 +5739,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz542.txt station = ('kdvt', 0.0010499) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz542.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz542.txt @@ -5457,6 +5758,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz543.txt station = ('kphx', 0.0000624) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz543.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz543.txt @@ -5475,6 +5777,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz544.txt station = ('kdvt', 0.0023149) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz544.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz544.txt @@ -5493,6 +5796,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz545.txt station = ('kdvt', 0.0049598) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz545.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz545.txt @@ -5511,6 +5815,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz546.txt station = ('ksdl', 0.0014790) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz546.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz546.txt @@ -5529,6 +5834,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz547.txt station = ('kffz', 0.0052250) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz547.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz547.txt @@ -5547,6 +5853,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz548.txt station = ('kchd', 0.0018736) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz548.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz548.txt @@ -5565,6 +5872,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz549.txt station = ('kffz', 0.0016070) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz549.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz549.txt @@ -5583,6 +5891,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz550.txt station = ('kphx', 0.0026417) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz550.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz550.txt @@ -5601,6 +5910,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz551.txt station = ('kchd', 0.0011142) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz551.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz551.txt @@ -5619,6 +5929,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz552.txt station = ('kiwa', 0.0067886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz552.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz552.txt @@ -5637,6 +5948,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz553.txt station = ('kcgz', 0.0012565) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz553.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz553.txt @@ -5655,6 +5967,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz554.txt station = ('ka39', 0.0036738) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz554.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz554.txt @@ -5673,6 +5986,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz555.txt station = ('kiwa', 0.0040302) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz555.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz555.txt @@ -5691,6 +6005,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz556.txt station = ('kffz', 0.0097629) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz556.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz556.txt @@ -5709,6 +6024,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz557.txt station = ('kpan', 0.0076575) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz557.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz557.txt @@ -5727,6 +6043,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz558.txt station = ('kp08', 0.0100217) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz558.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz558.txt @@ -5745,6 +6062,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz559.txt station = ('kgxf', 0.0032443) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz559.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz559.txt @@ -5763,6 +6081,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz560.txt station = ('kp08', 0.0148722) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz560.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz560.txt @@ -5781,6 +6100,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz561.txt station = ('kp08', 0.0098268) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz561.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz561.txt @@ -5799,6 +6119,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz562.txt station = ('kp08', 0.0124482) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz562.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz562.txt @@ -5817,6 +6138,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/az/azz563.txt station = ('ksow', 0.0131467) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/az/azc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/az/azz563.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/az/azz563.txt @@ -5835,6 +6157,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz006.txt station = ('ksfo', 0.0026435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac075.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz006.txt @@ -5853,6 +6176,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz013.txt station = ('kmhs', 0.0068578) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac089.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz013.txt @@ -5871,6 +6195,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz014.txt station = ('ko05', 0.0119741) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac089.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz014.txt @@ -5889,6 +6214,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz015.txt station = ('krbl', 0.0013574) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac103.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz015.txt @@ -5907,6 +6233,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz016.txt station = ('kove', 0.0046946) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac115.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz016.txt @@ -5925,6 +6252,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz017.txt station = ('ksmf', 0.0013760) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac113.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz017.txt @@ -5943,6 +6271,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz018.txt station = ('ksuu', 0.0033572) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac095.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz018.txt @@ -5961,6 +6290,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz019.txt station = ('kmod', 0.0027700) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac109.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz019.txt @@ -5979,6 +6309,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz038.txt station = ('kiza', 0.0075986) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz038.txt @@ -5997,6 +6328,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz043.txt station = ('knkx', 0.0023258) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz043.txt @@ -6015,6 +6347,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz048.txt station = ('kriv', 0.0009061) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz048.txt @@ -6033,6 +6366,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz050.txt station = ('krnm', 0.0008120) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz050.txt @@ -6051,6 +6385,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz055.txt station = ('ksbd', 0.0030216) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz055.txt @@ -6069,6 +6404,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz056.txt station = ('kpsp', 0.0036719) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz056.txt @@ -6087,6 +6423,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz057.txt station = ('kajo', 0.0052060) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz057.txt @@ -6105,6 +6442,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz058.txt station = ('kl08', 0.0045030) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz058.txt @@ -6123,6 +6461,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz060.txt station = ('kl35', 0.0053750) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz060.txt @@ -6141,6 +6480,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz061.txt station = ('ktrm', 0.0028966) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz061.txt @@ -6159,6 +6499,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz062.txt station = ('kl08', 0.0037602) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac073.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz062.txt @@ -6177,6 +6518,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz063.txt station = ('krbl', 0.0089195) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac103.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz063.txt @@ -6195,6 +6537,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz065.txt station = ('kblh', 0.0077248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz065.txt @@ -6213,6 +6556,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz066.txt station = ('kcic', 0.0055819) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac103.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz066.txt @@ -6231,6 +6575,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz067.txt station = ('kpvf', 0.0018469) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac115.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz067.txt @@ -6249,6 +6594,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz068.txt station = ('ko05', 0.0020807) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac103.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz068.txt @@ -6267,6 +6613,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz069.txt station = ('kpvf', 0.0056831) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac115.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz069.txt @@ -6285,6 +6632,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz070.txt station = ('kaat', 0.0066632) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac049.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz070.txt @@ -6303,6 +6651,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz071.txt station = ('ksve', 0.0014660) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac091.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz071.txt @@ -6321,6 +6670,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz072.txt station = ('ktvl', 0.0011487) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac061.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz072.txt @@ -6339,6 +6689,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz073.txt station = ('kmmh', 0.0056737) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac051.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz073.txt @@ -6357,6 +6708,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz080.txt station = ('ko86', 0.0117492) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz080.txt @@ -6375,6 +6727,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz081.txt station = ('ksiy', 0.0013636) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz081.txt @@ -6393,6 +6746,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz082.txt station = ('kmhs', 0.0019108) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz082.txt @@ -6411,6 +6765,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz083.txt station = ('kmhs', 0.0067630) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz083.txt @@ -6429,6 +6784,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz084.txt station = ('klmt', 0.0050989) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac093.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz084.txt @@ -6447,6 +6803,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz085.txt station = ('kaat', 0.0028506) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac049.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz085.txt @@ -6465,6 +6822,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz087.txt station = ('kavx', 0.0003950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz087.txt @@ -6483,6 +6841,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz088.txt station = ('kwhp', 0.0042165) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz088.txt @@ -6501,6 +6860,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz101.txt station = ('kacv', 0.0007173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac015.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz101.txt @@ -6519,6 +6879,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz102.txt station = ('kacv', 0.0007173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac015.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz102.txt @@ -6537,6 +6898,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz103.txt station = ('kacv', 0.0007173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz103.txt @@ -6555,6 +6917,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz104.txt station = ('kacv', 0.0007173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz104.txt @@ -6573,6 +6936,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz105.txt station = ('kacv', 0.0007173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz105.txt @@ -6591,6 +6955,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz106.txt station = ('kacv', 0.0007173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz106.txt @@ -6609,6 +6974,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz107.txt station = ('ko54', 0.0025853) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac105.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz107.txt @@ -6627,6 +6993,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz108.txt station = ('ko54', 0.0025853) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac105.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz108.txt @@ -6645,6 +7012,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz109.txt station = ('kuki', 0.0083036) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz109.txt @@ -6663,6 +7031,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz110.txt station = ('kuki', 0.0093364) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz110.txt @@ -6681,6 +7050,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz111.txt station = ('kuki', 0.0109729) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz111.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz111.txt @@ -6699,6 +7069,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz112.txt station = ('kuki', 0.0039657) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz112.txt @@ -6717,6 +7088,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz113.txt station = ('kuki', 0.0007520) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac045.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz113.txt @@ -6735,6 +7107,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz114.txt station = ('kuki', 0.0060569) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac033.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz114.txt @@ -6753,6 +7126,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz115.txt station = ('ksts', 0.0084852) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac033.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz115.txt @@ -6771,6 +7145,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz300.txt station = ('kcvh', 0.0096207) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz300.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz300.txt @@ -6789,6 +7164,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz301.txt station = ('kmce', 0.0071674) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz301.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz301.txt @@ -6807,6 +7183,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz302.txt station = ('kmce', 0.0034303) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz302.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz302.txt @@ -6825,6 +7202,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz303.txt station = ('kmae', 0.0049050) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz303.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz303.txt @@ -6843,6 +7221,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz304.txt station = ('knlc', 0.0057188) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz304.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz304.txt @@ -6861,6 +7240,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz305.txt station = ('knlc', 0.0023040) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz305.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz305.txt @@ -6879,6 +7259,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz306.txt station = ('kfch', 0.0027828) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz306.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz306.txt @@ -6897,6 +7278,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz307.txt station = ('kfat', 0.0003220) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac019.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz307.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz307.txt @@ -6915,6 +7297,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz308.txt station = ('kprb', 0.0084699) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz308.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz308.txt @@ -6933,6 +7316,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz309.txt station = ('kdlo', 0.0057718) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz309.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz309.txt @@ -6951,6 +7335,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz310.txt station = ('kdlo', 0.0019559) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz310.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz310.txt @@ -6969,6 +7354,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz311.txt station = ('khjo', 0.0017148) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz311.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz311.txt @@ -6987,6 +7373,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz312.txt station = ('kvis', 0.0021187) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz312.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz312.txt @@ -7005,6 +7392,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz313.txt station = ('kbfl', 0.0069228) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz313.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz313.txt @@ -7023,6 +7411,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz314.txt station = ('kbfl', 0.0013222) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz314.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz314.txt @@ -7041,6 +7430,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz315.txt station = ('kdlo', 0.0028510) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz315.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz315.txt @@ -7059,6 +7449,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz316.txt station = ('kbfl', 0.0052220) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz316.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz316.txt @@ -7077,6 +7468,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz317.txt station = ('kmae', 0.0066328) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz317.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz317.txt @@ -7095,6 +7487,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz318.txt station = ('kmae', 0.0097573) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac043.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz318.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz318.txt @@ -7113,6 +7506,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz319.txt station = ('ko32', 0.0036349) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz319.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz319.txt @@ -7131,6 +7525,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz320.txt station = ('ko32', 0.0051352) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz320.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz320.txt @@ -7149,6 +7544,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz321.txt station = ('kbfl', 0.0057869) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz321.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz321.txt @@ -7167,6 +7563,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz322.txt station = ('kptv', 0.0047210) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz322.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz322.txt @@ -7185,6 +7582,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz323.txt station = ('kban', 0.0086904) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac109.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz323.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz323.txt @@ -7203,6 +7601,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz324.txt station = ('kban', 0.0112031) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac043.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz324.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz324.txt @@ -7221,6 +7620,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz325.txt station = ('kmmh', 0.0083829) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac039.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz325.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz325.txt @@ -7239,6 +7639,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz326.txt station = ('kmmh', 0.0049224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac039.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz326.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz326.txt @@ -7257,6 +7658,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz327.txt station = ('kmmh', 0.0093425) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac019.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz327.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz327.txt @@ -7275,6 +7677,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz328.txt station = ('kbih', 0.0087220) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz328.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz328.txt @@ -7293,6 +7696,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz329.txt station = ('ko32', 0.0085331) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz329.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz329.txt @@ -7311,6 +7715,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz330.txt station = ('kptv', 0.0107960) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz330.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz330.txt @@ -7329,6 +7734,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz331.txt station = ('knid', 0.0108007) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz331.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz331.txt @@ -7347,6 +7753,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz332.txt station = ('ktsp', 0.0088710) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac107.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz332.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz332.txt @@ -7365,6 +7772,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz333.txt station = ('ktsp', 0.0052955) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz333.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz333.txt @@ -7383,6 +7791,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz334.txt station = ('ktsp', 0.0015450) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz334.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz334.txt @@ -7401,6 +7810,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz335.txt station = ('ksdb', 0.0036435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz335.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz335.txt @@ -7419,6 +7829,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz336.txt station = ('ksdb', 0.0073141) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz336.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz336.txt @@ -7437,6 +7848,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz337.txt station = ('knid', 0.0013942) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz337.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz337.txt @@ -7455,6 +7867,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz338.txt station = ('kmhv', 0.0030150) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz338.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz338.txt @@ -7473,6 +7886,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz339.txt station = ('k9l2', 0.0017588) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz339.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz339.txt @@ -7491,6 +7905,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz340.txt station = ('ksbp', 0.0042722) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz340.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz340.txt @@ -7509,6 +7924,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz341.txt station = ('ksbp', 0.0023087) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz341.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz341.txt @@ -7527,6 +7943,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz342.txt station = ('kprb', 0.0042798) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz342.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz342.txt @@ -7545,6 +7962,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz343.txt station = ('kprb', 0.0012148) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz343.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz343.txt @@ -7563,6 +7981,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz344.txt station = ('kprb', 0.0078779) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz344.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz344.txt @@ -7581,6 +8000,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz345.txt station = ('ksmx', 0.0070767) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac079.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz345.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz345.txt @@ -7599,6 +8019,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz346.txt station = ('kvbg', 0.0003899) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz346.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz346.txt @@ -7617,6 +8038,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz347.txt station = ('klpc', 0.0020193) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz347.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz347.txt @@ -7635,6 +8057,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz348.txt station = ('kiza', 0.0015011) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz348.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz348.txt @@ -7653,6 +8076,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz349.txt station = ('klpc', 0.0036862) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz349.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz349.txt @@ -7671,6 +8095,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz350.txt station = ('ksba', 0.0019549) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz350.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz350.txt @@ -7689,6 +8114,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz351.txt station = ('kiza', 0.0020583) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz351.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz351.txt @@ -7707,6 +8133,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz352.txt station = ('ksba', 0.0043950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz352.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz352.txt @@ -7725,6 +8152,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz353.txt station = ('kiza', 0.0046592) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz353.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz353.txt @@ -7743,6 +8171,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz354.txt station = ('koxr', 0.0002310) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz354.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz354.txt @@ -7761,6 +8190,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz355.txt station = ('kcma', 0.0003876) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz355.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz355.txt @@ -7779,6 +8209,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz356.txt station = ('koxr', 0.0040831) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz356.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz356.txt @@ -7797,6 +8228,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz357.txt station = ('koxr', 0.0040565) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz357.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz357.txt @@ -7815,6 +8247,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz358.txt station = ('kcma', 0.0030939) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz358.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz358.txt @@ -7833,6 +8266,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz362.txt station = ('ksmo', 0.0033204) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz362.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz362.txt @@ -7851,6 +8285,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz366.txt station = ('ktoa', 0.0007985) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz366.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz366.txt @@ -7869,6 +8304,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz367.txt station = ('ktoa', 0.0007394) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz367.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz367.txt @@ -7887,6 +8323,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz368.txt station = ('kcqt', 0.0016024) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz368.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz368.txt @@ -7905,6 +8342,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz369.txt station = ('kcma', 0.0035653) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz369.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz369.txt @@ -7923,6 +8361,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz370.txt station = ('ksmo', 0.0021082) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz370.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz370.txt @@ -7941,6 +8380,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz371.txt station = ('kvny', 0.0040344) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz371.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz371.txt @@ -7959,6 +8399,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz372.txt station = ('kvny', 0.0003879) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz372.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz372.txt @@ -7977,6 +8418,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz373.txt station = ('kbur', 0.0009972) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz373.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz373.txt @@ -7995,6 +8437,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz374.txt station = ('kcma', 0.0035306) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz374.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz374.txt @@ -8013,6 +8456,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz375.txt station = ('kcma', 0.0056975) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz375.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz375.txt @@ -8031,6 +8475,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz376.txt station = ('kcma', 0.0056975) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz376.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz376.txt @@ -8049,6 +8494,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz377.txt station = ('ksdb', 0.0063799) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac111.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz377.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz377.txt @@ -8067,6 +8513,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz378.txt station = ('ksdb', 0.0013768) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz378.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz378.txt @@ -8085,6 +8532,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz379.txt station = ('kwhp', 0.0039850) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz379.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz379.txt @@ -8103,6 +8551,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz380.txt station = ('kpoc', 0.0036092) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz380.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz380.txt @@ -8121,6 +8570,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz381.txt station = ('kwjf', 0.0027385) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz381.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz381.txt @@ -8139,6 +8589,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz382.txt station = ('kgxa', 0.0023714) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz382.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz382.txt @@ -8157,6 +8608,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz383.txt station = ('kpmd', 0.0012698) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz383.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz383.txt @@ -8175,6 +8627,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz502.txt station = ('kdvo', 0.0023026) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac041.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz502.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz502.txt @@ -8193,6 +8646,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz503.txt station = ('ksts', 0.0054765) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac097.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz503.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz503.txt @@ -8211,6 +8665,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz504.txt station = ('ko69', 0.0060819) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac097.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz504.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz504.txt @@ -8229,6 +8684,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz505.txt station = ('ksts', 0.0049713) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac097.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz505.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz505.txt @@ -8247,6 +8703,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz506.txt station = ('ko69', 0.0020183) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac097.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz506.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz506.txt @@ -8265,6 +8722,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz508.txt station = ('khwd', 0.0014366) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac085.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz508.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz508.txt @@ -8283,6 +8741,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz509.txt station = ('khaf', 0.0028615) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac087.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz509.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz509.txt @@ -8301,6 +8760,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz510.txt station = ('kccr', 0.0031359) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac013.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz510.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz510.txt @@ -8319,6 +8779,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz512.txt station = ('ksjc', 0.0037956) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac087.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz512.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz512.txt @@ -8337,6 +8798,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz513.txt station = ('krhv', 0.0020035) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac085.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz513.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz513.txt @@ -8355,6 +8817,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz514.txt station = ('ke16', 0.0029767) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac085.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz514.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz514.txt @@ -8373,6 +8836,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz515.txt station = ('klvk', 0.0000917) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac013.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz515.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz515.txt @@ -8391,6 +8855,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz516.txt station = ('kprb', 0.0096466) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac053.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz516.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz516.txt @@ -8409,6 +8874,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz517.txt station = ('ksns', 0.0091919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac053.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz517.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz517.txt @@ -8427,6 +8893,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz518.txt station = ('kcvh', 0.0113875) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz518.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz518.txt @@ -8445,6 +8912,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz519.txt station = ('kbih', 0.0094275) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz519.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz519.txt @@ -8463,6 +8931,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz520.txt station = ('knid', 0.0151420) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz520.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz520.txt @@ -8481,6 +8950,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz521.txt station = ('kbih', 0.0077101) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz521.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz521.txt @@ -8499,6 +8969,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz522.txt station = ('knid', 0.0153883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz522.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz522.txt @@ -8517,6 +8988,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz523.txt station = ('kbys', 0.0054812) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz523.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz523.txt @@ -8535,6 +9007,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz524.txt station = ('kbys', 0.0132127) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz524.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz524.txt @@ -8553,6 +9026,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz525.txt station = ('knxp', 0.0012743) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz525.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz525.txt @@ -8571,6 +9045,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz526.txt station = ('keed', 0.0095795) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz526.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz526.txt @@ -8589,6 +9064,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz527.txt station = ('khii', 0.0024135) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz527.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz527.txt @@ -8607,6 +9083,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz528.txt station = ('ksns', 0.0013460) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz528.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz528.txt @@ -8625,6 +9102,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz529.txt station = ('kwvi', 0.0017937) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac087.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz529.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz529.txt @@ -8643,6 +9121,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz530.txt station = ('koar', 0.0011439) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac053.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz530.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz530.txt @@ -8661,6 +9140,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz548.txt station = ('kemt', 0.0009140) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz548.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz548.txt @@ -8679,6 +9159,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz549.txt station = ('ksba', 0.0090334) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz549.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz549.txt @@ -8697,6 +9178,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz550.txt station = ('ksba', 0.0074875) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac083.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz550.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz550.txt @@ -8715,6 +9197,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz552.txt station = ('ksna', 0.0011654) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac059.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz552.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz552.txt @@ -8733,6 +9216,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz554.txt station = ('ksna', 0.0015616) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac059.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz554.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz554.txt @@ -8751,6 +9235,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz560.txt station = ('ktrm', 0.0055050) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz560.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz560.txt @@ -8769,6 +9254,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz561.txt station = ('ktrm', 0.0093283) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz561.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz561.txt @@ -8787,6 +9273,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz562.txt station = ('knjk', 0.0055549) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac025.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz562.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz562.txt @@ -8805,6 +9292,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz563.txt station = ('kl08', 0.0075120) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz563.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz563.txt @@ -8823,6 +9311,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz564.txt station = ('kblh', 0.0091508) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz564.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz564.txt @@ -8841,6 +9330,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz565.txt station = ('knyl', 0.0070540) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac025.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz565.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz565.txt @@ -8859,6 +9349,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz566.txt station = ('knjk', 0.0045570) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac025.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz566.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz566.txt @@ -8877,6 +9368,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz567.txt station = ('kipl', 0.0018061) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac025.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz567.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz567.txt @@ -8895,6 +9387,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz568.txt station = ('ktrm', 0.0069779) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz568.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz568.txt @@ -8913,6 +9406,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz569.txt station = ('kblh', 0.0034622) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz569.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz569.txt @@ -8931,6 +9425,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ca/caz570.txt station = ('kblh', 0.0055539) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ca/cac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ca/caz570.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ca/caz570.txt @@ -8949,6 +9444,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz001.txt station = ('k4v0', 0.0061329) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc103.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz001.txt @@ -8967,6 +9463,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz002.txt station = ('kcag', 0.0055258) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc107.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz002.txt @@ -8985,6 +9482,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz003.txt station = ('kgjt', 0.0078296) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc103.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz003.txt @@ -9003,6 +9501,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz004.txt station = ('ksbs', 0.0014489) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc107.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz004.txt @@ -9021,6 +9520,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz005.txt station = ('ksbs', 0.0025404) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc107.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz005.txt @@ -9039,6 +9539,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz006.txt station = ('kgjt', 0.0020301) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc077.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz006.txt @@ -9057,6 +9558,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz007.txt station = ('kril', 0.0035342) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc077.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz007.txt @@ -9075,6 +9577,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz008.txt station = ('kege', 0.0015579) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc097.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz008.txt @@ -9093,6 +9596,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz009.txt station = ('kril', 0.0068911) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc077.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz009.txt @@ -9111,6 +9615,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz010.txt station = ('kase', 0.0035941) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc097.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz010.txt @@ -9129,6 +9634,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz011.txt station = ('kmtj', 0.0030405) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc085.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz011.txt @@ -9147,6 +9653,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz012.txt station = ('kguc', 0.0047721) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc085.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz012.txt @@ -9165,6 +9672,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz013.txt station = ('keeo', 0.0060944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc107.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz013.txt @@ -9183,6 +9691,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz014.txt station = ('kguc', 0.0036130) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc085.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz014.txt @@ -9201,6 +9710,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz017.txt station = ('kaib', 0.0057922) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz017.txt @@ -9219,6 +9729,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz018.txt station = ('ktex', 0.0052555) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz018.txt @@ -9237,6 +9748,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz019.txt station = ('kdro', 0.0066363) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz019.txt @@ -9255,6 +9767,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz020.txt station = ('kaib', 0.0021383) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz020.txt @@ -9273,6 +9786,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz021.txt station = ('kcez', 0.0019266) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc113.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz021.txt @@ -9291,6 +9805,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz022.txt station = ('kdro', 0.0015420) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc067.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz022.txt @@ -9309,6 +9824,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz023.txt station = ('kpso', 0.0032712) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz023.txt @@ -9327,6 +9843,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz030.txt station = ('ksbs', 0.0079000) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz030.txt @@ -9345,6 +9862,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz031.txt station = ('ksbs', 0.0038405) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz031.txt @@ -9363,6 +9881,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz032.txt station = ('k20v', 0.0021613) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc117.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz032.txt @@ -9381,6 +9900,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz033.txt station = ('kgnb', 0.0069529) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc069.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz033.txt @@ -9399,6 +9919,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz034.txt station = ('k0co', 0.0035161) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc117.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz034.txt @@ -9417,6 +9938,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz035.txt station = ('kfnl', 0.0066394) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc069.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz035.txt @@ -9435,6 +9957,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz036.txt station = ('kapa', 0.0058115) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc093.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz036.txt @@ -9453,6 +9976,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz037.txt station = ('k4bm', 0.0024449) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc093.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz037.txt @@ -9471,6 +9995,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz038.txt station = ('kfnl', 0.0052220) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc123.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz038.txt @@ -9489,6 +10014,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz039.txt station = ('kbjc', 0.0009301) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc059.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz039.txt @@ -9507,6 +10033,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz040.txt station = ('kbkf', 0.0011497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz040.txt @@ -9525,6 +10052,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz041.txt station = ('kmnh', 0.0023145) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc039.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz041.txt @@ -9543,6 +10071,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz042.txt station = ('kfmm', 0.0075731) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc123.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz042.txt @@ -9561,6 +10090,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz043.txt station = ('kgxy', 0.0029571) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc123.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz043.txt @@ -9579,6 +10109,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz044.txt station = ('kfmm', 0.0012771) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc087.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz044.txt @@ -9597,6 +10128,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz045.txt station = ('kcfo', 0.0058053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc005.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz045.txt @@ -9615,6 +10147,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz046.txt station = ('klic', 0.0015718) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc073.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz046.txt @@ -9633,6 +10166,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz047.txt station = ('klic', 0.0081204) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc073.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz047.txt @@ -9651,6 +10185,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz048.txt station = ('kstk', 0.0028122) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc075.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz048.txt @@ -9669,6 +10204,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz049.txt station = ('kako', 0.0034212) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc121.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz049.txt @@ -9687,6 +10223,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz050.txt station = ('kheq', 0.0054483) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc115.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz050.txt @@ -9705,6 +10242,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz051.txt station = ('kheq', 0.0011989) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc095.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz051.txt @@ -9723,6 +10261,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz058.txt station = ('klxv', 0.0014348) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc065.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz058.txt @@ -9741,6 +10280,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz059.txt station = ('klxv', 0.0008878) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc065.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz059.txt @@ -9759,6 +10299,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz060.txt station = ('k7bm', 0.0020189) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz060.txt @@ -9777,6 +10318,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz061.txt station = ('k7bm', 0.0008817) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz061.txt @@ -9795,6 +10337,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz062.txt station = ('kaej', 0.0022462) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz062.txt @@ -9813,6 +10356,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz063.txt station = ('kaej', 0.0013073) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz063.txt @@ -9831,6 +10375,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz064.txt station = ('kguc', 0.0050499) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz064.txt @@ -9849,6 +10394,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz065.txt station = ('k04v', 0.0023917) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz065.txt @@ -9867,6 +10413,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz066.txt station = ('krcv', 0.0074992) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz066.txt @@ -9885,6 +10432,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz067.txt station = ('kcpw', 0.0036010) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc105.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz067.txt @@ -9903,6 +10451,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz068.txt station = ('kcpw', 0.0014497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc105.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz068.txt @@ -9921,6 +10470,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz069.txt station = ('k04v', 0.0036721) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz069.txt @@ -9939,6 +10489,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz070.txt station = ('kals', 0.0022645) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc105.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz070.txt @@ -9957,6 +10508,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz071.txt station = ('kals', 0.0040014) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc023.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz071.txt @@ -9975,6 +10527,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz072.txt station = ('kvtp', 0.0086688) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz072.txt @@ -9993,6 +10546,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz073.txt station = ('k04v', 0.0078690) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc109.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz073.txt @@ -10011,6 +10565,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz074.txt station = ('kvtp', 0.0052102) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz074.txt @@ -10029,6 +10584,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz075.txt station = ('kvtp', 0.0051754) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz075.txt @@ -10047,6 +10603,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz076.txt station = ('kank', 0.0055874) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc043.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz076.txt @@ -10065,6 +10622,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz077.txt station = ('k1v6', 0.0061525) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc043.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz077.txt @@ -10083,6 +10641,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz078.txt station = ('k1v6', 0.0069541) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz078.txt @@ -10101,6 +10660,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz079.txt station = ('k1v6', 0.0066913) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc101.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz079.txt @@ -10119,6 +10679,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz080.txt station = ('k4v1', 0.0070247) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc101.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz080.txt @@ -10137,6 +10698,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz081.txt station = ('kaff', 0.0043580) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc119.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz081.txt @@ -10155,6 +10717,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz082.txt station = ('kaff', 0.0040855) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc119.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz082.txt @@ -10173,6 +10736,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz083.txt station = ('k1v6', 0.0003093) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc119.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz083.txt @@ -10191,6 +10755,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz084.txt station = ('kfly', 0.0020027) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz084.txt @@ -10209,6 +10774,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz085.txt station = ('kabh', 0.0028628) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz085.txt @@ -10227,6 +10793,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz086.txt station = ('kpub', 0.0017755) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc101.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz086.txt @@ -10245,6 +10812,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz087.txt station = ('k4v1', 0.0010260) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz087.txt @@ -10263,6 +10831,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz088.txt station = ('ktad', 0.0016182) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz088.txt @@ -10281,6 +10850,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz089.txt station = ('klhx', 0.0060700) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz089.txt @@ -10299,6 +10869,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz090.txt station = ('k2v5', 0.0029811) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc125.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz090.txt @@ -10317,6 +10888,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz091.txt station = ('kitr', 0.0044244) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc063.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz091.txt @@ -10335,6 +10907,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz092.txt station = ('kitr', 0.0085498) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc017.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz092.txt @@ -10353,6 +10926,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz093.txt station = ('klhx', 0.0037630) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc089.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz093.txt @@ -10371,6 +10945,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz094.txt station = ('klhx', 0.0127214) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz094.txt @@ -10389,6 +10964,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz095.txt station = ('klaa', 0.0083821) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc061.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz095.txt @@ -10407,6 +10983,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz096.txt station = ('klaa', 0.0076836) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc061.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz096.txt @@ -10425,6 +11002,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz097.txt station = ('klaa', 0.0056845) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc011.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz097.txt @@ -10443,6 +11021,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz098.txt station = ('klaa', 0.0044375) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc099.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz098.txt @@ -10461,6 +11040,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/co/coz099.txt station = ('kspd', 0.0010000) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/co/coc009.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/co/coz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/co/coz099.txt @@ -10479,6 +11059,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz001.txt station = ('k4b8', 0.0060582) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz001.txt @@ -10497,6 +11078,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz002.txt station = ('khfd', 0.0016697) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz002.txt @@ -10515,6 +11097,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz003.txt station = ('kijd', 0.0027073) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz003.txt @@ -10533,6 +11116,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz004.txt station = ('kijd', 0.0029058) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz004.txt @@ -10551,6 +11135,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz005.txt station = ('kdxr', 0.0015956) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz005.txt @@ -10569,6 +11154,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz006.txt station = ('kmmk', 0.0023065) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz006.txt @@ -10587,6 +11173,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz007.txt station = ('ksnc', 0.0020883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz007.txt @@ -10605,6 +11192,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz008.txt station = ('kgon', 0.0035215) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz008.txt @@ -10623,6 +11211,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz009.txt station = ('kbdr', 0.0040157) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz009.txt @@ -10641,6 +11230,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz010.txt station = ('khvn', 0.0011777) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz010.txt @@ -10659,6 +11249,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz011.txt station = ('ksnc', 0.0013190) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz011.txt @@ -10677,6 +11268,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz012.txt station = ('kgon', 0.0008551) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz012.txt @@ -10695,6 +11287,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ct/ctz013.txt station = ('koxc', 0.0029627) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ct/ctc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ct/ctz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ct/ctz013.txt @@ -10713,6 +11306,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/dc/dcz001.txt station = ('kdca', 0.0010658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/dc/dcc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/dc/dcz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/dc/dcz001.txt @@ -10731,6 +11325,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/de/dez001.txt station = ('kilg', 0.0016333) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/de/dec003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/de/dez001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez001.txt @@ -10749,6 +11344,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/de/dez002.txt station = ('kdov', 0.0016049) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/de/dec001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/de/dez002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez002.txt @@ -10767,6 +11363,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/de/dez003.txt station = ('kged', 0.0007683) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/de/dec005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/de/dez003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez003.txt @@ -10785,6 +11382,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/de/dez004.txt station = ('kged', 0.0039502) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/de/dec005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/de/dez004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/de/dez004.txt @@ -10803,6 +11401,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz007.txt station = ('k54j', 0.0022672) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz007.txt @@ -10821,6 +11420,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz008.txt station = ('k54j', 0.0024904) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz008.txt @@ -10839,6 +11439,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz009.txt station = ('kbcr', 0.0032118) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz009.txt @@ -10857,6 +11458,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz010.txt station = ('kbcr', 0.0041799) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz010.txt @@ -10875,6 +11477,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz011.txt station = ('kmai', 0.0008520) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz011.txt @@ -10893,6 +11496,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz012.txt station = ('kecp', 0.0038970) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz012.txt @@ -10911,6 +11515,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz013.txt station = ('kmai', 0.0074595) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz013.txt @@ -10929,6 +11534,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz014.txt station = ('kaaf', 0.0056584) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz014.txt @@ -10947,6 +11553,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz015.txt station = ('kaaf', 0.0043651) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz015.txt @@ -10965,6 +11572,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz016.txt station = ('k2j9', 0.0009043) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz016.txt @@ -10983,6 +11591,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz017.txt station = ('ktlh', 0.0014851) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz017.txt @@ -11001,6 +11610,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz018.txt station = ('ktlh', 0.0070479) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz018.txt @@ -11019,6 +11629,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz019.txt station = ('kvld', 0.0066605) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz019.txt @@ -11037,6 +11648,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz021.txt station = ('k24j', 0.0018913) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz021.txt @@ -11055,6 +11667,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz023.txt station = ('klcq', 0.0051167) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz023.txt @@ -11073,6 +11686,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz024.txt station = ('kjax', 0.0025123) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz024.txt @@ -11091,6 +11705,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz026.txt station = ('k2j9', 0.0079186) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz026.txt @@ -11109,6 +11724,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz027.txt station = ('ktlh', 0.0037593) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz027.txt @@ -11127,6 +11743,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz028.txt station = ('kfpy', 0.0004593) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz028.txt @@ -11145,6 +11762,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz029.txt station = ('k24j', 0.0059768) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz029.txt @@ -11163,6 +11781,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz030.txt station = ('klcq', 0.0039288) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc125.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz030.txt @@ -11181,6 +11800,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz031.txt station = ('k42j', 0.0025999) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz031.txt @@ -11199,6 +11819,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz033.txt station = ('ksgj', 0.0028824) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz033.txt @@ -11217,6 +11838,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz034.txt station = ('kcty', 0.0007494) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz034.txt @@ -11235,6 +11857,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz035.txt station = ('kcty', 0.0048203) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz035.txt @@ -11253,6 +11876,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz038.txt station = ('kfin', 0.0019135) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz038.txt @@ -11271,6 +11895,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz041.txt station = ('kded', 0.0001505) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz041.txt @@ -11289,6 +11914,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz043.txt station = ('kinf', 0.0040212) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz043.txt @@ -11307,6 +11933,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz044.txt station = ('klee', 0.0034833) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz044.txt @@ -11325,6 +11952,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz045.txt station = ('korl', 0.0006315) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz045.txt @@ -11343,6 +11971,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz046.txt station = ('ksfb', 0.0011768) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz046.txt @@ -11361,6 +11990,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz050.txt station = ('kpie', 0.0006285) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz050.txt @@ -11379,6 +12009,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz052.txt station = ('kbow', 0.0013189) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz052.txt @@ -11397,6 +12028,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz053.txt station = ('kism', 0.0059409) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz053.txt @@ -11415,6 +12047,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz056.txt station = ('kx07', 0.0075884) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz056.txt @@ -11433,6 +12066,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz057.txt station = ('ksef', 0.0019724) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz057.txt @@ -11451,6 +12085,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz058.txt station = ('kobe', 0.0029295) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz058.txt @@ -11469,6 +12104,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz061.txt station = ('kpgd', 0.0055617) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz061.txt @@ -11487,6 +12123,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz063.txt station = ('kobe', 0.0080686) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz063.txt @@ -11505,6 +12142,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz066.txt station = ('kimm', 0.0041766) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz066.txt @@ -11523,6 +12161,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz067.txt station = ('kf45', 0.0060086) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz067.txt @@ -11541,6 +12180,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz068.txt station = ('klna', 0.0010839) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz068.txt @@ -11559,6 +12199,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz069.txt station = ('kmky', 0.0011642) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz069.txt @@ -11577,6 +12218,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz070.txt station = ('kimm', 0.0053477) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz070.txt @@ -11595,6 +12237,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz071.txt station = ('khwo', 0.0066194) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz071.txt @@ -11613,6 +12256,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz072.txt station = ('kfxe', 0.0018843) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz072.txt @@ -11631,6 +12275,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz073.txt station = ('ktmb', 0.0039298) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc086.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz073.txt @@ -11649,6 +12294,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz074.txt station = ('kmia', 0.0006883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc086.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz074.txt @@ -11667,6 +12313,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz075.txt station = ('khst', 0.0102483) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz075.txt @@ -11685,6 +12332,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz076.txt station = ('khst', 0.0058943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz076.txt @@ -11703,6 +12351,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz077.txt station = ('kmth', 0.0010179) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz077.txt @@ -11721,6 +12370,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz078.txt station = ('knqx', 0.0023891) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz078.txt @@ -11739,6 +12389,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz108.txt station = ('kdts', 0.0044619) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz108.txt @@ -11757,6 +12408,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz112.txt station = ('kpam', 0.0029695) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz112.txt @@ -11775,6 +12427,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz114.txt station = ('kaaf', 0.0041449) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz114.txt @@ -11793,6 +12446,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz115.txt station = ('kaaf', 0.0038921) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz115.txt @@ -11811,6 +12465,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz118.txt station = ('ktlh', 0.0066196) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz118.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz118.txt @@ -11829,6 +12484,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz120.txt station = ('k24j', 0.0042411) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz120.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz120.txt @@ -11847,6 +12503,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz124.txt station = ('kjax', 0.0025123) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz124.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz124.txt @@ -11865,6 +12522,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz125.txt station = ('kcrg', 0.0003560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz125.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz125.txt @@ -11883,6 +12541,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz127.txt station = ('ktlh', 0.0053434) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz127.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz127.txt @@ -11901,6 +12560,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz128.txt station = ('kfpy', 0.0028465) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz128.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz128.txt @@ -11919,6 +12579,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz132.txt station = ('knip', 0.0038729) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz132.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz132.txt @@ -11937,6 +12598,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz133.txt station = ('ksgj', 0.0003693) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz133.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz133.txt @@ -11955,6 +12617,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz134.txt station = ('kcty', 0.0031076) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz134.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz134.txt @@ -11973,6 +12636,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz136.txt station = ('kgnv', 0.0003144) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz136.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz136.txt @@ -11991,6 +12655,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz137.txt station = ('k28j', 0.0022289) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz137.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz137.txt @@ -12009,6 +12674,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz138.txt station = ('kfin', 0.0013603) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz138.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz138.txt @@ -12027,6 +12693,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz139.txt station = ('kx60', 0.0040809) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz139.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz139.txt @@ -12045,6 +12712,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz140.txt station = ('klee', 0.0069945) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz140.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz140.txt @@ -12063,6 +12731,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz141.txt station = ('kevb', 0.0006465) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz141.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz141.txt @@ -12081,6 +12750,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz142.txt station = ('kcgc', 0.0016114) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz142.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz142.txt @@ -12099,6 +12769,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz144.txt station = ('klee', 0.0044233) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz144.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz144.txt @@ -12117,6 +12788,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz148.txt station = ('kbkv', 0.0015682) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz148.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz148.txt @@ -12135,6 +12807,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz149.txt station = ('kbkv', 0.0028912) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz149.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz149.txt @@ -12153,6 +12826,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz151.txt station = ('ktpf', 0.0004887) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz151.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz151.txt @@ -12171,6 +12845,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz154.txt station = ('kvrb', 0.0008780) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz154.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz154.txt @@ -12189,6 +12864,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz155.txt station = ('ksrq', 0.0041001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz155.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz155.txt @@ -12207,6 +12883,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz159.txt station = ('kfpr', 0.0019144) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz159.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz159.txt @@ -12225,6 +12902,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz160.txt station = ('kvnc', 0.0026461) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz160.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz160.txt @@ -12243,6 +12921,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz162.txt station = ('kpgd', 0.0017684) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz162.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz162.txt @@ -12261,6 +12940,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz164.txt station = ('ksua', 0.0013897) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz164.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz164.txt @@ -12279,6 +12959,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz165.txt station = ('kfmy', 0.0006419) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz165.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz165.txt @@ -12297,6 +12978,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz168.txt station = ('kpbi', 0.0004884) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz168.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz168.txt @@ -12315,6 +12997,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz172.txt station = ('kfxe', 0.0012479) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz172.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz172.txt @@ -12333,6 +13016,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz173.txt station = ('khst', 0.0020514) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc086.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz173.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz173.txt @@ -12351,6 +13035,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz174.txt station = ('khst', 0.0052905) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc086.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz174.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz174.txt @@ -12369,6 +13054,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz201.txt station = ('kndz', 0.0069224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz201.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz201.txt @@ -12387,6 +13073,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz202.txt station = ('kpns', 0.0020575) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz202.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz202.txt @@ -12405,6 +13092,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz203.txt station = ('knse', 0.0020619) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz203.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz203.txt @@ -12423,6 +13111,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz204.txt station = ('kndz', 0.0021489) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz204.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz204.txt @@ -12441,6 +13130,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz205.txt station = ('kcew', 0.0018416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz205.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz205.txt @@ -12459,6 +13149,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz206.txt station = ('kvps', 0.0019062) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz206.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz206.txt @@ -12477,6 +13168,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz220.txt station = ('k24j', 0.0037681) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz220.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz220.txt @@ -12495,6 +13187,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz225.txt station = ('kjax', 0.0015452) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz225.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz225.txt @@ -12513,6 +13206,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz232.txt station = ('k42j', 0.0033541) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz232.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz232.txt @@ -12531,6 +13225,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz236.txt station = ('kgnv', 0.0037452) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz236.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz236.txt @@ -12549,6 +13244,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz237.txt station = ('k28j', 0.0024469) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz237.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz237.txt @@ -12567,6 +13263,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz239.txt station = ('kx60', 0.0040809) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz239.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz239.txt @@ -12585,6 +13282,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz240.txt station = ('kocf', 0.0027292) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz240.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz240.txt @@ -12603,6 +13301,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz242.txt station = ('kcgc', 0.0016114) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz242.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz242.txt @@ -12621,6 +13320,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz247.txt station = ('ktix', 0.0022341) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz247.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz247.txt @@ -12639,6 +13339,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz248.txt station = ('kbkv', 0.0015682) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz248.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz248.txt @@ -12657,6 +13358,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz249.txt station = ('kbkv', 0.0028912) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz249.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz249.txt @@ -12675,6 +13377,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz251.txt station = ('kpcm', 0.0019176) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz251.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz251.txt @@ -12693,6 +13396,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz254.txt station = ('kx26', 0.0036334) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz254.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz254.txt @@ -12711,6 +13415,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz255.txt station = ('ksrq', 0.0041001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz255.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz255.txt @@ -12729,6 +13434,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz259.txt station = ('kfpr', 0.0032501) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz259.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz259.txt @@ -12747,6 +13453,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz260.txt station = ('kvnc', 0.0026461) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz260.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz260.txt @@ -12765,6 +13472,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz262.txt station = ('kpgd', 0.0038244) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz262.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz262.txt @@ -12783,6 +13491,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz264.txt station = ('ksua', 0.0040094) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz264.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz264.txt @@ -12801,6 +13510,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz265.txt station = ('kfmy', 0.0007209) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz265.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz265.txt @@ -12819,6 +13529,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz322.txt station = ('klcq', 0.0040573) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz322.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz322.txt @@ -12837,6 +13548,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz325.txt station = ('knip', 0.0004220) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz325.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz325.txt @@ -12855,6 +13567,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz340.txt station = ('kocf', 0.0017389) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz340.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz340.txt @@ -12873,6 +13586,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz347.txt station = ('ktix', 0.0012798) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz347.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz347.txt @@ -12891,6 +13605,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz422.txt station = ('klcq', 0.0006083) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz422.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz422.txt @@ -12909,6 +13624,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz425.txt station = ('kheg', 0.0011366) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz425.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz425.txt @@ -12927,6 +13643,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz447.txt station = ('ktts', 0.0009332) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz447.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz447.txt @@ -12945,6 +13662,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz522.txt station = ('klcq', 0.0033012) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz522.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz522.txt @@ -12963,6 +13681,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz547.txt station = ('kmlb', 0.0019476) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz547.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz547.txt @@ -12981,6 +13700,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz647.txt station = ('kmlb', 0.0001472) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz647.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz647.txt @@ -12999,6 +13719,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/fl/flz747.txt station = ('kcof', 0.0002584) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/fl/flc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/fl/flz747.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/fl/flz747.txt @@ -13017,6 +13738,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz001.txt station = ('k9a5', 0.0042209) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz001.txt @@ -13035,6 +13757,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz002.txt station = ('k9a5', 0.0008341) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac295.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz002.txt @@ -13053,6 +13776,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz003.txt station = ('kcha', 0.0024312) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz003.txt @@ -13071,6 +13795,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz004.txt station = ('kdnn', 0.0020312) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac313.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz004.txt @@ -13089,6 +13814,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz005.txt station = ('kdnn', 0.0020915) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac213.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz005.txt @@ -13107,6 +13833,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz006.txt station = ('k49a', 0.0050651) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz006.txt @@ -13125,6 +13852,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz007.txt station = ('k49a', 0.0014926) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz007.txt @@ -13143,6 +13871,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz008.txt station = ('kdzj', 0.0003754) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac291.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz008.txt @@ -13161,6 +13890,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz009.txt station = ('kdzj', 0.0038691) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac281.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz009.txt @@ -13179,6 +13909,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz010.txt station = ('ktoc', 0.0052527) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac241.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz010.txt @@ -13197,6 +13928,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz011.txt station = ('krmg', 0.0033738) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz011.txt @@ -13215,6 +13947,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz012.txt station = ('kczl', 0.0012396) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz012.txt @@ -13233,6 +13966,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz013.txt station = ('kjzp', 0.0002239) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac227.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz013.txt @@ -13251,6 +13985,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz014.txt station = ('kcni', 0.0043288) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz014.txt @@ -13269,6 +14004,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz015.txt station = ('kdzj', 0.0049401) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac187.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz015.txt @@ -13287,6 +14023,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz016.txt station = ('kajr', 0.0037460) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac311.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz016.txt @@ -13305,6 +14042,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz017.txt station = ('kajr', 0.0023173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac137.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz017.txt @@ -13323,6 +14061,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz018.txt station = ('ktoc', 0.0006954) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac257.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz018.txt @@ -13341,6 +14080,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz019.txt station = ('krmg', 0.0016633) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz019.txt @@ -13359,6 +14099,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz020.txt station = ('kvpc', 0.0018302) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz020.txt @@ -13377,6 +14118,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz021.txt station = ('kcni', 0.0013887) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz021.txt @@ -13395,6 +14137,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz022.txt station = ('kcni', 0.0045558) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz022.txt @@ -13413,6 +14156,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz023.txt station = ('kgvl', 0.0008968) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac139.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz023.txt @@ -13431,6 +14175,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz024.txt station = ('kajr', 0.0026841) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz024.txt @@ -13449,6 +14194,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz025.txt station = ('kjca', 0.0007045) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac157.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz025.txt @@ -13467,6 +14213,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz026.txt station = ('k18a', 0.0015110) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz026.txt @@ -13485,6 +14232,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz027.txt station = ('kahn', 0.0035881) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac195.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz027.txt @@ -13503,6 +14251,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz028.txt station = ('k18a', 0.0024501) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac147.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz028.txt @@ -13521,6 +14270,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz029.txt station = ('keba', 0.0004983) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz029.txt @@ -13539,6 +14289,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz030.txt station = ('kpuj', 0.0038833) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac233.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz030.txt @@ -13557,6 +14308,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz031.txt station = ('kpuj', 0.0010912) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac223.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz031.txt @@ -13575,6 +14327,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz032.txt station = ('kmge', 0.0009714) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz032.txt @@ -13593,6 +14346,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz033.txt station = ('kpdk', 0.0012100) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz033.txt @@ -13611,6 +14365,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz034.txt station = ('klzu', 0.0009279) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac135.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz034.txt @@ -13629,6 +14384,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz035.txt station = ('kwdr', 0.0006739) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz035.txt @@ -13647,6 +14403,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz036.txt station = ('kahn', 0.0004937) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz036.txt @@ -13665,6 +14422,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz037.txt station = ('kahn', 0.0025082) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac219.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz037.txt @@ -13683,6 +14441,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz038.txt station = ('kahn', 0.0038552) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac221.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz038.txt @@ -13701,6 +14460,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz039.txt station = ('kiiy', 0.0010625) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac317.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz039.txt @@ -13719,6 +14479,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz040.txt station = ('khqu', 0.0047066) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac181.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz040.txt @@ -13737,6 +14498,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz041.txt station = ('kctj', 0.0029744) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac143.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz041.txt @@ -13755,6 +14517,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz042.txt station = ('kctj', 0.0013462) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz042.txt @@ -13773,6 +14536,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz043.txt station = ('kfty', 0.0039132) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz043.txt @@ -13791,6 +14555,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz044.txt station = ('katl', 0.0026187) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz044.txt @@ -13809,6 +14574,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz045.txt station = ('kpdk', 0.0022252) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz045.txt @@ -13827,6 +14593,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz046.txt station = ('kcvc', 0.0026017) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac247.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz046.txt @@ -13845,6 +14612,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz047.txt station = ('kd73', 0.0005949) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac297.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz047.txt @@ -13863,6 +14631,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz048.txt station = ('kcvc', 0.0013509) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac217.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz048.txt @@ -13881,6 +14650,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz049.txt station = ('kd73', 0.0044349) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac211.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz049.txt @@ -13899,6 +14669,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz050.txt station = ('kcpp', 0.0005324) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz050.txt @@ -13917,6 +14688,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz051.txt station = ('kcpp', 0.0038132) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac265.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz051.txt @@ -13935,6 +14707,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz052.txt station = ('klgc', 0.0050942) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac149.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz052.txt @@ -13953,6 +14726,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz053.txt station = ('kcco', 0.0007276) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz053.txt @@ -13971,6 +14745,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz054.txt station = ('kffc', 0.0013419) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz054.txt @@ -13989,6 +14764,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz055.txt station = ('katl', 0.0021837) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz055.txt @@ -14007,6 +14783,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz056.txt station = ('k6a2', 0.0006067) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac255.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz056.txt @@ -14025,6 +14802,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz057.txt station = ('khmp', 0.0027881) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac151.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz057.txt @@ -14043,6 +14821,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz058.txt station = ('k6a2', 0.0047617) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz058.txt @@ -14061,6 +14840,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz059.txt station = ('kcvc', 0.0059971) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac159.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz059.txt @@ -14079,6 +14859,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz060.txt station = ('kmlj', 0.0035053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac237.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz060.txt @@ -14097,6 +14878,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz061.txt station = ('kmlj', 0.0040429) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac141.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz061.txt @@ -14115,6 +14897,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz062.txt station = ('khqu', 0.0031423) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac301.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz062.txt @@ -14133,6 +14916,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz063.txt station = ('khqu', 0.0009587) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac189.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz063.txt @@ -14151,6 +14935,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz064.txt station = ('kdnl', 0.0036194) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz064.txt @@ -14169,6 +14954,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz065.txt station = ('kags', 0.0015622) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac245.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz065.txt @@ -14187,6 +14973,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz066.txt station = ('klgc', 0.0007765) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac285.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz066.txt @@ -14205,6 +14992,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz067.txt station = ('kpim', 0.0045006) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac199.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz067.txt @@ -14223,6 +15011,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz068.txt station = ('k6a2', 0.0028852) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac231.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz068.txt @@ -14241,6 +15030,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz069.txt station = ('kopn', 0.0013840) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac293.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz069.txt @@ -14259,6 +15049,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz070.txt station = ('kopn', 0.0028010) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac171.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz070.txt @@ -14277,6 +15068,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz071.txt station = ('kopn', 0.0051658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac207.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz071.txt @@ -14295,6 +15087,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz072.txt station = ('kmlj', 0.0051925) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac169.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz072.txt @@ -14313,6 +15106,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz073.txt station = ('kmlj', 0.0014927) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz073.txt @@ -14331,6 +15125,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz074.txt station = ('kokz', 0.0006214) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac303.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz074.txt @@ -14349,6 +15144,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz075.txt station = ('khqu', 0.0054158) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac125.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz075.txt @@ -14367,6 +15163,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz076.txt station = ('k2j5', 0.0072014) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac163.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz076.txt @@ -14385,6 +15182,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz077.txt station = ('k2j5', 0.0029707) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz077.txt @@ -14403,6 +15201,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz078.txt station = ('kpim', 0.0018685) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac145.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz078.txt @@ -14421,6 +15220,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz079.txt station = ('k6a1', 0.0048003) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac263.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz079.txt @@ -14439,6 +15239,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz080.txt station = ('k6a1', 0.0002543) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac269.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz080.txt @@ -14457,6 +15258,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz081.txt station = ('k6a1', 0.0045685) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz081.txt @@ -14475,6 +15277,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz082.txt station = ('kmcn', 0.0022651) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz082.txt @@ -14493,6 +15296,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz083.txt station = ('kwrb', 0.0026072) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac289.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz083.txt @@ -14511,6 +15315,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz084.txt station = ('kdbn', 0.0049737) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac319.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz084.txt @@ -14529,6 +15334,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz085.txt station = ('kokz', 0.0053147) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac167.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz085.txt @@ -14547,6 +15353,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz086.txt station = ('kmhp', 0.0049694) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz086.txt @@ -14565,6 +15372,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz087.txt station = ('k2j5', 0.0017647) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac165.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz087.txt @@ -14583,6 +15391,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz088.txt station = ('kjyl', 0.0018540) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac251.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz088.txt @@ -14601,6 +15410,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz089.txt station = ('kcsg', 0.0010807) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac215.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz089.txt @@ -14619,6 +15429,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz090.txt station = ('klsf', 0.0007237) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz090.txt @@ -14637,6 +15448,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz091.txt station = ('klsf', 0.0045659) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac197.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz091.txt @@ -14655,6 +15467,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz092.txt station = ('kacj', 0.0032292) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac249.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz092.txt @@ -14673,6 +15486,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz093.txt station = ('k6a1', 0.0047416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac193.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz093.txt @@ -14691,6 +15505,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz094.txt station = ('kpxe', 0.0013419) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac225.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz094.txt @@ -14709,6 +15524,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz095.txt station = ('kpxe', 0.0017397) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac153.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz095.txt @@ -14727,6 +15543,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz096.txt station = ('k48a', 0.0009799) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz096.txt @@ -14745,6 +15562,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz097.txt station = ('kdbn', 0.0019864) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac175.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz097.txt @@ -14763,6 +15581,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz098.txt station = ('kvdi', 0.0046818) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac283.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz098.txt @@ -14781,6 +15600,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz099.txt station = ('kmhp', 0.0005304) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz099.txt @@ -14799,6 +15619,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz100.txt station = ('ktbr', 0.0015063) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz100.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz100.txt @@ -14817,6 +15638,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz101.txt station = ('ksav', 0.0048456) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz101.txt @@ -14835,6 +15657,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz102.txt station = ('klsf', 0.0044478) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac259.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz102.txt @@ -14853,6 +15676,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz103.txt station = ('kacj', 0.0054708) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac307.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz103.txt @@ -14871,6 +15695,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz104.txt station = ('kacj', 0.0012417) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac261.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz104.txt @@ -14889,6 +15714,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz105.txt station = ('kckf', 0.0029619) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz105.txt @@ -14907,6 +15733,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz106.txt station = ('kckf', 0.0011516) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz106.txt @@ -14925,6 +15752,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz107.txt station = ('k48a', 0.0041474) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac235.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz107.txt @@ -14943,6 +15771,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz108.txt station = ('kckf', 0.0050659) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac315.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz108.txt @@ -14961,6 +15790,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz109.txt station = ('kezm', 0.0009468) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz109.txt @@ -14979,6 +15809,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz110.txt station = ('kmqw', 0.0030255) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac271.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz110.txt @@ -14997,6 +15828,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz111.txt station = ('kmqw', 0.0023273) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac309.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz111.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz111.txt @@ -15015,6 +15847,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz112.txt station = ('kvdi', 0.0024112) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac209.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz112.txt @@ -15033,6 +15866,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz113.txt station = ('kvdi', 0.0013957) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac279.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz113.txt @@ -15051,6 +15885,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz114.txt station = ('krvj', 0.0014339) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac267.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz114.txt @@ -15069,6 +15904,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz115.txt station = ('kcwv', 0.0007156) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz115.txt @@ -15087,6 +15923,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz116.txt station = ('klhw', 0.0030590) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz116.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz116.txt @@ -15105,6 +15942,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz117.txt station = ('ksvn', 0.0036367) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz117.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz117.txt @@ -15123,6 +15961,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz118.txt station = ('ksav', 0.0008021) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz118.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz118.txt @@ -15141,6 +15980,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz119.txt station = ('ksvn', 0.0020039) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz119.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz119.txt @@ -15159,6 +15999,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz120.txt station = ('keuf', 0.0022269) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac239.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz120.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz120.txt @@ -15177,6 +16018,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz121.txt station = ('kbij', 0.0041928) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz121.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz121.txt @@ -15195,6 +16037,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz122.txt station = ('keuf', 0.0064973) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac243.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz122.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz122.txt @@ -15213,6 +16056,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz123.txt station = ('kbij', 0.0046291) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz123.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz123.txt @@ -15231,6 +16075,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz124.txt station = ('kaby', 0.0055166) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac273.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz124.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz124.txt @@ -15249,6 +16094,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz125.txt station = ('kaby', 0.0002440) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz125.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz125.txt @@ -15267,6 +16113,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz126.txt station = ('kaby', 0.0043866) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac177.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz126.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz126.txt @@ -15285,6 +16132,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz127.txt station = ('kaby', 0.0052009) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac321.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz127.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz127.txt @@ -15303,6 +16151,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz128.txt station = ('kckf', 0.0052484) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac287.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz128.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz128.txt @@ -15321,6 +16170,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz129.txt station = ('ktma', 0.0007545) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac277.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz129.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz129.txt @@ -15339,6 +16189,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz130.txt station = ('kfzg', 0.0015215) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz130.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz130.txt @@ -15357,6 +16208,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz131.txt station = ('kfzg', 0.0014234) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac155.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz131.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz131.txt @@ -15375,6 +16227,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz132.txt station = ('kdqh', 0.0012764) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz132.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz132.txt @@ -15393,6 +16246,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz133.txt station = ('kaze', 0.0013892) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac161.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz133.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz133.txt @@ -15411,6 +16265,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz134.txt station = ('kamg', 0.0007883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz134.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz134.txt @@ -15429,6 +16284,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz135.txt station = ('kbhc', 0.0016745) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz135.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz135.txt @@ -15447,6 +16303,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz136.txt station = ('kjes', 0.0005118) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac305.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz136.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz136.txt @@ -15465,6 +16322,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz137.txt station = ('klhw', 0.0035020) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac183.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz137.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz137.txt @@ -15483,6 +16341,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz138.txt station = ('klhw', 0.0007348) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac179.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz138.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz138.txt @@ -15501,6 +16360,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz139.txt station = ('ksvn', 0.0060702) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac179.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz139.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz139.txt @@ -15519,6 +16379,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz140.txt station = ('kbqk', 0.0048586) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac191.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz140.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz140.txt @@ -15537,6 +16398,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz141.txt station = ('kbqk', 0.0043466) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac191.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz141.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz141.txt @@ -15555,6 +16417,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz142.txt station = ('kbij', 0.0013087) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz142.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz142.txt @@ -15573,6 +16436,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz143.txt station = ('kbge', 0.0037391) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac201.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz143.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz143.txt @@ -15591,6 +16455,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz144.txt station = ('kcxu', 0.0036936) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz144.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz144.txt @@ -15609,6 +16474,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz145.txt station = ('kcxu', 0.0006510) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac205.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz145.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz145.txt @@ -15627,6 +16493,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz146.txt station = ('kmgr', 0.0018805) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz146.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz146.txt @@ -15645,6 +16512,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz147.txt station = ('kvad', 0.0047504) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz147.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz147.txt @@ -15663,6 +16531,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz148.txt station = ('ktma', 0.0046905) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz148.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz148.txt @@ -15681,6 +16550,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz149.txt station = ('kdqh', 0.0031478) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz149.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz149.txt @@ -15699,6 +16569,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz151.txt station = ('kays', 0.0033711) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac229.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz151.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz151.txt @@ -15717,6 +16588,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz152.txt station = ('kays', 0.0063084) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz152.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz152.txt @@ -15735,6 +16607,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz153.txt station = ('kbqk', 0.0025942) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz153.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz153.txt @@ -15753,6 +16626,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz154.txt station = ('kbqk', 0.0009577) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz154.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz154.txt @@ -15771,6 +16645,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz155.txt station = ('kbge', 0.0035287) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac253.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz155.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz155.txt @@ -15789,6 +16664,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz156.txt station = ('kbge', 0.0017472) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz156.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz156.txt @@ -15807,6 +16683,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz157.txt station = ('kcxu', 0.0059071) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac131.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz157.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz157.txt @@ -15825,6 +16702,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz158.txt station = ('ktvi', 0.0008737) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac275.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz158.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz158.txt @@ -15843,6 +16721,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz159.txt station = ('ktvi', 0.0046291) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz159.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz159.txt @@ -15861,6 +16740,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz160.txt station = ('kvld', 0.0008827) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac185.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz160.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz160.txt @@ -15879,6 +16759,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz161.txt station = ('kvad', 0.0024032) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac173.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz161.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz161.txt @@ -15897,6 +16778,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz162.txt station = ('khoe', 0.0062965) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz162.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz162.txt @@ -15915,6 +16797,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz163.txt station = ('khoe', 0.0026586) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz163.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz163.txt @@ -15933,6 +16816,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz165.txt station = ('kssi', 0.0066130) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz165.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz165.txt @@ -15951,6 +16835,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz166.txt station = ('kfhb', 0.0050259) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz166.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz166.txt @@ -15969,6 +16854,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz250.txt station = ('kays', 0.0012800) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac299.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz250.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz250.txt @@ -15987,6 +16873,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz264.txt station = ('kays', 0.0080465) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz264.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz264.txt @@ -16005,6 +16892,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz350.txt station = ('khoe', 0.0084066) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac299.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz350.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz350.txt @@ -16023,6 +16911,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ga/gaz364.txt station = ('kjax', 0.0082724) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ga/gac049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ga/gaz364.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ga/gaz364.txt @@ -16041,6 +16930,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz001.txt station = ('phbk', 0.0064995) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz001.txt @@ -16059,6 +16949,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz003.txt station = ('phbk', 0.0019851) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz003.txt @@ -16077,6 +16968,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz004.txt station = ('phli', 0.0039234) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz004.txt @@ -16095,6 +16987,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz006.txt station = ('phhi', 0.0023226) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz006.txt @@ -16113,6 +17006,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz007.txt station = ('phhi', 0.0022975) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz007.txt @@ -16131,6 +17025,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz009.txt station = ('phng', 0.0012079) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz009.txt @@ -16149,6 +17044,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz010.txt station = ('phhi', 0.0001042) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz010.txt @@ -16167,6 +17063,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz011.txt station = ('phhi', 0.0016351) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz011.txt @@ -16185,6 +17082,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz015.txt station = ('phny', 0.0008312) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz015.txt @@ -16203,6 +17101,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz016.txt station = ('phog', 0.0067630) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz016.txt @@ -16221,6 +17120,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz017.txt station = ('phog', 0.0023540) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz017.txt @@ -16239,6 +17139,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz018.txt station = ('phog', 0.0034481) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz018.txt @@ -16257,6 +17158,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz022.txt station = ('phog', 0.0046284) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz022.txt @@ -16275,6 +17177,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz023.txt station = ('phko', 0.0062449) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz023.txt @@ -16293,6 +17196,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz026.txt station = ('phsf', 0.0045569) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz026.txt @@ -16311,6 +17215,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz027.txt station = ('phsf', 0.0035356) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz027.txt @@ -16329,6 +17234,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz028.txt station = ('phsf', 0.0039633) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz028.txt @@ -16347,6 +17253,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz029.txt station = ('phli', 0.0046735) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz029.txt @@ -16365,6 +17272,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz030.txt station = ('phli', 0.0014667) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz030.txt @@ -16383,6 +17291,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz031.txt station = ('phli', 0.0026375) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic007.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz031.txt @@ -16401,6 +17310,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz032.txt station = ('phng', 0.0028248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz032.txt @@ -16419,6 +17329,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz033.txt station = ('phnl', 0.0010826) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz033.txt @@ -16437,6 +17348,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz034.txt station = ('phjr', 0.0009521) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz034.txt @@ -16455,6 +17367,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz035.txt station = ('phhi', 0.0024710) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz035.txt @@ -16473,6 +17386,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz036.txt station = ('phnl', 0.0020702) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic003.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz036.txt @@ -16491,6 +17405,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz037.txt station = ('phmk', 0.0039783) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz037.txt @@ -16509,6 +17424,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz038.txt station = ('phmk', 0.0045733) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz038.txt @@ -16527,6 +17443,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz039.txt station = ('phmk', 0.0006048) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz039.txt @@ -16545,6 +17462,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz040.txt station = ('phmk', 0.0026253) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz040.txt @@ -16563,6 +17481,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz041.txt station = ('phmk', 0.0004769) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz041.txt @@ -16581,6 +17500,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz042.txt station = ('phny', 0.0017959) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz042.txt @@ -16599,6 +17519,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz043.txt station = ('phny', 0.0012698) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz043.txt @@ -16617,6 +17538,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz044.txt station = ('phny', 0.0010668) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz044.txt @@ -16635,6 +17557,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz045.txt station = ('phog', 0.0005743) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz045.txt @@ -16653,6 +17576,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz046.txt station = ('phog', 0.0017034) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz046.txt @@ -16671,6 +17595,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz047.txt station = ('phog', 0.0040807) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz047.txt @@ -16689,6 +17614,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz048.txt station = ('phog', 0.0070952) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz048.txt @@ -16707,6 +17633,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz049.txt station = ('phog', 0.0031060) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic009.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz049.txt @@ -16725,6 +17652,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz050.txt station = ('phog', 0.0054931) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz050.txt @@ -16743,6 +17671,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz051.txt station = ('phko', 0.0128311) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz051.txt @@ -16761,6 +17690,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz052.txt station = ('phsf', 0.0095001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz052.txt @@ -16779,6 +17709,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz053.txt station = ('phto', 0.0020606) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz053.txt @@ -16797,6 +17728,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/hi/hiz054.txt station = ('phsf', 0.0049581) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/hi/hic001.txt +tz = US/Hawaii urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/hi/hiz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/hi/hiz054.txt @@ -16805,6 +17737,7 @@ centroid = (0.3897902, 1.9928751) comment = suggested by Bill Agee description = Hong Kong Observatory station = ('vhhh', 0.0000000) +tz = Asia/Hong_Kong zone_forecast = https://www.hko.gov.hk/textonly/v2/forecast/nday.htm [iaz001] @@ -16822,6 +17755,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz001.txt station = ('klyv', 0.0042000) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz001.txt @@ -16840,6 +17774,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz002.txt station = ('kshl', 0.0038810) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz002.txt @@ -16858,6 +17793,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz003.txt station = ('kspw', 0.0037800) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz003.txt @@ -16876,6 +17812,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz004.txt station = ('kest', 0.0009867) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz004.txt @@ -16894,6 +17831,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz005.txt station = ('kaxa', 0.0022435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz005.txt @@ -16912,6 +17850,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz006.txt station = ('kfxy', 0.0028578) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac189.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz006.txt @@ -16930,6 +17869,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz007.txt station = ('kmcw', 0.0040742) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac195.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz007.txt @@ -16948,6 +17888,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz008.txt station = ('kccy', 0.0055120) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz008.txt @@ -16966,6 +17907,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz009.txt station = ('kfka', 0.0058476) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz009.txt @@ -16984,6 +17926,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz010.txt station = ('kdeh', 0.0014079) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac191.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz010.txt @@ -17002,6 +17945,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz011.txt station = ('kdeh', 0.0045134) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz011.txt @@ -17020,6 +17964,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz012.txt station = ('ksxk', 0.0017021) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz012.txt @@ -17038,6 +17983,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz013.txt station = ('kshl', 0.0035235) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz013.txt @@ -17056,6 +18002,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz014.txt station = ('kspw', 0.0016889) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz014.txt @@ -17074,6 +18021,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz015.txt station = ('kaxa', 0.0052460) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz015.txt @@ -17092,6 +18040,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz016.txt station = ('kfxy', 0.0030149) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz016.txt @@ -17110,6 +18059,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz017.txt station = ('kmcw', 0.0015097) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz017.txt @@ -17128,6 +18078,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz018.txt station = ('kccy', 0.0022006) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz018.txt @@ -17146,6 +18097,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz019.txt station = ('kccy', 0.0038152) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz019.txt @@ -17164,6 +18116,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz020.txt station = ('klrj', 0.0007505) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz020.txt @@ -17182,6 +18135,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz021.txt station = ('kslb', 0.0055437) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz021.txt @@ -17200,6 +18154,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz022.txt station = ('kslb', 0.0025887) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz022.txt @@ -17218,6 +18173,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz023.txt station = ('kaxa', 0.0080575) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz023.txt @@ -17236,6 +18192,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz024.txt station = ('kfod', 0.0039634) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz024.txt @@ -17254,6 +18211,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz025.txt station = ('kcav', 0.0004997) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac197.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz025.txt @@ -17272,6 +18230,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz026.txt station = ('khpt', 0.0004876) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz026.txt @@ -17290,6 +18249,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz027.txt station = ('kalo', 0.0059282) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz027.txt @@ -17308,6 +18268,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz028.txt station = ('kalo', 0.0040598) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz028.txt @@ -17326,6 +18287,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz029.txt station = ('kolz', 0.0035824) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz029.txt @@ -17344,6 +18306,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz030.txt station = ('kpdc', 0.0041516) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz030.txt @@ -17362,6 +18325,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz031.txt station = ('ksux', 0.0043642) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac193.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz031.txt @@ -17380,6 +18344,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz032.txt station = ('kslb', 0.0051822) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz032.txt @@ -17398,6 +18363,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz033.txt station = ('kslb', 0.0040781) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac161.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz033.txt @@ -17416,6 +18382,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz034.txt station = ('kcin', 0.0061347) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz034.txt @@ -17434,6 +18401,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz035.txt station = ('kfod', 0.0021329) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac187.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz035.txt @@ -17452,6 +18420,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz036.txt station = ('kebs', 0.0022349) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz036.txt @@ -17470,6 +18439,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz037.txt station = ('kifa', 0.0015656) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz037.txt @@ -17488,6 +18458,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz038.txt station = ('kmiw', 0.0052362) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz038.txt @@ -17506,6 +18477,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz039.txt station = ('kalo', 0.0018250) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz039.txt @@ -17524,6 +18496,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz040.txt station = ('kiib', 0.0012808) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz040.txt @@ -17542,6 +18515,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz041.txt station = ('kmxo', 0.0048906) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz041.txt @@ -17560,6 +18534,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz042.txt station = ('kdbq', 0.0026386) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz042.txt @@ -17578,6 +18553,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz043.txt station = ('ktqe', 0.0057572) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz043.txt @@ -17596,6 +18572,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz044.txt station = ('kdns', 0.0009403) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz044.txt @@ -17614,6 +18591,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz045.txt station = ('kcin', 0.0010313) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz045.txt @@ -17632,6 +18610,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz046.txt station = ('kpro', 0.0047617) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz046.txt @@ -17650,6 +18629,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz047.txt station = ('kbnw', 0.0010857) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz047.txt @@ -17668,6 +18648,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz048.txt station = ('kamw', 0.0021714) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz048.txt @@ -17686,6 +18667,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz049.txt station = ('kmiw', 0.0017675) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz049.txt @@ -17704,6 +18686,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz050.txt station = ('kmiw', 0.0050152) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac171.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz050.txt @@ -17722,6 +18705,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz051.txt station = ('kvti', 0.0024719) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz051.txt @@ -17740,6 +18724,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz052.txt station = ('kcid', 0.0037397) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz052.txt @@ -17758,6 +18743,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz053.txt station = ('kmxo', 0.0020095) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz053.txt @@ -17776,6 +18762,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz054.txt station = ('kdbq', 0.0043029) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz054.txt @@ -17794,6 +18781,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz055.txt station = ('kbta', 0.0060389) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz055.txt @@ -17812,6 +18800,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz056.txt station = ('khnr', 0.0017982) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac165.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz056.txt @@ -17830,6 +18819,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz057.txt station = ('kadu', 0.0003445) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz057.txt @@ -17848,6 +18838,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz058.txt station = ('kadu', 0.0054727) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz058.txt @@ -17866,6 +18857,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz059.txt station = ('kpro', 0.0029466) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz059.txt @@ -17884,6 +18876,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz060.txt station = ('kikv', 0.0001261) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz060.txt @@ -17902,6 +18895,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz061.txt station = ('ktnu', 0.0004849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz061.txt @@ -17920,6 +18914,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz062.txt station = ('kggi', 0.0026983) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz062.txt @@ -17938,6 +18933,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz063.txt station = ('kcid', 0.0056962) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz063.txt @@ -17956,6 +18952,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz064.txt station = ('kiow', 0.0008310) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz064.txt @@ -17974,6 +18971,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz065.txt station = ('kiow', 0.0059577) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz065.txt @@ -17992,6 +18990,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz066.txt station = ('kcwi', 0.0028181) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz066.txt @@ -18010,6 +19009,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz067.txt station = ('kmut', 0.0021035) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz067.txt @@ -18028,6 +19028,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz068.txt station = ('kdvn', 0.0006306) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz068.txt @@ -18046,6 +19047,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz069.txt station = ('kcbf', 0.0031837) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac155.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz069.txt @@ -18064,6 +19066,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz070.txt station = ('kaio', 0.0019979) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz070.txt @@ -18082,6 +19085,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz071.txt station = ('kcsq', 0.0056497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz071.txt @@ -18100,6 +19104,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz072.txt station = ('kdsm', 0.0057744) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz072.txt @@ -18118,6 +19123,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz073.txt station = ('kdsm', 0.0037369) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac181.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz073.txt @@ -18136,6 +19142,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz074.txt station = ('koxv', 0.0006412) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz074.txt @@ -18154,6 +19161,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz075.txt station = ('kooa', 0.0027112) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz075.txt @@ -18172,6 +19180,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz076.txt station = ('kooa', 0.0045568) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz076.txt @@ -18190,6 +19199,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz077.txt station = ('kawg', 0.0011328) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac183.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz077.txt @@ -18208,6 +19218,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz078.txt station = ('kmut', 0.0029592) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz078.txt @@ -18226,6 +19237,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz079.txt station = ('kcbf', 0.0044998) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz079.txt @@ -18244,6 +19256,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz080.txt station = ('krdk', 0.0014720) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz080.txt @@ -18262,6 +19275,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz081.txt station = ('kcsq', 0.0043840) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz081.txt @@ -18280,6 +19294,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz082.txt station = ('kcsq', 0.0016476) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac175.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz082.txt @@ -18298,6 +19313,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz083.txt station = ('ki75', 0.0013195) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz083.txt @@ -18316,6 +19332,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz084.txt station = ('kcnc', 0.0005178) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz084.txt @@ -18334,6 +19351,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz085.txt station = ('koxv', 0.0057311) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz085.txt @@ -18352,6 +19370,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz086.txt station = ('kotm', 0.0013233) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac179.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz086.txt @@ -18370,6 +19389,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz087.txt station = ('kffl', 0.0005535) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz087.txt @@ -18388,6 +19408,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz088.txt station = ('kmpz', 0.0008442) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz088.txt @@ -18406,6 +19427,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz089.txt station = ('kbrl', 0.0028051) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz089.txt @@ -18424,6 +19446,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz090.txt station = ('ksda', 0.0024874) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz090.txt @@ -18442,6 +19465,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz091.txt station = ('kicl', 0.0015945) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz091.txt @@ -18460,6 +19484,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz092.txt station = ('kicl', 0.0044698) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac173.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz092.txt @@ -18478,6 +19503,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz093.txt station = ('kcsq', 0.0051724) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz093.txt @@ -18496,6 +19522,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz094.txt station = ('klwd', 0.0023627) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz094.txt @@ -18514,6 +19541,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz095.txt station = ('kcnc', 0.0051545) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac185.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz095.txt @@ -18532,6 +19560,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz096.txt station = ('ktvk', 0.0011197) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz096.txt @@ -18550,6 +19579,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz097.txt station = ('kotm', 0.0061717) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz097.txt @@ -18568,6 +19598,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz098.txt station = ('kffl', 0.0051988) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac177.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz098.txt @@ -18586,6 +19617,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ia/iaz099.txt station = ('kfsw', 0.0019788) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ia/iac111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ia/iaz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ia/iaz099.txt @@ -18604,6 +19636,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz001.txt station = ('kszt', 0.0025362) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc055.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz001.txt @@ -18622,6 +19655,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz002.txt station = ('kcoe', 0.0029037) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc055.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz002.txt @@ -18640,6 +19674,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz003.txt station = ('kpuw', 0.0042476) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc057.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz003.txt @@ -18658,6 +19693,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz004.txt station = ('kmlp', 0.0060580) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc079.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz004.txt @@ -18676,6 +19712,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz005.txt station = ('kp69', 0.0099447) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc035.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz005.txt @@ -18694,6 +19731,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz006.txt station = ('kp69', 0.0067136) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz006.txt @@ -18712,6 +19750,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz007.txt station = ('kgic', 0.0046986) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz007.txt @@ -18730,6 +19769,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz008.txt station = ('kgic', 0.0062760) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz008.txt @@ -18748,6 +19788,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz009.txt station = ('ksmn', 0.0062416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc059.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz009.txt @@ -18766,6 +19807,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz010.txt station = ('ksmn', 0.0065237) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc059.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz010.txt @@ -18784,6 +19826,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz011.txt station = ('kmyl', 0.0030242) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc087.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz011.txt @@ -18802,6 +19845,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz012.txt station = ('keul', 0.0029373) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc087.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz012.txt @@ -18820,6 +19864,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz013.txt station = ('kboi', 0.0101457) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc039.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz013.txt @@ -18838,6 +19883,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz014.txt station = ('kmuo', 0.0009342) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc073.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz014.txt @@ -18856,6 +19902,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz015.txt station = ('k10u', 0.0070306) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc073.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz015.txt @@ -18874,6 +19921,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz016.txt station = ('kjer', 0.0018746) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc083.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz016.txt @@ -18892,6 +19940,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz026.txt station = ('klws', 0.0040485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz026.txt @@ -18910,6 +19959,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz027.txt station = ('kgic', 0.0071321) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz027.txt @@ -18928,6 +19978,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz028.txt station = ('kgng', 0.0067329) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc039.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz028.txt @@ -18946,6 +19997,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz029.txt station = ('kman', 0.0114128) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc073.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz029.txt @@ -18964,6 +20016,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz030.txt station = ('ktwf', 0.0051556) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc083.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz030.txt @@ -18982,6 +20035,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz033.txt station = ('kmyl', 0.0094084) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc087.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz033.txt @@ -19000,6 +20054,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz051.txt station = ('ksun', 0.0089457) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc067.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz051.txt @@ -19018,6 +20073,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz052.txt station = ('kida', 0.0094489) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc051.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz052.txt @@ -19036,6 +20092,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz053.txt station = ('krxe', 0.0017050) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc065.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz053.txt @@ -19054,6 +20111,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz054.txt station = ('kpih', 0.0036226) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc077.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz054.txt @@ -19072,6 +20130,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz055.txt station = ('kbyi', 0.0047256) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc077.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz055.txt @@ -19090,6 +20149,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz056.txt station = ('kbyi', 0.0062919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz056.txt @@ -19108,6 +20168,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz057.txt station = ('kbyi', 0.0103845) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc077.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz057.txt @@ -19126,6 +20187,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz058.txt station = ('kpih', 0.0057161) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc077.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz058.txt @@ -19144,6 +20206,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz059.txt station = ('klgu', 0.0086199) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz059.txt @@ -19162,6 +20225,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz060.txt station = ('k1u7', 0.0030528) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz060.txt @@ -19180,6 +20244,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz061.txt station = ('k1u7', 0.0008306) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz061.txt @@ -19198,6 +20263,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz062.txt station = ('k46u', 0.0096097) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc029.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz062.txt @@ -19216,6 +20282,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz063.txt station = ('k46u', 0.0046375) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc029.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz063.txt @@ -19234,6 +20301,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz064.txt station = ('kdij', 0.0033794) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc081.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz064.txt @@ -19252,6 +20320,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz065.txt station = ('kdij', 0.0032948) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc081.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz065.txt @@ -19270,6 +20339,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz066.txt station = ('kwys', 0.0072020) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc081.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz066.txt @@ -19288,6 +20358,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz067.txt station = ('krxe', 0.0114991) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz067.txt @@ -19306,6 +20377,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz068.txt station = ('kllj', 0.0148964) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz068.txt @@ -19324,6 +20396,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz069.txt station = ('kllj', 0.0107305) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz069.txt @@ -19342,6 +20415,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz070.txt station = ('kllj', 0.0026899) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz070.txt @@ -19360,6 +20434,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz071.txt station = ('kllj', 0.0043367) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz071.txt @@ -19378,6 +20453,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz072.txt station = ('ksnt', 0.0014888) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz072.txt @@ -19396,6 +20472,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz073.txt station = ('ksun', 0.0042081) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz073.txt @@ -19414,6 +20491,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz074.txt station = ('ksun', 0.0068725) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz074.txt @@ -19432,6 +20510,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/id/idz075.txt station = ('ksun', 0.0023994) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/id/idc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/id/idz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/id/idz075.txt @@ -19450,6 +20529,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz001.txt station = ('ksfy', 0.0057439) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz001.txt @@ -19468,6 +20548,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz002.txt station = ('kfep', 0.0021100) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc177.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz002.txt @@ -19486,6 +20567,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz003.txt station = ('krfd', 0.0025055) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc201.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz003.txt @@ -19504,6 +20586,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz004.txt station = ('krfd', 0.0041691) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz004.txt @@ -19522,6 +20605,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz005.txt station = ('kbuu', 0.0066671) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz005.txt @@ -19540,6 +20624,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz006.txt station = ('kugn', 0.0024051) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz006.txt @@ -19558,6 +20643,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz007.txt station = ('ksfy', 0.0022809) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz007.txt @@ -19576,6 +20662,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz008.txt station = ('krfd', 0.0039623) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz008.txt @@ -19594,6 +20681,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz009.txt station = ('ksqi', 0.0032236) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc195.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz009.txt @@ -19612,6 +20700,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz010.txt station = ('krpj', 0.0038638) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz010.txt @@ -19630,6 +20719,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz011.txt station = ('kdkb', 0.0010500) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz011.txt @@ -19648,6 +20738,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz012.txt station = ('karr', 0.0030480) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz012.txt @@ -19666,6 +20757,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz013.txt station = ('k06c', 0.0024055) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz013.txt @@ -19684,6 +20776,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz015.txt station = ('kmli', 0.0007298) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc161.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz015.txt @@ -19702,6 +20795,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz016.txt station = ('kmli', 0.0053197) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz016.txt @@ -19720,6 +20814,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz017.txt station = ('ksqi', 0.0063001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz017.txt @@ -19738,6 +20833,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz018.txt station = ('kvys', 0.0031071) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc155.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz018.txt @@ -19756,6 +20852,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz019.txt station = ('kvys', 0.0035032) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz019.txt @@ -19774,6 +20871,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz020.txt station = ('kc09', 0.0028885) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz020.txt @@ -19792,6 +20890,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz021.txt station = ('kc09', 0.0024501) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz021.txt @@ -19810,6 +20909,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz023.txt station = ('kikk', 0.0011750) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz023.txt @@ -19828,6 +20928,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz024.txt station = ('kmli', 0.0051880) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz024.txt @@ -19846,6 +20947,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz025.txt station = ('kbrl', 0.0028942) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz025.txt @@ -19864,6 +20966,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz026.txt station = ('kgbg', 0.0028832) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc187.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz026.txt @@ -19882,6 +20985,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz027.txt station = ('kgbg', 0.0028739) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz027.txt @@ -19900,6 +21004,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz028.txt station = ('kc75', 0.0055636) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc175.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz028.txt @@ -19918,6 +21023,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz029.txt station = ('kpia', 0.0023495) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz029.txt @@ -19936,6 +21042,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz030.txt station = ('kc75', 0.0005999) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz030.txt @@ -19954,6 +21061,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz031.txt station = ('kc75', 0.0046472) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc203.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz031.txt @@ -19972,6 +21080,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz032.txt station = ('kpnt', 0.0010528) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz032.txt @@ -19990,6 +21099,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz033.txt station = ('kikk', 0.0056622) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz033.txt @@ -20008,6 +21118,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz034.txt station = ('keok', 0.0037340) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz034.txt @@ -20026,6 +21137,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz035.txt station = ('kmqb', 0.0011685) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz035.txt @@ -20044,6 +21156,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz036.txt station = ('kmqb', 0.0059640) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz036.txt @@ -20062,6 +21175,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz037.txt station = ('kpia', 0.0035755) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc179.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz037.txt @@ -20080,6 +21194,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz038.txt station = ('kbmi', 0.0009414) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz038.txt @@ -20098,6 +21213,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz039.txt station = ('ktip', 0.0054062) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz039.txt @@ -20116,6 +21232,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz040.txt station = ('ki63', 0.0039028) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz040.txt @@ -20134,6 +21251,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz041.txt station = ('kspi', 0.0074828) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz041.txt @@ -20152,6 +21270,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz042.txt station = ('kaaa', 0.0007373) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz042.txt @@ -20170,6 +21289,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz043.txt station = ('kbmi', 0.0052792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz043.txt @@ -20188,6 +21308,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz044.txt station = ('kcmi', 0.0043547) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz044.txt @@ -20206,6 +21327,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz045.txt station = ('kcmi', 0.0020704) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz045.txt @@ -20224,6 +21346,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz046.txt station = ('kdnv', 0.0018519) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc183.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz046.txt @@ -20242,6 +21365,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz047.txt station = ('kijx', 0.0034828) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz047.txt @@ -20260,6 +21384,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz048.txt station = ('kspi', 0.0034809) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz048.txt @@ -20278,6 +21403,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz049.txt station = ('kijx', 0.0038979) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc171.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz049.txt @@ -20296,6 +21422,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz050.txt station = ('kijx', 0.0011370) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz050.txt @@ -20314,6 +21441,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz051.txt station = ('kspi', 0.0016354) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz051.txt @@ -20332,6 +21460,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz052.txt station = ('ktaz', 0.0007091) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz052.txt @@ -20350,6 +21479,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz053.txt station = ('kdec', 0.0013552) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz053.txt @@ -20368,6 +21498,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz054.txt station = ('kdec', 0.0047154) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz054.txt @@ -20386,6 +21517,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz055.txt station = ('kcmi', 0.0046518) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz055.txt @@ -20404,6 +21536,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz056.txt station = ('kmto', 0.0011127) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz056.txt @@ -20422,6 +21555,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz057.txt station = ('kprg', 0.0010871) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz057.txt @@ -20440,6 +21574,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz058.txt station = ('kppq', 0.0071851) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz058.txt @@ -20458,6 +21593,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz059.txt station = ('k3lf', 0.0037944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz059.txt @@ -20476,6 +21612,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz060.txt station = ('k3lf', 0.0029046) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz060.txt @@ -20494,6 +21631,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz061.txt station = ('k1h2', 0.0066961) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc173.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz061.txt @@ -20512,6 +21650,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz062.txt station = ('kmto', 0.0033955) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz062.txt @@ -20530,6 +21669,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz063.txt station = ('krsv', 0.0058506) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz063.txt @@ -20548,6 +21688,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz064.txt station = ('k3lf', 0.0057961) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz064.txt @@ -20566,6 +21707,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz065.txt station = ('kslo', 0.0062914) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz065.txt @@ -20584,6 +21726,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz066.txt station = ('k1h2', 0.0007896) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz066.txt @@ -20602,6 +21745,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz067.txt station = ('koly', 0.0050369) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz067.txt @@ -20620,6 +21764,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz068.txt station = ('krsv', 0.0015061) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz068.txt @@ -20638,6 +21783,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz069.txt station = ('kenl', 0.0047824) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz069.txt @@ -20656,6 +21802,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz070.txt station = ('kslo', 0.0006271) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz070.txt @@ -20674,6 +21821,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz071.txt station = ('kfoa', 0.0016370) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz071.txt @@ -20692,6 +21840,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz072.txt station = ('koly', 0.0012556) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz072.txt @@ -20710,6 +21859,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz073.txt station = ('kajg', 0.0019829) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz073.txt @@ -20728,6 +21878,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz074.txt station = ('kenl', 0.0051943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc189.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz074.txt @@ -20746,6 +21897,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz075.txt station = ('kmvn', 0.0008338) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz075.txt @@ -20764,6 +21916,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz076.txt station = ('kfwc', 0.0009053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc191.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz076.txt @@ -20782,6 +21935,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz077.txt station = ('kajg', 0.0055561) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz077.txt @@ -20800,6 +21954,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz078.txt station = ('kajg', 0.0032259) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc185.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz078.txt @@ -20818,6 +21973,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz079.txt station = ('ksar', 0.0024251) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz079.txt @@ -20836,6 +21992,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz080.txt station = ('kmdh', 0.0054863) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz080.txt @@ -20854,6 +22011,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz081.txt station = ('kmwa', 0.0043550) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz081.txt @@ -20872,6 +22030,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz082.txt station = ('kfwc', 0.0054659) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz082.txt @@ -20890,6 +22049,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz083.txt station = ('kcul', 0.0007761) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc193.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz083.txt @@ -20908,6 +22068,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz084.txt station = ('kmdh', 0.0018224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz084.txt @@ -20926,6 +22087,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz085.txt station = ('kmwa', 0.0010429) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc199.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz085.txt @@ -20944,6 +22106,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz086.txt station = ('kmwa', 0.0063524) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc165.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz086.txt @@ -20962,6 +22125,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz087.txt station = ('ktwt', 0.0054631) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz087.txt @@ -20980,6 +22144,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz088.txt station = ('kmdh', 0.0054482) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc181.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz088.txt @@ -20998,6 +22163,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz089.txt station = ('km30', 0.0051091) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz089.txt @@ -21016,6 +22182,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz090.txt station = ('km30', 0.0047491) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz090.txt @@ -21034,6 +22201,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz091.txt station = ('kgda', 0.0038506) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz091.txt @@ -21052,6 +22220,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz092.txt station = ('kcir', 0.0027606) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz092.txt @@ -21070,6 +22239,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz093.txt station = ('kcir', 0.0030502) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz093.txt @@ -21088,6 +22258,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz094.txt station = ('km30', 0.0008297) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz094.txt @@ -21106,6 +22277,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz095.txt station = ('kuin', 0.0009628) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz095.txt @@ -21124,6 +22296,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz096.txt station = ('ki63', 0.0008475) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz096.txt @@ -21142,6 +22315,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz097.txt station = ('kppq', 0.0014792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz097.txt @@ -21160,6 +22334,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz098.txt station = ('kset', 0.0051981) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz098.txt @@ -21178,6 +22353,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz099.txt station = ('kset', 0.0028540) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz099.txt @@ -21196,6 +22372,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz100.txt station = ('kaln', 0.0023183) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz100.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz100.txt @@ -21214,6 +22391,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz101.txt station = ('kblv', 0.0017554) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz101.txt @@ -21232,6 +22410,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz102.txt station = ('kcps', 0.0050434) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz102.txt @@ -21250,6 +22429,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz103.txt station = ('kpwk', 0.0013309) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz103.txt @@ -21268,6 +22448,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz104.txt station = ('kmdw', 0.0006580) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz104.txt @@ -21286,6 +22467,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz105.txt station = ('kigq', 0.0026578) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz105.txt @@ -21304,6 +22486,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz106.txt station = ('klot', 0.0006229) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc197.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz106.txt @@ -21322,6 +22505,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz107.txt station = ('kjot', 0.0032093) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc197.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz107.txt @@ -21340,6 +22524,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/il/ilz108.txt station = ('kigq', 0.0036308) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/il/ilc197.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/il/ilz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/il/ilz108.txt @@ -21358,6 +22543,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz001.txt station = ('kigq', 0.0029305) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz001.txt @@ -21376,6 +22562,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz002.txt station = ('kvpz', 0.0008966) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz002.txt @@ -21394,6 +22581,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz005.txt station = ('kgsh', 0.0014896) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz005.txt @@ -21412,6 +22600,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz006.txt station = ('kirs', 0.0029730) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz006.txt @@ -21430,6 +22619,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz007.txt station = ('kanq', 0.0010812) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc151.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz007.txt @@ -21448,6 +22638,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz008.txt station = ('kc62', 0.0024230) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz008.txt @@ -21466,6 +22657,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz009.txt station = ('kgwb', 0.0017948) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz009.txt @@ -21484,6 +22676,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz010.txt station = ('krzl', 0.0028362) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz010.txt @@ -21502,6 +22695,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz011.txt station = ('krzl', 0.0015759) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz011.txt @@ -21520,6 +22714,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz012.txt station = ('koxi', 0.0008778) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz012.txt @@ -21538,6 +22733,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz013.txt station = ('koxi', 0.0050529) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz013.txt @@ -21556,6 +22752,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz014.txt station = ('kc65', 0.0008648) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz014.txt @@ -21574,6 +22771,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz015.txt station = ('krcr', 0.0011257) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz015.txt @@ -21592,6 +22790,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz017.txt station = ('kasw', 0.0049881) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc183.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz017.txt @@ -21610,6 +22809,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz018.txt station = ('ksmd', 0.0014596) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz018.txt @@ -21628,6 +22828,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz019.txt station = ('klaf', 0.0058213) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz019.txt @@ -21646,6 +22847,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz020.txt station = ('kmcx', 0.0014884) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc181.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz020.txt @@ -21664,6 +22866,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz021.txt station = ('kggp', 0.0033556) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz021.txt @@ -21682,6 +22885,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz022.txt station = ('kggp', 0.0009575) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz022.txt @@ -21700,6 +22904,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz023.txt station = ('kgus', 0.0025052) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz023.txt @@ -21718,6 +22923,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz024.txt station = ('kgus', 0.0058158) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc169.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz024.txt @@ -21736,6 +22942,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz025.txt station = ('khhg', 0.0005819) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz025.txt @@ -21754,6 +22961,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz026.txt station = ('khhg', 0.0037928) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc179.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz026.txt @@ -21772,6 +22980,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz027.txt station = ('kpld', 0.0051921) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz027.txt @@ -21790,6 +22999,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz028.txt station = ('kdnv', 0.0041268) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc171.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz028.txt @@ -21808,6 +23018,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz029.txt station = ('klaf', 0.0008899) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc157.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz029.txt @@ -21826,6 +23037,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz030.txt station = ('kfkr', 0.0012592) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz030.txt @@ -21844,6 +23056,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz031.txt station = ('kokk', 0.0010944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz031.txt @@ -21862,6 +23075,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz032.txt station = ('kmzz', 0.0005600) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz032.txt @@ -21880,6 +23094,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz033.txt station = ('kmie', 0.0043094) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz033.txt @@ -21898,6 +23113,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz034.txt station = ('kpld', 0.0003048) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz034.txt @@ -21916,6 +23132,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz035.txt station = ('kcfj', 0.0049939) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz035.txt @@ -21934,6 +23151,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz036.txt station = ('kcfj', 0.0011855) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz036.txt @@ -21952,6 +23170,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz037.txt station = ('ktyq', 0.0029246) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz037.txt @@ -21970,6 +23189,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz038.txt station = ('kokk', 0.0038784) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc159.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz038.txt @@ -21988,6 +23208,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz039.txt station = ('kump', 0.0023982) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz039.txt @@ -22006,6 +23227,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz040.txt station = ('kaid', 0.0015792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz040.txt @@ -22024,6 +23246,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz041.txt station = ('kmie', 0.0001083) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz041.txt @@ -22042,6 +23265,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz042.txt station = ('kpld', 0.0051252) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc135.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz042.txt @@ -22060,6 +23284,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz043.txt station = ('kprg', 0.0038463) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc165.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz043.txt @@ -22078,6 +23303,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz044.txt station = ('kcfj', 0.0052102) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz044.txt @@ -22096,6 +23322,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz045.txt station = ('kgpc', 0.0007224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz045.txt @@ -22114,6 +23341,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz046.txt station = ('k2r2', 0.0006127) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz046.txt @@ -22132,6 +23360,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz047.txt station = ('keye', 0.0023473) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz047.txt @@ -22150,6 +23379,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz048.txt station = ('kmqj', 0.0016969) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz048.txt @@ -22168,6 +23398,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz049.txt station = ('kuwl', 0.0013441) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz049.txt @@ -22186,6 +23417,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz050.txt station = ('krid', 0.0029189) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc177.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz050.txt @@ -22204,6 +23436,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz051.txt station = ('khuf', 0.0010448) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc167.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz051.txt @@ -22222,6 +23455,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz052.txt station = ('khuf', 0.0028864) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz052.txt @@ -22240,6 +23474,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz053.txt station = ('kbmg', 0.0041237) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz053.txt @@ -22258,6 +23493,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz054.txt station = ('kind', 0.0046523) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz054.txt @@ -22276,6 +23512,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz055.txt station = ('kind', 0.0046508) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz055.txt @@ -22294,6 +23531,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz056.txt station = ('kgez', 0.0010484) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc145.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz056.txt @@ -22312,6 +23550,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz057.txt station = ('kgez', 0.0045406) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc139.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz057.txt @@ -22330,6 +23569,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz058.txt station = ('kuwl', 0.0045683) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz058.txt @@ -22348,6 +23588,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz059.txt station = ('krid', 0.0025505) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc161.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz059.txt @@ -22366,6 +23607,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz060.txt station = ('krsv', 0.0034318) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc153.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz060.txt @@ -22384,6 +23626,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz061.txt station = ('kbmg', 0.0050814) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz061.txt @@ -22402,6 +23645,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz062.txt station = ('kbmg', 0.0012805) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz062.txt @@ -22420,6 +23664,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz063.txt station = ('kbak', 0.0045939) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz063.txt @@ -22438,6 +23683,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz064.txt station = ('kbak', 0.0010610) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz064.txt @@ -22456,6 +23702,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz065.txt station = ('khlb', 0.0033458) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz065.txt @@ -22474,6 +23721,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz066.txt station = ('khlb', 0.0029395) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz066.txt @@ -22492,6 +23740,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz067.txt station = ('klwv', 0.0028238) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz067.txt @@ -22510,6 +23759,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz068.txt station = ('kdcy', 0.0007853) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz068.txt @@ -22528,6 +23778,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz069.txt station = ('kfrh', 0.0041885) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz069.txt @@ -22546,6 +23797,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz070.txt station = ('kbfr', 0.0005171) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz070.txt @@ -22564,6 +23816,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz071.txt station = ('kbak', 0.0065583) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz071.txt @@ -22582,6 +23835,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz072.txt station = ('kims', 0.0047049) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz072.txt @@ -22600,6 +23854,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz073.txt station = ('khlb', 0.0042084) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc137.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz073.txt @@ -22618,6 +23873,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz074.txt station = ('ki67', 0.0033429) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz074.txt @@ -22636,6 +23892,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz075.txt station = ('kcvg', 0.0044062) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz075.txt @@ -22654,6 +23911,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz076.txt station = ('kfrh', 0.0020335) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz076.txt @@ -22672,6 +23930,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz077.txt station = ('kbfr', 0.0062445) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc175.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz077.txt @@ -22690,6 +23949,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz078.txt station = ('kims', 0.0040489) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc143.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz078.txt @@ -22708,6 +23968,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz079.txt station = ('kims', 0.0005962) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz079.txt @@ -22726,6 +23987,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz080.txt station = ('kcvg', 0.0063665) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc155.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz080.txt @@ -22744,6 +24006,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz081.txt station = ('kevv', 0.0049108) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz081.txt @@ -22762,6 +24025,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz082.txt station = ('khnb', 0.0046556) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz082.txt @@ -22780,6 +24044,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz083.txt station = ('khnb', 0.0022145) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz083.txt @@ -22798,6 +24063,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz084.txt station = ('kfrh', 0.0045116) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz084.txt @@ -22816,6 +24082,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz085.txt station = ('kcul', 0.0036935) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz085.txt @@ -22834,6 +24101,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz086.txt station = ('kevv', 0.0007331) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz086.txt @@ -22852,6 +24120,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz087.txt station = ('kevv', 0.0037339) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc173.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz087.txt @@ -22870,6 +24139,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz088.txt station = ('kky8', 0.0023053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz088.txt @@ -22888,6 +24158,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz089.txt station = ('kky8', 0.0037598) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz089.txt @@ -22906,6 +24177,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz090.txt station = ('kftk', 0.0055224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz090.txt @@ -22924,6 +24196,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz091.txt station = ('kjvy', 0.0024436) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz091.txt @@ -22942,6 +24215,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz092.txt station = ('kjvy', 0.0019982) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz092.txt @@ -22960,6 +24234,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz103.txt station = ('kppo', 0.0010053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz103.txt @@ -22978,6 +24253,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz104.txt station = ('ksbn', 0.0019841) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc141.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz104.txt @@ -22996,6 +24272,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz116.txt station = ('kasw', 0.0011061) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz116.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz116.txt @@ -23014,6 +24291,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz203.txt station = ('koxi', 0.0022443) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz203.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz203.txt @@ -23032,6 +24310,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz204.txt station = ('ksbn', 0.0022082) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc141.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz204.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz204.txt @@ -23050,6 +24329,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/in/inz216.txt station = ('kasw', 0.0022519) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/in/inc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/in/inz216.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/in/inz216.txt @@ -23068,6 +24348,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz001.txt station = ('ksyf', 0.0009702) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz001.txt @@ -23086,6 +24367,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz002.txt station = ('kadt', 0.0010599) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz002.txt @@ -23104,6 +24386,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz003.txt station = ('koin', 0.0013646) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz003.txt @@ -23122,6 +24405,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz004.txt station = ('knrn', 0.0011578) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz004.txt @@ -23140,6 +24424,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz005.txt station = ('kk82', 0.0074360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz005.txt @@ -23158,6 +24443,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz006.txt station = ('kk82', 0.0004321) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc183.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz006.txt @@ -23176,6 +24462,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz007.txt station = ('kcnk', 0.0086476) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz007.txt @@ -23194,6 +24481,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz008.txt station = ('kcnk', 0.0048243) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz008.txt @@ -23212,6 +24500,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz009.txt station = ('kmyz', 0.0062480) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc201.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz009.txt @@ -23230,6 +24519,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz010.txt station = ('kmyz', 0.0019106) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz010.txt @@ -23248,6 +24538,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz011.txt station = ('kk83', 0.0037854) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz011.txt @@ -23266,6 +24557,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz012.txt station = ('kk83', 0.0031852) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz012.txt @@ -23284,6 +24576,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz013.txt station = ('kgld', 0.0003793) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc181.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz013.txt @@ -23302,6 +24595,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz014.txt station = ('kcbk', 0.0013419) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc193.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz014.txt @@ -23320,6 +24614,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz015.txt station = ('koel', 0.0065725) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc179.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz015.txt @@ -23338,6 +24633,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz016.txt station = ('khlc', 0.0007364) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz016.txt @@ -23356,6 +24652,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz017.txt station = ('khlc', 0.0068646) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz017.txt @@ -23374,6 +24671,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz018.txt station = ('kk82', 0.0071780) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz018.txt @@ -23392,6 +24690,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz019.txt station = ('kcnk', 0.0080201) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz019.txt @@ -23410,6 +24709,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz020.txt station = ('kcnk', 0.0012391) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz020.txt @@ -23428,6 +24728,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz021.txt station = ('kcnk', 0.0074293) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz021.txt @@ -23446,6 +24747,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz022.txt station = ('kmhk', 0.0029329) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc161.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz022.txt @@ -23464,6 +24766,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz023.txt station = ('kmhk', 0.0062930) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz023.txt @@ -23482,6 +24785,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz024.txt station = ('ktop', 0.0064874) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz024.txt @@ -23500,6 +24804,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz025.txt station = ('kstj', 0.0067177) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz025.txt @@ -23518,6 +24823,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz026.txt station = ('klwc', 0.0044411) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz026.txt @@ -23536,6 +24842,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz027.txt station = ('kgld', 0.0079022) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc199.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz027.txt @@ -23554,6 +24861,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz028.txt station = ('koel', 0.0056242) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz028.txt @@ -23572,6 +24880,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz029.txt station = ('koel', 0.0056433) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz029.txt @@ -23590,6 +24899,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz030.txt station = ('khlc', 0.0079134) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc195.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz030.txt @@ -23608,6 +24918,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz031.txt station = ('khys', 0.0013238) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz031.txt @@ -23626,6 +24937,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz032.txt station = ('krsl', 0.0011199) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz032.txt @@ -23644,6 +24956,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz033.txt station = ('krsl', 0.0088328) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz033.txt @@ -23662,6 +24975,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz034.txt station = ('ksln', 0.0060959) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz034.txt @@ -23680,6 +24994,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz035.txt station = ('kfri', 0.0062211) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz035.txt @@ -23698,6 +25013,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz036.txt station = ('kfri', 0.0009409) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz036.txt @@ -23716,6 +25032,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz037.txt station = ('kfri', 0.0066088) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz037.txt @@ -23734,6 +25051,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz038.txt station = ('kfoe', 0.0075420) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc197.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz038.txt @@ -23752,6 +25070,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz039.txt station = ('ktop', 0.0017248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc177.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz039.txt @@ -23770,6 +25089,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz040.txt station = ('klwc', 0.0025254) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz040.txt @@ -23788,6 +25108,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz041.txt station = ('k3k3', 0.0085707) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz041.txt @@ -23806,6 +25127,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz042.txt station = ('ktqk', 0.0063193) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc203.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz042.txt @@ -23824,6 +25146,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz043.txt station = ('ktqk', 0.0003294) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc171.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz043.txt @@ -23842,6 +25165,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz044.txt station = ('ktqk', 0.0057208) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz044.txt @@ -23860,6 +25184,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz045.txt station = ('khys', 0.0109620) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz045.txt @@ -23878,6 +25203,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz046.txt station = ('khys', 0.0057314) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc165.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz046.txt @@ -23896,6 +25222,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz047.txt station = ('kgbd', 0.0027090) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz047.txt @@ -23914,6 +25241,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz048.txt station = ('klyo', 0.0061823) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz048.txt @@ -23932,6 +25260,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz049.txt station = ('ksln', 0.0000100) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz049.txt @@ -23950,6 +25279,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz050.txt station = ('klyo', 0.0003610) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz050.txt @@ -23968,6 +25298,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz051.txt station = ('kmpr', 0.0009050) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz051.txt @@ -23986,6 +25317,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz052.txt station = ('kewk', 0.0059653) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz052.txt @@ -24004,6 +25336,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz053.txt station = ('kemp', 0.0054229) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz053.txt @@ -24022,6 +25355,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz054.txt station = ('kemp', 0.0022416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz054.txt @@ -24040,6 +25374,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz055.txt station = ('kfoe', 0.0050136) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz055.txt @@ -24058,6 +25393,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz056.txt station = ('kowi', 0.0006372) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz056.txt @@ -24076,6 +25412,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz057.txt station = ('kixd', 0.0044596) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz057.txt @@ -24094,6 +25431,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz058.txt station = ('kukl', 0.0011501) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz058.txt @@ -24112,6 +25450,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz059.txt station = ('kowi', 0.0056886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz059.txt @@ -24130,6 +25469,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz060.txt station = ('kfsk', 0.0072943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz060.txt @@ -24148,6 +25488,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz061.txt station = ('k3k3', 0.0006363) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc075.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz061.txt @@ -24166,6 +25507,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz062.txt station = ('k3k3', 0.0058625) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz062.txt @@ -24184,6 +25526,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz063.txt station = ('kgck', 0.0022467) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz063.txt @@ -24202,6 +25545,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz064.txt station = ('kddc', 0.0056791) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz064.txt @@ -24220,6 +25564,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz065.txt station = ('kgbd', 0.0058639) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz065.txt @@ -24238,6 +25583,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz066.txt station = ('kptt', 0.0057961) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc185.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz066.txt @@ -24256,6 +25602,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz067.txt station = ('khut', 0.0036122) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc155.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz067.txt @@ -24274,6 +25621,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz068.txt station = ('kewk', 0.0019837) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz068.txt @@ -24292,6 +25640,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz069.txt station = ('keqa', 0.0003215) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz069.txt @@ -24310,6 +25659,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz070.txt station = ('k13k', 0.0009327) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz070.txt @@ -24328,6 +25678,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz071.txt station = ('kcnu', 0.0052254) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc207.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz071.txt @@ -24346,6 +25697,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz072.txt station = ('kk88', 0.0012026) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz072.txt @@ -24364,6 +25716,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz073.txt station = ('kfsk', 0.0014819) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz073.txt @@ -24382,6 +25735,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz074.txt station = ('kjhn', 0.0007899) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc187.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz074.txt @@ -24400,6 +25754,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz075.txt station = ('kuls', 0.0011686) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz075.txt @@ -24418,6 +25773,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz076.txt station = ('k19s', 0.0012591) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz076.txt @@ -24436,6 +25792,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz077.txt station = ('kgck', 0.0049479) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz077.txt @@ -24454,6 +25811,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz078.txt station = ('kddc', 0.0017012) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz078.txt @@ -24472,6 +25830,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz079.txt station = ('kddc', 0.0092686) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz079.txt @@ -24490,6 +25849,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz080.txt station = ('kptt', 0.0078114) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz080.txt @@ -24508,6 +25868,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz081.txt station = ('kptt', 0.0009223) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz081.txt @@ -24526,6 +25887,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz082.txt station = ('kp28', 0.0074832) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz082.txt @@ -24544,6 +25906,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz083.txt station = ('kict', 0.0007184) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc173.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz083.txt @@ -24562,6 +25925,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz084.txt station = ('keha', 0.0035395) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz084.txt @@ -24580,6 +25944,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz085.txt station = ('khqg', 0.0009656) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc189.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz085.txt @@ -24598,6 +25963,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz086.txt station = ('klbl', 0.0029720) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc175.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz086.txt @@ -24616,6 +25982,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz087.txt station = ('k19s', 0.0078925) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz087.txt @@ -24634,6 +26001,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz088.txt station = ('kddc', 0.0094895) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz088.txt @@ -24652,6 +26020,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz089.txt station = ('kavk', 0.0111223) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz089.txt @@ -24670,6 +26039,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz090.txt station = ('kp28', 0.0020998) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz090.txt @@ -24688,6 +26058,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz091.txt station = ('kp28', 0.0067849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz091.txt @@ -24706,6 +26077,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz092.txt station = ('kegt', 0.0019414) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc191.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz092.txt @@ -24724,6 +26096,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz093.txt station = ('kwld', 0.0029914) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz093.txt @@ -24742,6 +26115,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz094.txt station = ('k13k', 0.0069758) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz094.txt @@ -24760,6 +26134,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz095.txt station = ('kcnu', 0.0040546) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc205.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz095.txt @@ -24778,6 +26153,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz096.txt station = ('kcnu', 0.0030846) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz096.txt @@ -24796,6 +26172,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz097.txt station = ('kpts', 0.0019525) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz097.txt @@ -24814,6 +26191,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz098.txt station = ('kbvo', 0.0074130) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz098.txt @@ -24832,6 +26210,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz099.txt station = ('kidp', 0.0007732) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz099.txt @@ -24850,6 +26229,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz100.txt station = ('kppf', 0.0037483) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz100.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz100.txt @@ -24868,6 +26248,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz101.txt station = ('kmio', 0.0045759) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz101.txt @@ -24886,6 +26267,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz102.txt station = ('kstj', 0.0031130) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz102.txt @@ -24904,6 +26286,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz103.txt station = ('klwc', 0.0040027) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz103.txt @@ -24922,6 +26305,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz104.txt station = ('kmkc', 0.0022293) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc209.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz104.txt @@ -24940,6 +26324,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ks/ksz105.txt station = ('kixd', 0.0014357) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ks/ksc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ks/ksz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ks/ksz105.txt @@ -24958,6 +26343,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz001.txt station = ('kucy', 0.0041320) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz001.txt @@ -24976,6 +26362,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz002.txt station = ('kucy', 0.0051730) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz002.txt @@ -24994,6 +26381,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz003.txt station = ('kpah', 0.0044623) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz003.txt @@ -25012,6 +26400,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz004.txt station = ('kcir', 0.0030693) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz004.txt @@ -25030,6 +26419,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz005.txt station = ('kpah', 0.0007548) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz005.txt @@ -25048,6 +26438,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz006.txt station = ('kcey', 0.0040272) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz006.txt @@ -25066,6 +26457,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz007.txt station = ('kgda', 0.0040434) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz007.txt @@ -25084,6 +26476,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz008.txt station = ('kcey', 0.0038669) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz008.txt @@ -25102,6 +26495,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz009.txt station = ('kcey', 0.0015992) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz009.txt @@ -25120,6 +26514,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz010.txt station = ('kgda', 0.0003356) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz010.txt @@ -25138,6 +26533,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz011.txt station = ('kgda', 0.0055479) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz011.txt @@ -25156,6 +26552,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz012.txt station = ('khop', 0.0057641) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc221.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz012.txt @@ -25174,6 +26571,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz013.txt station = ('kgda', 0.0047330) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz013.txt @@ -25192,6 +26590,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz014.txt station = ('ktwt', 0.0020545) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc225.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz014.txt @@ -25210,6 +26609,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz015.txt station = ('ktwt', 0.0037384) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc233.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz015.txt @@ -25228,6 +26628,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz016.txt station = ('k2i0', 0.0021203) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz016.txt @@ -25246,6 +26647,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz017.txt station = ('khvc', 0.0008138) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz017.txt @@ -25264,6 +26666,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz018.txt station = ('kehr', 0.0015646) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz018.txt @@ -25282,6 +26685,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz019.txt station = ('kowb', 0.0011048) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz019.txt @@ -25300,6 +26704,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz020.txt station = ('k2i0', 0.0035756) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz020.txt @@ -25318,6 +26723,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz021.txt station = ('km21', 0.0002704) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc177.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz021.txt @@ -25336,6 +26742,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz022.txt station = ('khvc', 0.0038729) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc219.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz022.txt @@ -25354,6 +26761,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz023.txt station = ('kky8', 0.0022448) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz023.txt @@ -25372,6 +26780,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz024.txt station = ('kekx', 0.0071257) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz024.txt @@ -25390,6 +26799,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz025.txt station = ('kftk', 0.0036519) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc163.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz025.txt @@ -25408,6 +26818,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz026.txt station = ('km21', 0.0061277) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc183.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz026.txt @@ -25426,6 +26837,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz027.txt station = ('kekx', 0.0070019) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz027.txt @@ -25444,6 +26856,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz028.txt station = ('kekx', 0.0005708) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz028.txt @@ -25462,6 +26875,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz029.txt station = ('ksdf', 0.0037587) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz029.txt @@ -25480,6 +26894,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz030.txt station = ('klou', 0.0008112) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz030.txt @@ -25498,6 +26913,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz031.txt station = ('kjvy', 0.0040079) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc185.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz031.txt @@ -25516,6 +26932,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz032.txt station = ('kims', 0.0030871) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc223.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz032.txt @@ -25534,6 +26951,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz033.txt station = ('kfft', 0.0055125) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz033.txt @@ -25552,6 +26970,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz034.txt station = ('kfft', 0.0040822) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc211.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz034.txt @@ -25570,6 +26989,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz035.txt station = ('kfft', 0.0010231) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz035.txt @@ -25588,6 +27008,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz036.txt station = ('k27k', 0.0022745) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc209.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz036.txt @@ -25606,6 +27027,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz037.txt station = ('k27k', 0.0038857) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz037.txt @@ -25624,6 +27046,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz038.txt station = ('kbry', 0.0044823) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc215.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz038.txt @@ -25642,6 +27065,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz039.txt station = ('kfft', 0.0033698) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz039.txt @@ -25660,6 +27084,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz040.txt station = ('klex', 0.0019788) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc239.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz040.txt @@ -25678,6 +27103,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz041.txt station = ('klex', 0.0019473) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz041.txt @@ -25696,6 +27122,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz042.txt station = ('k27k', 0.0030224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz042.txt @@ -25714,6 +27141,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz043.txt station = ('kiob', 0.0048680) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc181.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz043.txt @@ -25732,6 +27160,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz044.txt station = ('kfgx', 0.0030640) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz044.txt @@ -25750,6 +27179,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz045.txt station = ('kbry', 0.0004878) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc179.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz045.txt @@ -25768,6 +27198,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz046.txt station = ('k6i2', 0.0022887) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc229.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz046.txt @@ -25786,6 +27217,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz047.txt station = ('kdvk', 0.0042733) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc167.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz047.txt @@ -25804,6 +27236,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz048.txt station = ('klex', 0.0028280) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz048.txt @@ -25822,6 +27255,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz049.txt station = ('kiob', 0.0027653) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz049.txt @@ -25840,6 +27274,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz050.txt station = ('kiob', 0.0010079) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc173.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz050.txt @@ -25858,6 +27293,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz051.txt station = ('ksym', 0.0024556) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz051.txt @@ -25876,6 +27312,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz052.txt station = ('ksym', 0.0023069) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc205.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz052.txt @@ -25894,6 +27331,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz053.txt station = ('kekx', 0.0039806) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz053.txt @@ -25912,6 +27350,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz054.txt station = ('k6i2', 0.0014651) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc155.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz054.txt @@ -25930,6 +27369,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz055.txt station = ('kdvk', 0.0014991) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz055.txt @@ -25948,6 +27388,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz056.txt station = ('kdvk', 0.0034378) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz056.txt @@ -25966,6 +27407,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz057.txt station = ('krga', 0.0017313) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc151.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz057.txt @@ -25984,6 +27426,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz058.txt station = ('kiob', 0.0063862) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz058.txt @@ -26002,6 +27445,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz059.txt station = ('kiob', 0.0045028) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc197.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz059.txt @@ -26020,6 +27464,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz060.txt station = ('ksym', 0.0047777) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc165.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz060.txt @@ -26038,6 +27483,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz061.txt station = ('kbwg', 0.0055910) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz061.txt @@ -26056,6 +27502,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz062.txt station = ('kbwg', 0.0048987) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz062.txt @@ -26074,6 +27521,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz063.txt station = ('kglw', 0.0047787) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz063.txt @@ -26092,6 +27540,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz064.txt station = ('kaas', 0.0037628) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz064.txt @@ -26110,6 +27559,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz065.txt station = ('kaas', 0.0002930) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc217.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz065.txt @@ -26128,6 +27578,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz066.txt station = ('kdvk', 0.0049686) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz066.txt @@ -26146,6 +27597,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz067.txt station = ('kdvk', 0.0026786) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc137.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz067.txt @@ -26164,6 +27616,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz068.txt station = ('krga', 0.0046410) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc203.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz068.txt @@ -26182,6 +27635,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz069.txt station = ('krga', 0.0058298) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz069.txt @@ -26200,6 +27654,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz070.txt station = ('km91', 0.0056590) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz070.txt @@ -26218,6 +27673,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz071.txt station = ('kbwg', 0.0004808) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc227.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz071.txt @@ -26236,6 +27692,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz072.txt station = ('k1m5', 0.0029929) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc213.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz072.txt @@ -26254,6 +27711,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz073.txt station = ('k1m5', 0.0048698) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz073.txt @@ -26272,6 +27730,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz074.txt station = ('kglw', 0.0011863) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz074.txt @@ -26290,6 +27749,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz075.txt station = ('kglw', 0.0064852) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc171.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz075.txt @@ -26308,6 +27768,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz076.txt station = ('kglw', 0.0045794) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz076.txt @@ -26326,6 +27787,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz077.txt station = ('kaas', 0.0044546) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz077.txt @@ -26344,6 +27806,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz078.txt station = ('kekq', 0.0036881) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc207.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz078.txt @@ -26362,6 +27825,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz079.txt station = ('ksme', 0.0010158) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc199.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz079.txt @@ -26380,6 +27844,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz080.txt station = ('kloz', 0.0008572) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc125.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz080.txt @@ -26398,6 +27863,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz081.txt station = ('k8a3', 0.0066242) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz081.txt @@ -26416,6 +27882,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz082.txt station = ('kekq', 0.0045042) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz082.txt @@ -26434,6 +27901,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz083.txt station = ('kekq', 0.0010180) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc231.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz083.txt @@ -26452,6 +27920,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz084.txt station = ('kbyl', 0.0041055) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc147.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz084.txt @@ -26470,6 +27939,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz085.txt station = ('kbyl', 0.0009944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc235.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz085.txt @@ -26488,6 +27958,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz086.txt station = ('kloz', 0.0044835) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz086.txt @@ -26506,6 +27977,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz087.txt station = ('k1a6', 0.0022760) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz087.txt @@ -26524,6 +27996,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz088.txt station = ('ki35', 0.0019642) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz088.txt @@ -26542,6 +28015,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz089.txt station = ('kims', 0.0049209) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz089.txt @@ -26560,6 +28034,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz090.txt station = ('kcvg', 0.0057452) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz090.txt @@ -26578,6 +28053,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz091.txt station = ('kcvg', 0.0016246) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz091.txt @@ -26596,6 +28072,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz092.txt station = ('kcvg', 0.0027261) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz092.txt @@ -26614,6 +28091,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz093.txt station = ('kluk', 0.0027266) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz093.txt @@ -26632,6 +28110,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz094.txt station = ('kfft', 0.0059528) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc187.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz094.txt @@ -26650,6 +28129,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz095.txt station = ('kcvg', 0.0070257) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz095.txt @@ -26668,6 +28148,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz096.txt station = ('ki69', 0.0069833) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc191.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz096.txt @@ -26686,6 +28167,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz097.txt station = ('kfgx', 0.0053793) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz097.txt @@ -26704,6 +28186,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz098.txt station = ('kfgx', 0.0042339) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc201.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz098.txt @@ -26722,6 +28205,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz099.txt station = ('kfgx', 0.0014416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc161.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz099.txt @@ -26740,6 +28224,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz100.txt station = ('kfgx', 0.0049902) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc135.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz100.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz100.txt @@ -26758,6 +28243,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz101.txt station = ('kdwu', 0.0025204) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz101.txt @@ -26776,6 +28262,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz102.txt station = ('kdwu', 0.0059295) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz102.txt @@ -26794,6 +28281,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz103.txt station = ('khts', 0.0018885) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz103.txt @@ -26812,6 +28300,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz104.txt station = ('ksym', 0.0069343) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz104.txt @@ -26830,6 +28319,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz105.txt station = ('ksjs', 0.0056932) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz105.txt @@ -26848,6 +28338,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz106.txt station = ('kjkl', 0.0059695) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc175.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz106.txt @@ -26866,6 +28357,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz107.txt station = ('ksjs', 0.0031622) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz107.txt @@ -26884,6 +28376,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz108.txt station = ('kjkl', 0.0036541) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc237.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz108.txt @@ -26902,6 +28395,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz109.txt station = ('kjkl', 0.0040919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc153.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz109.txt @@ -26920,6 +28414,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz110.txt station = ('kpbx', 0.0024820) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz110.txt @@ -26938,6 +28433,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz111.txt station = ('kjkl', 0.0055305) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz111.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz111.txt @@ -26956,6 +28452,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz112.txt station = ('kjkl', 0.0010823) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz112.txt @@ -26974,6 +28471,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz113.txt station = ('kcpf', 0.0042738) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz113.txt @@ -26992,6 +28490,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz114.txt station = ('kcpf', 0.0059030) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc189.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz114.txt @@ -27010,6 +28509,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz115.txt station = ('kcpf', 0.0025094) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc193.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz115.txt @@ -27028,6 +28528,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz116.txt station = ('kloz', 0.0050780) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz116.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz116.txt @@ -27046,6 +28547,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz117.txt station = ('ki35', 0.0041092) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc131.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz117.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz117.txt @@ -27064,6 +28566,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz118.txt station = ('klnp', 0.0050895) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz118.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz118.txt @@ -27082,6 +28585,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz119.txt station = ('ksjs', 0.0019190) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc159.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz119.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz119.txt @@ -27100,6 +28604,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ky/kyz120.txt station = ('kpbx', 0.0028637) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ky/kyc195.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ky/kyz120.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ky/kyz120.txt @@ -27118,6 +28623,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz001.txt station = ('kdtn', 0.0021051) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz001.txt @@ -27136,6 +28642,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz002.txt station = ('kbad', 0.0032590) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz002.txt @@ -27154,6 +28661,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz003.txt station = ('kmne', 0.0012968) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz003.txt @@ -27172,6 +28680,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz004.txt station = ('kmne', 0.0054048) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz004.txt @@ -27190,6 +28699,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz005.txt station = ('krsn', 0.0018910) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz005.txt @@ -27208,6 +28718,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz006.txt station = ('krsn', 0.0063671) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz006.txt @@ -27226,6 +28737,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz007.txt station = ('kbqp', 0.0016394) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz007.txt @@ -27244,6 +28756,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz008.txt station = ('kbqp', 0.0062671) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz008.txt @@ -27262,6 +28775,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz009.txt station = ('ktvr', 0.0073588) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz009.txt @@ -27280,6 +28794,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz010.txt station = ('k3f3', 0.0005233) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz010.txt @@ -27298,6 +28813,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz011.txt station = ('k3f3', 0.0063017) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz011.txt @@ -27316,6 +28832,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz012.txt station = ('kmne', 0.0063165) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz012.txt @@ -27334,6 +28851,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz013.txt station = ('krsn', 0.0037352) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz013.txt @@ -27352,6 +28870,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz014.txt station = ('kmlu', 0.0019039) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz014.txt @@ -27370,6 +28889,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz015.txt station = ('kmlu', 0.0043312) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz015.txt @@ -27388,6 +28908,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz016.txt station = ('ktvr', 0.0031487) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz016.txt @@ -27406,6 +28927,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz017.txt station = ('kaqv', 0.0023733) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz017.txt @@ -27424,6 +28946,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz018.txt station = ('kier', 0.0002177) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz018.txt @@ -27442,6 +28965,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz019.txt station = ('kier', 0.0077604) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz019.txt @@ -27460,6 +28984,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz020.txt station = ('kesf', 0.0052009) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz020.txt @@ -27478,6 +29003,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz021.txt station = ('kmlu', 0.0075097) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz021.txt @@ -27496,6 +29022,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz022.txt station = ('kesf', 0.0052569) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz022.txt @@ -27514,6 +29041,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz023.txt station = ('kmlu', 0.0085387) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz023.txt @@ -27532,6 +29060,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz024.txt station = ('k0r4', 0.0053786) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz024.txt @@ -27550,6 +29079,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz025.txt station = ('khez', 0.0067462) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz025.txt @@ -27568,6 +29098,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz026.txt station = ('k0r4', 0.0028358) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz026.txt @@ -27586,6 +29117,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz027.txt station = ('kpoe', 0.0010278) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz027.txt @@ -27604,6 +29136,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz028.txt station = ('kesf', 0.0049448) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz028.txt @@ -27622,6 +29155,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz029.txt station = ('kesf', 0.0071977) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz029.txt @@ -27640,6 +29174,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz030.txt station = ('kdri', 0.0031973) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz030.txt @@ -27658,6 +29193,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz031.txt station = ('kacp', 0.0026982) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz031.txt @@ -27676,6 +29212,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz032.txt station = ('kacp', 0.0042576) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz032.txt @@ -27694,6 +29231,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz033.txt station = ('kopl', 0.0015741) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz033.txt @@ -27712,6 +29250,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz034.txt station = ('khzr', 0.0018398) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz034.txt @@ -27730,6 +29269,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz035.txt station = ('khzr', 0.0029529) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz035.txt @@ -27748,6 +29288,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz036.txt station = ('kbtr', 0.0056629) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz036.txt @@ -27766,6 +29307,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz037.txt station = ('khdc', 0.0068519) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz037.txt @@ -27784,6 +29326,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz039.txt station = ('kbxa', 0.0027243) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz039.txt @@ -27802,6 +29345,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz044.txt station = ('klft', 0.0009701) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz044.txt @@ -27820,6 +29364,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz045.txt station = ('kara', 0.0041422) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz045.txt @@ -27838,6 +29383,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz046.txt station = ('kbtr', 0.0056586) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz046.txt @@ -27856,6 +29402,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz047.txt station = ('kbtr', 0.0027437) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz047.txt @@ -27874,6 +29421,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz048.txt station = ('kbtr', 0.0008209) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz048.txt @@ -27892,6 +29440,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz055.txt station = ('kptn', 0.0024594) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz055.txt @@ -27910,6 +29459,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz056.txt station = ('kreg', 0.0050943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz056.txt @@ -27928,6 +29478,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz057.txt station = ('kreg', 0.0033590) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz057.txt @@ -27946,6 +29497,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz058.txt station = ('kaps', 0.0005664) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz058.txt @@ -27964,6 +29516,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz059.txt station = ('khum', 0.0031249) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz059.txt @@ -27982,6 +29535,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz060.txt station = ('kmsy', 0.0026548) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz060.txt @@ -28000,6 +29554,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz064.txt station = ('knbg', 0.0025681) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz064.txt @@ -28018,6 +29573,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz065.txt station = ('khum', 0.0028944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz065.txt @@ -28036,6 +29592,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz066.txt station = ('khum', 0.0045103) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz066.txt @@ -28054,6 +29611,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz067.txt station = ('kgao', 0.0012416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz067.txt @@ -28072,6 +29630,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz068.txt station = ('kgao', 0.0032886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz068.txt @@ -28090,6 +29649,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz069.txt station = ('knbg', 0.0095460) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz069.txt @@ -28108,6 +29668,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz070.txt station = ('knbg', 0.0071215) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz070.txt @@ -28126,6 +29687,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz071.txt station = ('khdc', 0.0053594) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz071.txt @@ -28144,6 +29706,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz073.txt station = ('kuxl', 0.0057687) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz073.txt @@ -28162,6 +29725,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz074.txt station = ('kuxl', 0.0057687) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz074.txt @@ -28180,6 +29744,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz076.txt station = ('kasd', 0.0024767) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz076.txt @@ -28198,6 +29763,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz077.txt station = ('knew', 0.0011803) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz077.txt @@ -28216,6 +29782,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz078.txt station = ('knew', 0.0036104) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz078.txt @@ -28234,6 +29801,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz079.txt station = ('kasd', 0.0035052) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz079.txt @@ -28252,6 +29820,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz080.txt station = ('kasd', 0.0033460) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz080.txt @@ -28270,6 +29839,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz081.txt station = ('khdc', 0.0009155) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz081.txt @@ -28288,6 +29858,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz082.txt station = ('khdc', 0.0023855) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz082.txt @@ -28306,6 +29877,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz083.txt station = ('kbtr', 0.0056689) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz083.txt @@ -28324,6 +29896,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz084.txt station = ('kaps', 0.0040848) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz084.txt @@ -28342,6 +29915,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz085.txt station = ('kreg', 0.0006823) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz085.txt @@ -28360,6 +29934,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz086.txt station = ('kreg', 0.0024986) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz086.txt @@ -28378,6 +29953,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz087.txt station = ('kmsy', 0.0017585) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz087.txt @@ -28396,6 +29972,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz088.txt station = ('knbg', 0.0025136) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz088.txt @@ -28414,6 +29991,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz089.txt station = ('knbg', 0.0002469) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz089.txt @@ -28432,6 +30010,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz090.txt station = ('knbg', 0.0013762) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz090.txt @@ -28450,6 +30029,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz141.txt station = ('klch', 0.0020428) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz141.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz141.txt @@ -28468,6 +30048,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz142.txt station = ('k3r7', 0.0029062) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz142.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz142.txt @@ -28486,6 +30067,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz143.txt station = ('k3r7', 0.0043648) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz143.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz143.txt @@ -28504,6 +30086,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz152.txt station = ('kiya', 0.0031445) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz152.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz152.txt @@ -28522,6 +30105,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz153.txt station = ('kara', 0.0038336) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz153.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz153.txt @@ -28540,6 +30124,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz154.txt station = ('kptn', 0.0022595) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz154.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz154.txt @@ -28558,6 +30143,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz241.txt station = ('kuxl', 0.0013499) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz241.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz241.txt @@ -28576,6 +30162,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz242.txt station = ('k3r7', 0.0026244) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz242.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz242.txt @@ -28594,6 +30181,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz243.txt station = ('k3r7', 0.0038944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz243.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz243.txt @@ -28612,6 +30200,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz252.txt station = ('kiya', 0.0050311) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz252.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz252.txt @@ -28630,6 +30219,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz253.txt station = ('kara', 0.0049649) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz253.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz253.txt @@ -28648,6 +30238,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/la/laz254.txt station = ('kp92', 0.0021372) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/la/lac101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/la/laz254.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/la/laz254.txt @@ -28666,6 +30257,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz001.txt station = ('kaqw', 0.0024509) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz001.txt @@ -28684,6 +30276,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz002.txt station = ('kaqw', 0.0050379) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz002.txt @@ -28702,6 +30295,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz003.txt station = ('kore', 0.0022461) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz003.txt @@ -28720,6 +30314,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz004.txt station = ('kfit', 0.0033295) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz004.txt @@ -28738,6 +30333,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz005.txt station = ('kbed', 0.0010278) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz005.txt @@ -28756,6 +30352,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz006.txt station = ('klwm', 0.0008651) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz006.txt @@ -28774,6 +30371,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz007.txt station = ('kbvy', 0.0011333) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz007.txt @@ -28792,6 +30390,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz008.txt station = ('kbaf', 0.0043504) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz008.txt @@ -28810,6 +30409,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz009.txt station = ('kbaf', 0.0028037) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz009.txt @@ -28828,6 +30428,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz010.txt station = ('kcef', 0.0018381) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz010.txt @@ -28846,6 +30447,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz011.txt station = ('kcef', 0.0014873) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz011.txt @@ -28864,6 +30466,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz012.txt station = ('korh', 0.0023637) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz012.txt @@ -28882,6 +30485,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz013.txt station = ('kowd', 0.0014689) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz013.txt @@ -28900,6 +30504,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz014.txt station = ('kbed', 0.0020188) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz014.txt @@ -28918,6 +30523,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz015.txt station = ('kbos', 0.0010560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz015.txt @@ -28936,6 +30542,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz016.txt station = ('kbos', 0.0025319) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz016.txt @@ -28954,6 +30561,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz017.txt station = ('ktan', 0.0022635) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz017.txt @@ -28972,6 +30580,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz018.txt station = ('ktan', 0.0021792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz018.txt @@ -28990,6 +30599,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz019.txt station = ('kghg', 0.0013721) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz019.txt @@ -29008,6 +30618,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz020.txt station = ('kewb', 0.0009474) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz020.txt @@ -29026,6 +30637,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz021.txt station = ('kewb', 0.0026824) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz021.txt @@ -29044,6 +30656,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz022.txt station = ('khya', 0.0011193) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz022.txt @@ -29062,6 +30675,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz023.txt station = ('kmvy', 0.0005197) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz023.txt @@ -29080,6 +30694,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz024.txt station = ('kack', 0.0005008) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz024.txt @@ -29098,6 +30713,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz025.txt station = ('kpsf', 0.0038194) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz025.txt @@ -29116,6 +30732,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ma/maz026.txt station = ('kfit', 0.0019519) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ma/mac017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ma/maz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ma/maz026.txt @@ -29134,6 +30751,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz001.txt station = ('k2g4', 0.0012341) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz001.txt @@ -29152,6 +30770,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz003.txt station = ('khgr', 0.0020014) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz003.txt @@ -29170,6 +30789,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz004.txt station = ('kfdk', 0.0010065) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz004.txt @@ -29188,6 +30808,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz005.txt station = ('kdmw', 0.0008143) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz005.txt @@ -29206,6 +30827,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz006.txt station = ('kdmh', 0.0046081) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz006.txt @@ -29224,6 +30846,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz008.txt station = ('k0w3', 0.0035546) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz008.txt @@ -29242,6 +30865,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz011.txt station = ('kdmh', 0.0008409) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc510.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz011.txt @@ -29260,6 +30884,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz012.txt station = ('kapg', 0.0040546) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz012.txt @@ -29278,6 +30903,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz013.txt station = ('kadw', 0.0002698) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz013.txt @@ -29296,6 +30922,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz014.txt station = ('knak', 0.0017530) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz014.txt @@ -29314,6 +30941,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz015.txt station = ('kesn', 0.0047642) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz015.txt @@ -29332,6 +30960,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz016.txt station = ('kdaa', 0.0044990) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz016.txt @@ -29350,6 +30979,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz017.txt station = ('k2w6', 0.0008161) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz017.txt @@ -29368,6 +30998,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz018.txt station = ('k2w6', 0.0041265) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz018.txt @@ -29386,6 +31017,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz019.txt station = ('kesn', 0.0005779) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz019.txt @@ -29404,6 +31036,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz020.txt station = ('kesn', 0.0034308) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz020.txt @@ -29422,6 +31055,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz021.txt station = ('kcge', 0.0010809) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz021.txt @@ -29440,6 +31074,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz022.txt station = ('ksby', 0.0017783) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz022.txt @@ -29458,6 +31093,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz023.txt station = ('kwal', 0.0050111) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz023.txt @@ -29476,6 +31112,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz024.txt station = ('ksby', 0.0026230) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz024.txt @@ -29494,6 +31131,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz025.txt station = ('koxb', 0.0012895) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz025.txt @@ -29512,6 +31150,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz501.txt station = ('kcbe', 0.0022660) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz501.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz501.txt @@ -29530,6 +31169,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz502.txt station = ('kcbe', 0.0022183) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz502.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz502.txt @@ -29548,6 +31188,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz503.txt station = ('kgai', 0.0021781) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz503.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz503.txt @@ -29566,6 +31207,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz504.txt station = ('kgai', 0.0015148) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz504.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz504.txt @@ -29584,6 +31226,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz505.txt station = ('kgai', 0.0030647) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz505.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz505.txt @@ -29602,6 +31245,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz506.txt station = ('kbwi', 0.0029449) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz506.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz506.txt @@ -29620,6 +31264,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz507.txt station = ('k0w3', 0.0028312) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz507.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz507.txt @@ -29638,6 +31283,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/md/mdz508.txt station = ('k0w3', 0.0029264) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/md/mdc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/md/mdz508.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/md/mdz508.txt @@ -29656,6 +31302,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez001.txt station = ('k40b', 0.0077018) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez001.txt @@ -29674,6 +31321,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez002.txt station = ('kpqi', 0.0021489) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez002.txt @@ -29692,6 +31340,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez003.txt station = ('k40b', 0.0084735) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez003.txt @@ -29710,6 +31359,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez004.txt station = ('k40b', 0.0083598) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez004.txt @@ -29728,6 +31378,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez005.txt station = ('kmlt', 0.0051980) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez005.txt @@ -29746,6 +31397,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez006.txt station = ('khul', 0.0043239) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez006.txt @@ -29764,6 +31416,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez007.txt station = ('k8b0', 0.0037067) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez007.txt @@ -29782,6 +31435,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez008.txt station = ('k8b0', 0.0022149) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez008.txt @@ -29800,6 +31454,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez009.txt station = ('kgnr', 0.0059364) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez009.txt @@ -29818,6 +31473,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez010.txt station = ('kgnr', 0.0025119) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez010.txt @@ -29836,6 +31492,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez011.txt station = ('kmlt', 0.0057813) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez011.txt @@ -29854,6 +31511,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez012.txt station = ('kizg', 0.0060058) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez012.txt @@ -29872,6 +31530,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez013.txt station = ('kaug', 0.0076094) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez013.txt @@ -29890,6 +31549,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez014.txt station = ('kwvl', 0.0053547) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez014.txt @@ -29908,6 +31568,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez015.txt station = ('kbgr', 0.0024012) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez015.txt @@ -29926,6 +31587,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez016.txt station = ('kbgr', 0.0061645) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez016.txt @@ -29944,6 +31606,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez017.txt station = ('cwss', 0.0059536) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez017.txt @@ -29962,6 +31625,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez018.txt station = ('ksfm', 0.0028831) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez018.txt @@ -29980,6 +31644,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez019.txt station = ('klew', 0.0040554) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez019.txt @@ -29998,6 +31663,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez020.txt station = ('klew', 0.0022434) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez020.txt @@ -30016,6 +31682,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez021.txt station = ('kaug', 0.0016678) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez021.txt @@ -30034,6 +31701,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez022.txt station = ('kbgr', 0.0063110) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez022.txt @@ -30052,6 +31720,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez023.txt station = ('ksfm', 0.0018717) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez023.txt @@ -30070,6 +31739,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez024.txt station = ('kpwm', 0.0021938) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez024.txt @@ -30088,6 +31758,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez025.txt station = ('kiwi', 0.0018180) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez025.txt @@ -30106,6 +31777,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez026.txt station = ('kiwi', 0.0028868) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez026.txt @@ -30124,6 +31796,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez027.txt station = ('krkd', 0.0017182) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez027.txt @@ -30142,6 +31815,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez028.txt station = ('krkd', 0.0049653) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez028.txt @@ -30160,6 +31834,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez029.txt station = ('kbhb', 0.0004189) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez029.txt @@ -30178,6 +31853,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez030.txt station = ('cwss', 0.0100396) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez030.txt @@ -30196,6 +31872,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez031.txt station = ('kgnr', 0.0064804) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez031.txt @@ -30214,6 +31891,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez032.txt station = ('cwss', 0.0075491) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez032.txt @@ -30232,6 +31910,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/me/mez033.txt station = ('kizg', 0.0034074) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/me/mec005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/me/mez033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/me/mez033.txt @@ -30250,6 +31929,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz001.txt station = ('kcmx', 0.0076447) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz001.txt @@ -30268,6 +31948,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz002.txt station = ('klnl', 0.0089960) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic131.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz002.txt @@ -30286,6 +31967,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz003.txt station = ('kcmx', 0.0025674) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz003.txt @@ -30304,6 +31986,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz004.txt station = ('kcmx', 0.0089096) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz004.txt @@ -30322,6 +32005,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz005.txt station = ('ksaw', 0.0032601) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz005.txt @@ -30340,6 +32024,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz006.txt station = ('kp53', 0.0005907) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz006.txt @@ -30358,6 +32043,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz007.txt station = ('kery', 0.0029761) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz007.txt @@ -30376,6 +32062,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz009.txt station = ('kd25', 0.0054967) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz009.txt @@ -30394,6 +32081,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz010.txt station = ('kimt', 0.0084847) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz010.txt @@ -30412,6 +32100,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz011.txt station = ('kimt', 0.0044970) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz011.txt @@ -30430,6 +32119,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz012.txt station = ('kmnm', 0.0078375) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz012.txt @@ -30448,6 +32138,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz013.txt station = ('kesc', 0.0032445) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz013.txt @@ -30466,6 +32157,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz014.txt station = ('kisq', 0.0013698) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic153.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz014.txt @@ -30484,6 +32176,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz016.txt station = ('kpln', 0.0013686) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz016.txt @@ -30502,6 +32195,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz017.txt station = ('kslh', 0.0036172) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz017.txt @@ -30520,6 +32214,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz018.txt station = ('kpzq', 0.0017263) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic141.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz018.txt @@ -30538,6 +32233,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz020.txt station = ('ktvc', 0.0046734) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz020.txt @@ -30556,6 +32252,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz021.txt station = ('kacb', 0.0007770) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz021.txt @@ -30574,6 +32271,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz022.txt station = ('kglr', 0.0010462) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic137.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz022.txt @@ -30592,6 +32290,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz023.txt station = ('kapn', 0.0069806) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz023.txt @@ -30610,6 +32309,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz024.txt station = ('kapn', 0.0011409) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz024.txt @@ -30628,6 +32328,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz025.txt station = ('kfks', 0.0023086) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz025.txt @@ -30646,6 +32347,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz026.txt station = ('ktvc', 0.0010938) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz026.txt @@ -30664,6 +32366,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz027.txt station = ('kacb', 0.0054675) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz027.txt @@ -30682,6 +32385,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz028.txt station = ('kgov', 0.0014728) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz028.txt @@ -30700,6 +32404,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz029.txt station = ('ky31', 0.0076508) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic135.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz029.txt @@ -30718,6 +32423,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz030.txt station = ('kosc', 0.0049856) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz030.txt @@ -30736,6 +32442,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz031.txt station = ('kmbl', 0.0026748) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz031.txt @@ -30754,6 +32461,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz032.txt station = ('kcad', 0.0022380) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic165.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz032.txt @@ -30772,6 +32480,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz033.txt station = ('kcad', 0.0041299) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz033.txt @@ -30790,6 +32499,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz034.txt station = ('khtl', 0.0007319) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic143.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz034.txt @@ -30808,6 +32518,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz035.txt station = ('ky31', 0.0017072) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz035.txt @@ -30826,6 +32537,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz036.txt station = ('kosc', 0.0037385) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz036.txt @@ -30844,6 +32556,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz037.txt station = ('kldm', 0.0019531) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz037.txt @@ -30862,6 +32575,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz038.txt station = ('krqb', 0.0059849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz038.txt @@ -30880,6 +32594,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz039.txt station = ('krqb', 0.0051821) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz039.txt @@ -30898,6 +32613,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz040.txt station = ('kmop', 0.0066377) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz040.txt @@ -30916,6 +32632,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz041.txt station = ('ky31', 0.0051480) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz041.txt @@ -30934,6 +32651,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz042.txt station = ('ky31', 0.0047453) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz042.txt @@ -30952,6 +32670,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz043.txt station = ('kffx', 0.0049385) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz043.txt @@ -30970,6 +32689,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz044.txt station = ('kffx', 0.0032146) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz044.txt @@ -30988,6 +32708,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz045.txt station = ('krqb', 0.0026779) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz045.txt @@ -31006,6 +32727,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz046.txt station = ('kmop', 0.0014919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz046.txt @@ -31024,6 +32746,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz047.txt station = ('kikw', 0.0016571) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz047.txt @@ -31042,6 +32765,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz048.txt station = ('kmbs', 0.0032461) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz048.txt @@ -31060,6 +32784,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz049.txt station = ('kbax', 0.0010095) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz049.txt @@ -31078,6 +32803,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz050.txt station = ('kmkg', 0.0024288) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz050.txt @@ -31096,6 +32822,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz051.txt station = ('kamn', 0.0059031) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz051.txt @@ -31114,6 +32841,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz052.txt station = ('kamn', 0.0011710) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz052.txt @@ -31132,6 +32860,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz053.txt station = ('khyx', 0.0029659) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic145.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz053.txt @@ -31150,6 +32879,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz054.txt station = ('kcfs', 0.0003745) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic157.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz054.txt @@ -31168,6 +32898,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz055.txt station = ('kbax', 0.0065779) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic151.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz055.txt @@ -31186,6 +32917,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz056.txt station = ('kbiv', 0.0039101) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic139.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz056.txt @@ -31204,6 +32936,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz057.txt station = ('kgrr', 0.0026312) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz057.txt @@ -31222,6 +32955,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz058.txt station = ('ky70', 0.0002186) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz058.txt @@ -31240,6 +32974,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz059.txt station = ('klan', 0.0028068) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz059.txt @@ -31258,6 +32993,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz060.txt station = ('krnp', 0.0006893) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic155.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz060.txt @@ -31276,6 +33012,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz061.txt station = ('kfnt', 0.0011082) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz061.txt @@ -31294,6 +33031,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz062.txt station = ('kd95', 0.0007566) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz062.txt @@ -31312,6 +33050,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz063.txt station = ('kphn', 0.0019526) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic147.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz063.txt @@ -31330,6 +33069,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz064.txt station = ('kbiv', 0.0038788) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz064.txt @@ -31348,6 +33088,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz065.txt station = ('kbtl', 0.0052045) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz065.txt @@ -31366,6 +33107,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz066.txt station = ('kfpk', 0.0005132) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz066.txt @@ -31384,6 +33126,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz067.txt station = ('ktew', 0.0008404) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz067.txt @@ -31402,6 +33145,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz068.txt station = ('kozw', 0.0010412) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz068.txt @@ -31420,6 +33164,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz069.txt station = ('kptk', 0.0004147) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic125.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz069.txt @@ -31438,6 +33183,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz070.txt station = ('kmtc', 0.0018731) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz070.txt @@ -31456,6 +33202,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz071.txt station = ('klwa', 0.0035206) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic159.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz071.txt @@ -31474,6 +33221,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz072.txt station = ('kazo', 0.0003215) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz072.txt @@ -31492,6 +33240,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz073.txt station = ('krmy', 0.0006500) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz073.txt @@ -31510,6 +33259,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz074.txt station = ('kjxn', 0.0006437) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz074.txt @@ -31528,6 +33278,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz075.txt station = ('karb', 0.0013111) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic161.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz075.txt @@ -31546,6 +33297,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz076.txt station = ('kdtw', 0.0010714) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic163.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz076.txt @@ -31564,6 +33316,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz078.txt station = ('kekm', 0.0034678) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz078.txt @@ -31582,6 +33335,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz079.txt station = ('khai', 0.0011621) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic149.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz079.txt @@ -31600,6 +33354,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz080.txt station = ('koeb', 0.0003124) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz080.txt @@ -31618,6 +33373,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz081.txt station = ('kjym', 0.0005936) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz081.txt @@ -31636,6 +33392,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz082.txt station = ('kadg', 0.0005429) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz082.txt @@ -31654,6 +33411,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz083.txt station = ('kttf', 0.0013451) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz083.txt @@ -31672,6 +33430,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz084.txt station = ('klnl', 0.0092142) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz084.txt @@ -31690,6 +33449,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz085.txt station = ('kisq', 0.0062587) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic153.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz085.txt @@ -31708,6 +33468,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz086.txt station = ('cyam', 0.0056729) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz086.txt @@ -31726,6 +33487,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz087.txt station = ('kciu', 0.0017902) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz087.txt @@ -31744,6 +33506,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz088.txt station = ('kdrm', 0.0023721) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz088.txt @@ -31762,6 +33525,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz095.txt station = ('kery', 0.0031656) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz095.txt @@ -31780,6 +33544,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz096.txt station = ('kmcd', 0.0033381) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz096.txt @@ -31798,6 +33563,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz097.txt station = ('kslh', 0.0022376) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz097.txt @@ -31816,6 +33582,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz098.txt station = ('ksjx', 0.0002835) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz098.txt @@ -31834,6 +33601,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz099.txt station = ('kbfa', 0.0017645) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz099.txt @@ -31852,6 +33620,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz177.txt station = ('kbeh', 0.0010616) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz177.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz177.txt @@ -31870,6 +33639,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mi/miz277.txt station = ('ksbn', 0.0037678) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mi/mic021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mi/miz277.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mi/miz277.txt @@ -31888,6 +33658,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz001.txt station = ('kckn', 0.0010340) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz001.txt @@ -31906,6 +33677,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz002.txt station = ('k3n8', 0.0063438) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz002.txt @@ -31924,6 +33696,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz003.txt station = ('kjkj', 0.0022579) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz003.txt @@ -31942,6 +33715,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz004.txt station = ('khco', 0.0018922) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz004.txt @@ -31960,6 +33734,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz005.txt station = ('krox', 0.0018242) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz005.txt @@ -31978,6 +33753,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz006.txt station = ('kbde', 0.0033866) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz006.txt @@ -31996,6 +33772,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz007.txt station = ('khco', 0.0071683) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz007.txt @@ -32014,6 +33791,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz008.txt station = ('ktvf', 0.0055170) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz008.txt @@ -32032,6 +33810,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz009.txt station = ('kvwu', 0.0057703) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz009.txt @@ -32050,6 +33829,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz010.txt station = ('kinl', 0.0072262) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz010.txt @@ -32068,6 +33848,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz011.txt station = ('kcdd', 0.0022863) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz011.txt @@ -32086,6 +33867,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz012.txt station = ('kckc', 0.0095530) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz012.txt @@ -32104,6 +33886,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz013.txt station = ('ktvf', 0.0017103) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz013.txt @@ -32122,6 +33905,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz014.txt station = ('ktvf', 0.0035549) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz014.txt @@ -32140,6 +33924,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz015.txt station = ('kfse', 0.0020445) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz015.txt @@ -32158,6 +33943,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz016.txt station = ('kfse', 0.0053023) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz016.txt @@ -32176,6 +33962,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz017.txt station = ('kbji', 0.0027634) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz017.txt @@ -32194,6 +33981,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz018.txt station = ('kfoz', 0.0022673) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz018.txt @@ -32212,6 +34000,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz019.txt station = ('kevm', 0.0009215) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz019.txt @@ -32230,6 +34019,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz020.txt station = ('ktwm', 0.0054080) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz020.txt @@ -32248,6 +34038,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz021.txt station = ('kgna', 0.0006207) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz021.txt @@ -32266,6 +34057,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz022.txt station = ('k3n8', 0.0018063) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz022.txt @@ -32284,6 +34076,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz023.txt station = ('k3n8', 0.0067622) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz023.txt @@ -32302,6 +34095,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz024.txt station = ('kpkd', 0.0040568) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz024.txt @@ -32320,6 +34114,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz025.txt station = ('kxvg', 0.0020160) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz025.txt @@ -32338,6 +34133,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz026.txt station = ('kgpz', 0.0009026) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz026.txt @@ -32356,6 +34152,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz027.txt station = ('kdtl', 0.0018496) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz027.txt @@ -32374,6 +34171,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz028.txt station = ('kdtl', 0.0058614) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz028.txt @@ -32392,6 +34190,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz029.txt station = ('kbwp', 0.0025883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz029.txt @@ -32410,6 +34209,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz030.txt station = ('kffm', 0.0026720) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz030.txt @@ -32428,6 +34228,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz031.txt station = ('kadc', 0.0031033) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz031.txt @@ -32446,6 +34247,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz032.txt station = ('kadc', 0.0037420) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz032.txt @@ -32464,6 +34266,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz033.txt station = ('kpwc', 0.0034522) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz033.txt @@ -32482,6 +34285,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz034.txt station = ('kbrd', 0.0016224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz034.txt @@ -32500,6 +34304,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz035.txt station = ('khzx', 0.0038465) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz035.txt @@ -32518,6 +34323,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz036.txt station = ('khzx', 0.0038532) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz036.txt @@ -32536,6 +34342,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz037.txt station = ('kcoq', 0.0013151) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz037.txt @@ -32554,6 +34361,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz038.txt station = ('k04w', 0.0025303) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz038.txt @@ -32572,6 +34380,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz039.txt station = ('keth', 0.0007575) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc155.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz039.txt @@ -32590,6 +34399,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz040.txt station = ('ky63', 0.0009291) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz040.txt @@ -32608,6 +34418,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz041.txt station = ('kaxn', 0.0013383) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz041.txt @@ -32626,6 +34437,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz042.txt station = ('k14y', 0.0030011) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz042.txt @@ -32644,6 +34456,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz043.txt station = ('klxl', 0.0014742) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz043.txt @@ -32662,6 +34475,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz044.txt station = ('kjmr', 0.0044458) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz044.txt @@ -32680,6 +34494,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz045.txt station = ('kjmr', 0.0010665) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz045.txt @@ -32698,6 +34513,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz046.txt station = ('kvvv', 0.0021103) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz046.txt @@ -32716,6 +34532,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz047.txt station = ('kmox', 0.0005328) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz047.txt @@ -32734,6 +34551,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz048.txt station = ('kghw', 0.0019191) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz048.txt @@ -32752,6 +34570,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz049.txt station = ('kpex', 0.0035403) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz049.txt @@ -32770,6 +34589,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz050.txt station = ('kstc', 0.0026760) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz050.txt @@ -32788,6 +34608,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz051.txt station = ('kpnm', 0.0028260) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz051.txt @@ -32806,6 +34627,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz052.txt station = ('kcbg', 0.0003601) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz052.txt @@ -32824,6 +34646,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz053.txt station = ('kros', 0.0034566) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz053.txt @@ -32842,6 +34665,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz054.txt station = ('kdxx', 0.0001722) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz054.txt @@ -32860,6 +34684,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz055.txt station = ('kbbb', 0.0007071) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz055.txt @@ -32878,6 +34703,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz056.txt station = ('kmve', 0.0020913) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz056.txt @@ -32896,6 +34722,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz057.txt station = ('kbdh', 0.0016830) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz057.txt @@ -32914,6 +34741,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz058.txt station = ('kljf', 0.0005155) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz058.txt @@ -32932,6 +34760,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz059.txt station = ('kmgg', 0.0011207) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc171.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz059.txt @@ -32950,6 +34779,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz060.txt station = ('kmic', 0.0019034) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz060.txt @@ -32968,6 +34798,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz061.txt station = ('kane', 0.0021811) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz061.txt @@ -32986,6 +34817,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz062.txt station = ('kstp', 0.0015841) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz062.txt @@ -33004,6 +34836,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz063.txt station = ('k21d', 0.0007885) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz063.txt @@ -33022,6 +34855,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz064.txt station = ('kmml', 0.0046902) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc173.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz064.txt @@ -33040,6 +34874,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz065.txt station = ('kovl', 0.0013938) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz065.txt @@ -33058,6 +34893,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz066.txt station = ('khcd', 0.0015659) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz066.txt @@ -33076,6 +34912,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz067.txt station = ('kgyl', 0.0036075) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz067.txt @@ -33094,6 +34931,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz068.txt station = ('kfcm', 0.0041173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz068.txt @@ -33112,6 +34950,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz069.txt station = ('kfcm', 0.0033092) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz069.txt @@ -33130,6 +34969,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz070.txt station = ('klvn', 0.0021585) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz070.txt @@ -33148,6 +34988,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz071.txt station = ('kcnb', 0.0053070) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz071.txt @@ -33166,6 +35007,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz072.txt station = ('kmml', 0.0006952) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz072.txt @@ -33184,6 +35026,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz073.txt station = ('krwf', 0.0033214) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz073.txt @@ -33202,6 +35045,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz074.txt station = ('kulm', 0.0031288) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz074.txt @@ -33220,6 +35064,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz075.txt station = ('kulm', 0.0032067) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz075.txt @@ -33238,6 +35083,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz076.txt station = ('kmkt', 0.0035681) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz076.txt @@ -33256,6 +35102,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz077.txt station = ('kfbl', 0.0004406) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz077.txt @@ -33274,6 +35121,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz078.txt station = ('krgk', 0.0043094) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz078.txt @@ -33292,6 +35140,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz079.txt station = ('k9mn', 0.0055829) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz079.txt @@ -33310,6 +35159,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz080.txt station = ('kdvp', 0.0006642) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz080.txt @@ -33328,6 +35178,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz081.txt station = ('kmwm', 0.0018684) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz081.txt @@ -33346,6 +35197,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz082.txt station = ('kjyg', 0.0007179) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc165.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz082.txt @@ -33364,6 +35216,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz083.txt station = ('kmkt', 0.0036945) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz083.txt @@ -33382,6 +35235,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz084.txt station = ('kacq', 0.0009920) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc161.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz084.txt @@ -33400,6 +35254,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz085.txt station = ('kowa', 0.0016743) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz085.txt @@ -33418,6 +35273,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz086.txt station = ('ktob', 0.0003919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz086.txt @@ -33436,6 +35292,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz087.txt station = ('k9mn', 0.0010599) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz087.txt @@ -33454,6 +35311,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz088.txt station = ('kona', 0.0019539) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz088.txt @@ -33472,6 +35330,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz089.txt station = ('kotg', 0.0021884) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz089.txt @@ -33490,6 +35349,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz090.txt station = ('kmjq', 0.0021968) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz090.txt @@ -33508,6 +35368,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz091.txt station = ('kfrm', 0.0017491) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz091.txt @@ -33526,6 +35387,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz092.txt station = ('kfrm', 0.0059334) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz092.txt @@ -33544,6 +35406,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz093.txt station = ('kael', 0.0002792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz093.txt @@ -33562,6 +35425,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz094.txt station = ('kaum', 0.0022845) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz094.txt @@ -33580,6 +35444,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz095.txt station = ('kfka', 0.0011323) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz095.txt @@ -33598,6 +35463,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz096.txt station = ('klse', 0.0048004) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz096.txt @@ -33616,6 +35482,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz097.txt station = ('kdvp', 0.0060104) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz097.txt @@ -33634,6 +35501,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mn/mnz098.txt station = ('klyv', 0.0010492) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mn/mnc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mn/mnz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mn/mnz098.txt @@ -33652,6 +35520,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz001.txt station = ('ksda', 0.0055745) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz001.txt @@ -33670,6 +35539,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz002.txt station = ('kevu', 0.0004440) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz002.txt @@ -33688,6 +35558,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz003.txt station = ('kevu', 0.0069112) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc227.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz003.txt @@ -33706,6 +35577,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz004.txt station = ('kevu', 0.0071577) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz004.txt @@ -33724,6 +35596,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz005.txt station = ('klwd', 0.0050144) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz005.txt @@ -33742,6 +35615,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz006.txt station = ('klwd', 0.0057364) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz006.txt @@ -33760,6 +35634,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz007.txt station = ('ktvk', 0.0038896) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc171.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz007.txt @@ -33778,6 +35653,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz008.txt station = ('kirk', 0.0064728) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc197.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz008.txt @@ -33796,6 +35672,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz009.txt station = ('kirk', 0.0081642) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc199.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz009.txt @@ -33814,6 +35691,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz010.txt station = ('keok', 0.0041701) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz010.txt @@ -33832,6 +35710,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz011.txt station = ('kevu', 0.0060203) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz011.txt @@ -33850,6 +35729,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz012.txt station = ('kstj', 0.0040826) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz012.txt @@ -33868,6 +35748,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz013.txt station = ('kezz', 0.0033634) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz013.txt @@ -33886,6 +35767,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz014.txt station = ('kezz', 0.0056345) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz014.txt @@ -33904,6 +35786,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz015.txt station = ('kcdj', 0.0051950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz015.txt @@ -33922,6 +35805,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz016.txt station = ('ktvk', 0.0087193) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc211.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz016.txt @@ -33940,6 +35824,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz017.txt station = ('kirk', 0.0017199) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz017.txt @@ -33958,6 +35843,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz018.txt station = ('kirk', 0.0053869) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz018.txt @@ -33976,6 +35862,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz019.txt station = ('khae', 0.0074930) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz019.txt @@ -33994,6 +35881,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz020.txt station = ('kstj', 0.0023830) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz020.txt @@ -34012,6 +35900,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz021.txt station = ('kezz', 0.0027906) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz021.txt @@ -34030,6 +35919,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz022.txt station = ('kezz', 0.0041379) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz022.txt @@ -34048,6 +35938,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz023.txt station = ('kcdj', 0.0007646) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz023.txt @@ -34066,6 +35957,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz024.txt station = ('kcdj', 0.0064485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz024.txt @@ -34084,6 +35976,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz025.txt station = ('kirk', 0.0047025) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz025.txt @@ -34102,6 +35995,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz026.txt station = ('kmby', 0.0074979) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc205.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz026.txt @@ -34120,6 +36014,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz027.txt station = ('khae', 0.0027876) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz027.txt @@ -34138,6 +36033,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz028.txt station = ('kmci', 0.0015048) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc165.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz028.txt @@ -34156,6 +36052,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz029.txt station = ('kgph', 0.0015497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz029.txt @@ -34174,6 +36071,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz030.txt station = ('kgph', 0.0043292) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc177.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz030.txt @@ -34192,6 +36090,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz031.txt station = ('kcdj', 0.0068853) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz031.txt @@ -34210,6 +36109,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz032.txt station = ('kmby', 0.0072488) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz032.txt @@ -34228,6 +36128,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz033.txt station = ('kmby', 0.0010180) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc175.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz033.txt @@ -34246,6 +36147,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz034.txt station = ('kmby', 0.0057867) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz034.txt @@ -34264,6 +36166,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz035.txt station = ('khae', 0.0035941) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc173.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz035.txt @@ -34282,6 +36185,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz036.txt station = ('kppq', 0.0073861) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz036.txt @@ -34300,6 +36204,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz037.txt station = ('klxt', 0.0007816) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz037.txt @@ -34318,6 +36223,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz038.txt station = ('krcm', 0.0049171) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz038.txt @@ -34336,6 +36242,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz039.txt station = ('kmhl', 0.0007122) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc195.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz039.txt @@ -34354,6 +36261,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz040.txt station = ('kver', 0.0034254) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz040.txt @@ -34372,6 +36280,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz041.txt station = ('kcou', 0.0032893) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz041.txt @@ -34390,6 +36299,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz042.txt station = ('kmyj', 0.0010652) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz042.txt @@ -34408,6 +36318,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz043.txt station = ('klry', 0.0006661) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz043.txt @@ -34426,6 +36337,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz044.txt station = ('krcm', 0.0007014) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz044.txt @@ -34444,6 +36356,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz045.txt station = ('kdmo', 0.0016254) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz045.txt @@ -34462,6 +36375,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz046.txt station = ('kver', 0.0024947) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz046.txt @@ -34480,6 +36394,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz047.txt station = ('kver', 0.0056454) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz047.txt @@ -34498,6 +36413,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz048.txt station = ('kjef', 0.0024386) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz048.txt @@ -34516,6 +36432,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz049.txt station = ('kjef', 0.0046282) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz049.txt @@ -34534,6 +36451,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz050.txt station = ('kcou', 0.0039658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz050.txt @@ -34552,6 +36470,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz051.txt station = ('kmyj', 0.0060394) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz051.txt @@ -34570,6 +36489,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz052.txt station = ('kfyg', 0.0082245) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz052.txt @@ -34588,6 +36508,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz053.txt station = ('klry', 0.0061536) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz053.txt @@ -34606,6 +36527,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz054.txt station = ('kgly', 0.0015664) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz054.txt @@ -34624,6 +36546,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz055.txt station = ('kraw', 0.0012028) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz055.txt @@ -34642,6 +36565,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz056.txt station = ('kdmo', 0.0063849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz056.txt @@ -34660,6 +36584,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz057.txt station = ('kaiz', 0.0026036) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz057.txt @@ -34678,6 +36603,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz058.txt station = ('kvih', 0.0022272) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz058.txt @@ -34696,6 +36622,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz059.txt station = ('kuuv', 0.0059354) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz059.txt @@ -34714,6 +36641,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz060.txt station = ('kfyg', 0.0038360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc219.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz060.txt @@ -34732,6 +36660,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz061.txt station = ('ksus', 0.0023275) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc183.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz061.txt @@ -34750,6 +36679,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz062.txt station = ('kfyg', 0.0032725) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz062.txt @@ -34768,6 +36698,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz063.txt station = ('kstl', 0.0021726) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc189.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz063.txt @@ -34786,6 +36717,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz064.txt station = ('kcps', 0.0017706) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc510.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz064.txt @@ -34804,6 +36736,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz065.txt station = ('ksus', 0.0069604) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz065.txt @@ -34822,6 +36755,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz066.txt station = ('kfsk', 0.0059568) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc217.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz066.txt @@ -34840,6 +36774,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz067.txt station = ('kgly', 0.0057168) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc185.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz067.txt @@ -34858,6 +36793,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz068.txt station = ('kraw', 0.0070959) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz068.txt @@ -34876,6 +36812,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz069.txt station = ('kozs', 0.0013838) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz069.txt @@ -34894,6 +36831,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz070.txt station = ('ktbn', 0.0018939) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz070.txt @@ -34912,6 +36850,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz071.txt station = ('kvih', 0.0044861) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc161.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz071.txt @@ -34930,6 +36869,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz072.txt station = ('kuuv', 0.0048802) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz072.txt @@ -34948,6 +36888,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz073.txt station = ('kuuv', 0.0061670) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc221.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz073.txt @@ -34966,6 +36907,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz074.txt station = ('kfam', 0.0009383) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc187.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz074.txt @@ -34984,6 +36926,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz075.txt station = ('kfam', 0.0039642) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc186.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz075.txt @@ -35002,6 +36945,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz076.txt station = ('kpcd', 0.0028679) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz076.txt @@ -35020,6 +36964,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz077.txt station = ('kjln', 0.0065047) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz077.txt @@ -35038,6 +36983,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz078.txt station = ('ksgf', 0.0107817) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz078.txt @@ -35056,6 +37002,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz079.txt station = ('ksgf', 0.0066918) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz079.txt @@ -35074,6 +37021,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz080.txt station = ('klbo', 0.0051591) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz080.txt @@ -35092,6 +37040,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz081.txt station = ('klbo', 0.0008756) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz081.txt @@ -35110,6 +37059,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz082.txt station = ('ktbn', 0.0076254) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc215.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz082.txt @@ -35128,6 +37078,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz083.txt station = ('ktbn', 0.0089190) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz083.txt @@ -35146,6 +37097,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz084.txt station = ('kfam', 0.0059759) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz084.txt @@ -35164,6 +37116,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz085.txt station = ('kfam', 0.0051824) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz085.txt @@ -35182,6 +37135,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz086.txt station = ('kcgi', 0.0063389) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz086.txt @@ -35200,6 +37154,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz087.txt station = ('kcgi', 0.0029796) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz087.txt @@ -35218,6 +37173,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz088.txt station = ('kjln', 0.0024053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz088.txt @@ -35236,6 +37192,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz089.txt station = ('ksgf', 0.0073497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz089.txt @@ -35254,6 +37211,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz090.txt station = ('ksgf', 0.0007188) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz090.txt @@ -35272,6 +37230,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz091.txt station = ('klbo', 0.0071207) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc225.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz091.txt @@ -35290,6 +37249,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz092.txt station = ('klbo', 0.0070745) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc229.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz092.txt @@ -35308,6 +37268,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz093.txt station = ('khfj', 0.0045552) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz093.txt @@ -35326,6 +37287,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz094.txt station = ('khfj', 0.0043007) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz094.txt @@ -35344,6 +37306,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz095.txt station = ('ksgf', 0.0053398) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz095.txt @@ -35362,6 +37325,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz096.txt station = ('kbpk', 0.0098876) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz096.txt @@ -35380,6 +37344,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz097.txt station = ('kuno', 0.0019175) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz097.txt @@ -35398,6 +37363,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz098.txt station = ('kuno', 0.0084457) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc203.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz098.txt @@ -35416,6 +37382,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz099.txt station = ('kfam', 0.0102346) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc179.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz099.txt @@ -35434,6 +37401,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz100.txt station = ('kpof', 0.0063663) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc223.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz100.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz100.txt @@ -35452,6 +37420,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz101.txt station = ('kvbt', 0.0052036) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz101.txt @@ -35470,6 +37439,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz102.txt station = ('khfj', 0.0042811) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz102.txt @@ -35488,6 +37458,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz103.txt station = ('kfwb', 0.0011300) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc209.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz103.txt @@ -35506,6 +37477,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz104.txt station = ('kbbg', 0.0030949) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc213.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz104.txt @@ -35524,6 +37496,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz105.txt station = ('kbpk', 0.0049426) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz105.txt @@ -35542,6 +37515,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz106.txt station = ('kuno', 0.0077448) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz106.txt @@ -35560,6 +37534,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz107.txt station = ('kpof', 0.0095178) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz107.txt @@ -35578,6 +37553,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz108.txt station = ('karg', 0.0090967) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc181.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz108.txt @@ -35596,6 +37572,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz109.txt station = ('kpof', 0.0015324) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz109.txt @@ -35614,6 +37591,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz110.txt station = ('kmaw', 0.0044988) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc207.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz110.txt @@ -35632,6 +37610,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz111.txt station = ('kcgi', 0.0031541) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc201.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz111.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz111.txt @@ -35650,6 +37629,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz112.txt station = ('kcir', 0.0042444) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz112.txt @@ -35668,6 +37648,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz113.txt station = ('ktkx', 0.0011085) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz113.txt @@ -35686,6 +37667,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz114.txt station = ('kmaw', 0.0047739) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz114.txt @@ -35704,6 +37686,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mo/moz115.txt station = ('ktkx', 0.0035409) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mo/moc155.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mo/moz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mo/moz115.txt @@ -35722,6 +37705,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz001.txt station = ('kmem', 0.0027591) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz001.txt @@ -35740,6 +37724,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz002.txt station = ('kolv', 0.0055507) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz002.txt @@ -35758,6 +37743,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz003.txt station = ('km08', 0.0072361) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz003.txt @@ -35776,6 +37762,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz004.txt station = ('kcrx', 0.0050680) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz004.txt @@ -35794,6 +37781,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz005.txt station = ('kcrx', 0.0006831) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz005.txt @@ -35812,6 +37800,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz006.txt station = ('k15m', 0.0011907) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz006.txt @@ -35830,6 +37819,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz007.txt station = ('kuta', 0.0006541) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz007.txt @@ -35848,6 +37838,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz008.txt station = ('kpmu', 0.0050616) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz008.txt @@ -35866,6 +37857,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz009.txt station = ('kcrx', 0.0053147) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz009.txt @@ -35884,6 +37876,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz010.txt station = ('kckm', 0.0017929) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz010.txt @@ -35902,6 +37895,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz011.txt station = ('kckm', 0.0033276) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz011.txt @@ -35920,6 +37914,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz012.txt station = ('kpmu', 0.0008342) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz012.txt @@ -35938,6 +37933,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz013.txt station = ('kuox', 0.0008748) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz013.txt @@ -35956,6 +37952,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz014.txt station = ('ktup', 0.0051894) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz014.txt @@ -35974,6 +37971,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz015.txt station = ('ktup', 0.0039718) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz015.txt @@ -35992,6 +37990,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz016.txt station = ('ktup', 0.0013085) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz016.txt @@ -36010,6 +38009,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz017.txt station = ('ktup', 0.0058511) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz017.txt @@ -36028,6 +38028,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz018.txt station = ('kglh', 0.0056499) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz018.txt @@ -36046,6 +38047,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz019.txt station = ('kglh', 0.0061046) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz019.txt @@ -36064,6 +38066,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz020.txt station = ('kckm', 0.0078198) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz020.txt @@ -36082,6 +38085,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz021.txt station = ('kpmu', 0.0064327) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc161.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz021.txt @@ -36100,6 +38104,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz022.txt station = ('kuox', 0.0083320) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz022.txt @@ -36118,6 +38123,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz023.txt station = ('ktup', 0.0065803) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz023.txt @@ -36136,6 +38142,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz024.txt station = ('km40', 0.0003505) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz024.txt @@ -36154,6 +38161,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz025.txt station = ('kgwo', 0.0032874) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz025.txt @@ -36172,6 +38180,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz026.txt station = ('k5a6', 0.0054247) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz026.txt @@ -36190,6 +38199,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz027.txt station = ('k5a6', 0.0027813) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz027.txt @@ -36208,6 +38218,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz028.txt station = ('k5a6', 0.0017330) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz028.txt @@ -36226,6 +38237,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz029.txt station = ('k5a6', 0.0069763) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc155.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz029.txt @@ -36244,6 +38256,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz030.txt station = ('kstf', 0.0040058) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz030.txt @@ -36262,6 +38275,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz031.txt station = ('kgtr', 0.0020778) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz031.txt @@ -36280,6 +38294,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz032.txt station = ('klms', 0.0044365) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz032.txt @@ -36298,6 +38313,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz033.txt station = ('kstf', 0.0004690) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz033.txt @@ -36316,6 +38332,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz034.txt station = ('kglh', 0.0035251) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz034.txt @@ -36334,6 +38351,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz035.txt station = ('kglh', 0.0090947) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz035.txt @@ -36352,6 +38370,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz036.txt station = ('kgwo', 0.0065724) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz036.txt @@ -36370,6 +38389,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz037.txt station = ('k5a6', 0.0069556) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz037.txt @@ -36388,6 +38408,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz038.txt station = ('klms', 0.0010876) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz038.txt @@ -36406,6 +38427,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz039.txt station = ('kgtr', 0.0059357) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz039.txt @@ -36424,6 +38446,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz040.txt station = ('ktvr', 0.0068913) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz040.txt @@ -36442,6 +38465,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz041.txt station = ('ktvr', 0.0098111) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz041.txt @@ -36460,6 +38484,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz042.txt station = ('kmbo', 0.0073602) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz042.txt @@ -36478,6 +38503,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz043.txt station = ('kmbo', 0.0035696) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz043.txt @@ -36496,6 +38522,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz044.txt station = ('klms', 0.0096270) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz044.txt @@ -36514,6 +38541,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz045.txt station = ('knmm', 0.0039258) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz045.txt @@ -36532,6 +38560,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz046.txt station = ('knjw', 0.0029287) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz046.txt @@ -36550,6 +38579,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz047.txt station = ('kvks', 0.0024749) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz047.txt @@ -36568,6 +38598,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz048.txt station = ('kjvw', 0.0008140) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz048.txt @@ -36586,6 +38617,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz049.txt station = ('kjan', 0.0021734) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz049.txt @@ -36604,6 +38636,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz050.txt station = ('kjan', 0.0081019) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz050.txt @@ -36622,6 +38655,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz051.txt station = ('kmei', 0.0055606) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz051.txt @@ -36640,6 +38674,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz052.txt station = ('kmei', 0.0017872) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz052.txt @@ -36658,6 +38693,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz053.txt station = ('kvks', 0.0045426) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz053.txt @@ -36676,6 +38712,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz054.txt station = ('k1r7', 0.0046344) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz054.txt @@ -36694,6 +38731,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz055.txt station = ('kjan', 0.0074697) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz055.txt @@ -36712,6 +38750,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz056.txt station = ('klul', 0.0078021) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz056.txt @@ -36730,6 +38769,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz057.txt station = ('klul', 0.0060992) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz057.txt @@ -36748,6 +38788,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz058.txt station = ('kmei', 0.0051732) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz058.txt @@ -36766,6 +38807,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz059.txt station = ('khez', 0.0044110) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz059.txt @@ -36784,6 +38826,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz060.txt station = ('khez', 0.0024597) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz060.txt @@ -36802,6 +38845,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz061.txt station = ('khez', 0.0064585) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz061.txt @@ -36820,6 +38864,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz062.txt station = ('k1r7', 0.0014433) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz062.txt @@ -36838,6 +38883,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz063.txt station = ('k1r7', 0.0045985) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz063.txt @@ -36856,6 +38902,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz064.txt station = ('kpib', 0.0075037) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz064.txt @@ -36874,6 +38921,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz065.txt station = ('kpib', 0.0043685) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz065.txt @@ -36892,6 +38940,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz066.txt station = ('klul', 0.0008741) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz066.txt @@ -36910,6 +38959,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz067.txt station = ('klul', 0.0070993) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz067.txt @@ -36928,6 +38978,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz068.txt station = ('k0r4', 0.0075816) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz068.txt @@ -36946,6 +38997,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz069.txt station = ('kmcb', 0.0050470) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz069.txt @@ -36964,6 +39016,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz070.txt station = ('kmcb', 0.0009443) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz070.txt @@ -36982,6 +39035,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz071.txt station = ('kmcb', 0.0054190) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz071.txt @@ -37000,6 +39054,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz072.txt station = ('kbxa', 0.0073088) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz072.txt @@ -37018,6 +39073,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz073.txt station = ('khbg', 0.0040037) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz073.txt @@ -37036,6 +39092,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz074.txt station = ('khbg', 0.0013624) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz074.txt @@ -37054,6 +39111,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz075.txt station = ('khbg', 0.0041856) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz075.txt @@ -37072,6 +39130,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz076.txt station = ('khbg', 0.0091606) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz076.txt @@ -37090,6 +39149,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz077.txt station = ('kbxa', 0.0041961) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz077.txt @@ -37108,6 +39168,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz078.txt station = ('kgpt', 0.0065363) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz078.txt @@ -37126,6 +39187,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz079.txt station = ('kmob', 0.0069075) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz079.txt @@ -37144,6 +39206,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz083.txt station = ('khsa', 0.0026273) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz083.txt @@ -37162,6 +39225,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz084.txt station = ('kgpt', 0.0026097) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz084.txt @@ -37180,6 +39244,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz085.txt station = ('kpql', 0.0034569) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz085.txt @@ -37198,6 +39263,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz086.txt station = ('khsa', 0.0009909) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz086.txt @@ -37216,6 +39282,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz087.txt station = ('kgpt', 0.0004936) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz087.txt @@ -37234,6 +39301,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ms/msz088.txt station = ('kpql', 0.0012825) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ms/msc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ms/msz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ms/msz088.txt @@ -37252,6 +39320,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz001.txt station = ('kthm', 0.0133835) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc089.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz001.txt @@ -37270,6 +39339,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz002.txt station = ('kgpi', 0.0053935) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz002.txt @@ -37288,6 +39358,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz003.txt station = ('kgpi', 0.0092017) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc089.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz003.txt @@ -37306,6 +39377,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz004.txt station = ('ks34', 0.0031200) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc089.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz004.txt @@ -37324,6 +39396,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz005.txt station = ('khrf', 0.0041471) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc081.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz005.txt @@ -37342,6 +39415,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz006.txt station = ('khrf', 0.0021723) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc081.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz006.txt @@ -37360,6 +39434,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz007.txt station = ('k38s', 0.0018359) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc093.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz007.txt @@ -37378,6 +39453,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz016.txt station = ('km75', 0.0044265) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz016.txt @@ -37396,6 +39472,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz017.txt station = ('kggw', 0.0009777) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc105.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz017.txt @@ -37414,6 +39491,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz018.txt station = ('k9s2', 0.0013262) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc019.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz018.txt @@ -37432,6 +39510,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz019.txt station = ('kpwd', 0.0012525) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc091.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz019.txt @@ -37450,6 +39529,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz020.txt station = ('kolf', 0.0042737) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc085.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz020.txt @@ -37468,6 +39548,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz021.txt station = ('kmvh', 0.0095208) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc069.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz021.txt @@ -37486,6 +39567,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz022.txt station = ('kjdn', 0.0010952) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz022.txt @@ -37504,6 +39586,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz023.txt station = ('k4u6', 0.0048166) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz023.txt @@ -37522,6 +39605,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz024.txt station = ('ksdy', 0.0045104) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc083.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz024.txt @@ -37540,6 +39624,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz025.txt station = ('kgdv', 0.0026045) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz025.txt @@ -37558,6 +39643,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz026.txt station = ('kmls', 0.0096050) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc079.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz026.txt @@ -37576,6 +39662,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz027.txt station = ('k20u', 0.0032578) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc109.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz027.txt @@ -37594,6 +39681,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz029.txt station = ('krpx', 0.0017683) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc065.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz029.txt @@ -37612,6 +39700,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz030.txt station = ('k00u', 0.0094176) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc103.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz030.txt @@ -37630,6 +39719,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz031.txt station = ('k1s3', 0.0027036) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc087.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz031.txt @@ -37648,6 +39738,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz032.txt station = ('kmls', 0.0049019) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc017.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz032.txt @@ -37666,6 +39757,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz033.txt station = ('kbhk', 0.0020362) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz033.txt @@ -37684,6 +39776,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz034.txt station = ('k6s8', 0.0058637) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc095.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz034.txt @@ -37702,6 +39795,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz036.txt station = ('kmls', 0.0183813) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc075.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz036.txt @@ -37720,6 +39814,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz037.txt station = ('k2wx', 0.0121389) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc011.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz037.txt @@ -37738,6 +39833,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz040.txt station = ('klvm', 0.0050098) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc067.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz040.txt @@ -37756,6 +39852,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz042.txt station = ('kmvh', 0.0093602) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz042.txt @@ -37774,6 +39871,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz043.txt station = ('kmso', 0.0078855) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc077.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz043.txt @@ -37792,6 +39890,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz056.txt station = ('kpoy', 0.0095198) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz056.txt @@ -37810,6 +39909,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz057.txt station = ('k00u', 0.0024580) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc003.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz057.txt @@ -37828,6 +39928,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz058.txt station = ('kshr', 0.0129248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc087.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz058.txt @@ -37846,6 +39947,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz059.txt station = ('cwvn', 0.0052943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz059.txt @@ -37864,6 +39966,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz060.txt station = ('km75', 0.0116759) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz060.txt @@ -37882,6 +39985,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz061.txt station = ('kggw', 0.0098147) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc105.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz061.txt @@ -37900,6 +40004,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz062.txt station = ('ks85', 0.0020728) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc085.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz062.txt @@ -37918,6 +40023,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz063.txt station = ('klwt', 0.0076830) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc107.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz063.txt @@ -37936,6 +40042,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz064.txt station = ('klvm', 0.0063215) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc067.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz064.txt @@ -37954,6 +40061,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz065.txt station = ('klvm', 0.0008292) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc067.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz065.txt @@ -37972,6 +40080,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz066.txt station = ('k6s0', 0.0046004) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc097.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz066.txt @@ -37990,6 +40099,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz067.txt station = ('klvm', 0.0081795) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc097.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz067.txt @@ -38008,6 +40118,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz068.txt station = ('k6s0', 0.0060870) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc107.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz068.txt @@ -38026,6 +40137,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz138.txt station = ('k00u', 0.0091135) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc003.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz138.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz138.txt @@ -38044,6 +40156,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz139.txt station = ('kpoy', 0.0047396) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz139.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz139.txt @@ -38062,6 +40175,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz141.txt station = ('k6s0', 0.0028663) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc097.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz141.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz141.txt @@ -38080,6 +40194,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz169.txt station = ('kpoy', 0.0097403) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz169.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz169.txt @@ -38098,6 +40213,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz170.txt station = ('k6s8', 0.0047980) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz170.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz170.txt @@ -38116,6 +40232,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz171.txt station = ('kpoy', 0.0085670) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc009.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz171.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz171.txt @@ -38134,6 +40251,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz172.txt station = ('k6s0', 0.0058040) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc107.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz172.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz172.txt @@ -38152,6 +40270,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz173.txt station = ('k00u', 0.0078459) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc111.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz173.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz173.txt @@ -38170,6 +40289,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz228.txt station = ('k6s0', 0.0105835) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc107.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz228.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz228.txt @@ -38188,6 +40308,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz235.txt station = ('kbil', 0.0006930) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc111.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz235.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz235.txt @@ -38206,6 +40327,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz301.txt station = ('cwfj', 0.0099506) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc073.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz301.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz301.txt @@ -38224,6 +40346,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz302.txt station = ('kctb', 0.0055092) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc073.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz302.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz302.txt @@ -38242,6 +40365,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz303.txt station = ('kctb', 0.0015024) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc101.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz303.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz303.txt @@ -38260,6 +40384,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz304.txt station = ('ksbx', 0.0068622) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc051.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz304.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz304.txt @@ -38278,6 +40403,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz305.txt station = ('khvr', 0.0051270) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz305.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz305.txt @@ -38296,6 +40422,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz306.txt station = ('ks71', 0.0051646) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc005.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz306.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz306.txt @@ -38314,6 +40441,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz307.txt station = ('kcii', 0.0090252) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc099.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz307.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz307.txt @@ -38332,6 +40460,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz308.txt station = ('kcii', 0.0032188) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc099.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz308.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz308.txt @@ -38350,6 +40479,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz309.txt station = ('kcii', 0.0052066) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc099.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz309.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz309.txt @@ -38368,6 +40498,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz310.txt station = ('k79s', 0.0007987) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz310.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz310.txt @@ -38386,6 +40517,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz311.txt station = ('ks71', 0.0081929) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz311.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz311.txt @@ -38404,6 +40536,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz312.txt station = ('kgtf', 0.0009325) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz312.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz312.txt @@ -38422,6 +40555,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz313.txt station = ('kfhu', 0.0096202) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz313.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz313.txt @@ -38440,6 +40574,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz314.txt station = ('klwt', 0.0059470) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz314.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz314.txt @@ -38458,6 +40593,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz315.txt station = ('khln', 0.0065560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz315.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz315.txt @@ -38476,6 +40612,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz316.txt station = ('khln', 0.0070722) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz316.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz316.txt @@ -38494,6 +40631,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz317.txt station = ('kgfa', 0.0103995) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz317.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz317.txt @@ -38512,6 +40650,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz318.txt station = ('klwt', 0.0032016) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz318.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz318.txt @@ -38530,6 +40669,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz319.txt station = ('khln', 0.0010033) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz319.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz319.txt @@ -38548,6 +40688,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz320.txt station = ('k9s5', 0.0095475) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc059.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz320.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz320.txt @@ -38566,6 +40707,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz321.txt station = ('kbzn', 0.0133839) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc059.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz321.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz321.txt @@ -38584,6 +40726,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz322.txt station = ('khln', 0.0066134) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz322.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz322.txt @@ -38602,6 +40745,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz323.txt station = ('k9s5', 0.0072868) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz323.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz323.txt @@ -38620,6 +40764,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz324.txt station = ('k9s5', 0.0028782) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz324.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz324.txt @@ -38638,6 +40783,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz325.txt station = ('keks', 0.0010139) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz325.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz325.txt @@ -38656,6 +40802,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz326.txt station = ('kbzn', 0.0007683) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz326.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz326.txt @@ -38674,6 +40821,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz327.txt station = ('ksmn', 0.0096997) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc001.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz327.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz327.txt @@ -38692,6 +40840,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz328.txt station = ('kdln', 0.0008257) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz328.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz328.txt @@ -38710,6 +40859,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz329.txt station = ('kdln', 0.0075786) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz329.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz329.txt @@ -38728,6 +40878,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/mt/mtz330.txt station = ('keks', 0.0030957) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/mt/mtc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/mt/mtz330.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/mt/mtz330.txt @@ -38746,6 +40897,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz001.txt station = ('kgev', 0.0011844) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz001.txt @@ -38764,6 +40916,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz002.txt station = ('kgev', 0.0041690) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz002.txt @@ -38782,6 +40935,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz003.txt station = ('kmwk', 0.0020532) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc171.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz003.txt @@ -38800,6 +40954,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz004.txt station = ('kint', 0.0046864) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc169.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz004.txt @@ -38818,6 +40973,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz005.txt station = ('ksif', 0.0012849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc157.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz005.txt @@ -38836,6 +40992,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz006.txt station = ('kdan', 0.0030241) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz006.txt @@ -38854,6 +41011,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz007.txt station = ('ktdf', 0.0018427) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc145.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz007.txt @@ -38872,6 +41030,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz008.txt station = ('khnz', 0.0020111) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz008.txt @@ -38890,6 +41049,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz009.txt station = ('khnz', 0.0016996) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc181.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz009.txt @@ -38908,6 +41068,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz010.txt station = ('kavc', 0.0051499) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc185.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz010.txt @@ -38926,6 +41087,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz011.txt station = ('kixa', 0.0012835) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz011.txt @@ -38944,6 +41106,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz012.txt station = ('kasj', 0.0038053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc131.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz012.txt @@ -38962,6 +41125,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz013.txt station = ('kasj', 0.0028405) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz013.txt @@ -38980,6 +41144,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz014.txt station = ('ksfq', 0.0043800) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz014.txt @@ -38998,6 +41163,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz015.txt station = ('kecg', 0.0018807) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc139.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz015.txt @@ -39016,6 +41182,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz016.txt station = ('kecg', 0.0025220) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz016.txt @@ -39034,6 +41201,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz017.txt station = ('konx', 0.0002545) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz017.txt @@ -39052,6 +41220,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz018.txt station = ('ktnb', 0.0008571) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc189.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz018.txt @@ -39070,6 +41239,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz019.txt station = ('kukf', 0.0011469) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc193.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz019.txt @@ -39088,6 +41258,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz020.txt station = ('kmwk', 0.0054558) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc197.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz020.txt @@ -39106,6 +41277,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz021.txt station = ('kint', 0.0003278) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz021.txt @@ -39124,6 +41296,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz022.txt station = ('kgso', 0.0022990) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz022.txt @@ -39142,6 +41315,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz023.txt station = ('kbuy', 0.0009660) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz023.txt @@ -39160,6 +41334,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz024.txt station = ('ktdf', 0.0043496) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc135.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz024.txt @@ -39178,6 +41353,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz025.txt station = ('krdu', 0.0028335) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz025.txt @@ -39196,6 +41372,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz026.txt station = ('klhz', 0.0012121) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz026.txt @@ -39214,6 +41391,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz027.txt station = ('krwi', 0.0023831) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz027.txt @@ -39232,6 +41410,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz028.txt station = ('ketc', 0.0008293) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz028.txt @@ -39250,6 +41429,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz029.txt station = ('kmcz', 0.0010682) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz029.txt @@ -39268,6 +41448,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz030.txt station = ('kmcz', 0.0045373) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz030.txt @@ -39286,6 +41467,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz031.txt station = ('kede', 0.0022211) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz031.txt @@ -39304,6 +41486,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz032.txt station = ('kede', 0.0035910) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc143.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz032.txt @@ -39322,6 +41505,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz033.txt station = ('ktnb', 0.0044023) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz033.txt @@ -39340,6 +41524,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz035.txt station = ('ksvh', 0.0041390) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz035.txt @@ -39358,6 +41543,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz036.txt station = ('ksvh', 0.0013851) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz036.txt @@ -39376,6 +41562,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz037.txt station = ('kexx', 0.0042749) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz037.txt @@ -39394,6 +41581,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz038.txt station = ('kexx', 0.0013082) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz038.txt @@ -39412,6 +41600,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz039.txt station = ('khbi', 0.0016004) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc151.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz039.txt @@ -39430,6 +41619,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz040.txt station = ('ktta', 0.0030289) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz040.txt @@ -39448,6 +41638,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz041.txt station = ('krdu', 0.0025268) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc183.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz041.txt @@ -39466,6 +41657,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz042.txt station = ('kjnx', 0.0005351) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz042.txt @@ -39484,6 +41676,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz043.txt station = ('krwi', 0.0025477) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc195.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz043.txt @@ -39502,6 +41695,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz044.txt station = ('kpgv', 0.0007818) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc147.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz044.txt @@ -39520,6 +41714,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz045.txt station = ('kede', 0.0035922) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc187.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz045.txt @@ -39538,6 +41733,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz046.txt station = ('k2dp', 0.0051295) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc177.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz046.txt @@ -39556,6 +41752,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz047.txt station = ('k2dp', 0.0019885) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz047.txt @@ -39574,6 +41771,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz048.txt station = ('kgcy', 0.0060776) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz048.txt @@ -39592,6 +41790,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz049.txt station = ('kavl', 0.0087334) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc199.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz049.txt @@ -39610,6 +41809,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz050.txt station = ('kmrn', 0.0084983) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz050.txt @@ -39628,6 +41828,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz051.txt station = ('k1a5', 0.0048357) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc173.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz051.txt @@ -39646,6 +41847,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz052.txt station = ('k24a', 0.0052764) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz052.txt @@ -39664,6 +41866,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz053.txt station = ('kavl', 0.0031047) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz053.txt @@ -39682,6 +41885,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz056.txt station = ('khky', 0.0028388) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz056.txt @@ -39700,6 +41904,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz057.txt station = ('kruq', 0.0002143) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc159.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz057.txt @@ -39718,6 +41923,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz058.txt station = ('krhp', 0.0027425) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz058.txt @@ -39736,6 +41942,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz059.txt station = ('k24a', 0.0009299) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz059.txt @@ -39754,6 +41961,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz060.txt station = ('krhp', 0.0030449) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz060.txt @@ -39772,6 +41980,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz061.txt station = ('krhp', 0.0028992) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz061.txt @@ -39790,6 +41999,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz062.txt station = ('k1a5', 0.0011592) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz062.txt @@ -39808,6 +42018,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz063.txt station = ('k24a', 0.0032936) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz063.txt @@ -39826,6 +42037,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz064.txt station = ('kavl', 0.0055238) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc175.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz064.txt @@ -39844,6 +42056,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz065.txt station = ('kavl', 0.0018580) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz065.txt @@ -39862,6 +42075,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz068.txt station = ('keho', 0.0015978) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz068.txt @@ -39880,6 +42094,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz069.txt station = ('kipj', 0.0008901) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz069.txt @@ -39898,6 +42113,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz070.txt station = ('kakh', 0.0017042) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz070.txt @@ -39916,6 +42132,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz071.txt station = ('kclt', 0.0017517) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz071.txt @@ -39934,6 +42151,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz072.txt station = ('kjqf', 0.0022458) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz072.txt @@ -39952,6 +42170,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz073.txt station = ('kvuj', 0.0023146) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc167.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz073.txt @@ -39970,6 +42189,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz074.txt station = ('kvuj', 0.0037898) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz074.txt @@ -39988,6 +42208,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz075.txt station = ('ksop', 0.0017791) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc125.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz075.txt @@ -40006,6 +42227,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz076.txt station = ('ktta', 0.0021248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz076.txt @@ -40024,6 +42246,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz077.txt station = ('khrj', 0.0019388) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz077.txt @@ -40042,6 +42265,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz078.txt station = ('kgsb', 0.0007518) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc191.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz078.txt @@ -40060,6 +42284,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz079.txt station = ('kiso', 0.0027800) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz079.txt @@ -40078,6 +42303,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz080.txt station = ('kocw', 0.0029629) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz080.txt @@ -40096,6 +42322,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz081.txt station = ('k7w6', 0.0042539) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz081.txt @@ -40114,6 +42341,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz082.txt station = ('keqy', 0.0013243) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc179.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz082.txt @@ -40132,6 +42360,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz083.txt station = ('kafp', 0.0008953) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz083.txt @@ -40150,6 +42379,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz084.txt station = ('krcz', 0.0020070) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc153.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz084.txt @@ -40168,6 +42398,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz085.txt station = ('kmeb', 0.0019176) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc165.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz085.txt @@ -40186,6 +42417,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz086.txt station = ('khff', 0.0037678) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz086.txt @@ -40204,6 +42436,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz087.txt station = ('klbt', 0.0008773) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc155.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz087.txt @@ -40222,6 +42455,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz088.txt station = ('kfay', 0.0013911) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz088.txt @@ -40240,6 +42474,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz089.txt station = ('kctz', 0.0002933) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc163.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz089.txt @@ -40258,6 +42493,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz090.txt station = ('kdpl', 0.0013065) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz090.txt @@ -40276,6 +42512,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz091.txt station = ('kiso', 0.0016792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz091.txt @@ -40294,6 +42531,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz092.txt station = ('kewn', 0.0044754) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz092.txt @@ -40312,6 +42550,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz094.txt station = ('kewn', 0.0044498) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc137.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz094.txt @@ -40330,6 +42569,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz096.txt station = ('keyf', 0.0003820) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz096.txt @@ -40348,6 +42588,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz099.txt station = ('kcpc', 0.0008747) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz099.txt @@ -40366,6 +42607,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz102.txt station = ('konx', 0.0024179) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz102.txt @@ -40384,6 +42626,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz105.txt station = ('kacz', 0.0034425) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc141.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz105.txt @@ -40402,6 +42645,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz106.txt station = ('kilm', 0.0041667) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc141.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz106.txt @@ -40420,6 +42664,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz107.txt station = ('kilm', 0.0002635) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz107.txt @@ -40438,6 +42683,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz108.txt station = ('kilm', 0.0023280) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz108.txt @@ -40456,6 +42702,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz109.txt station = ('ksut', 0.0039951) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz109.txt @@ -40474,6 +42721,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz110.txt station = ('ksut', 0.0015551) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz110.txt @@ -40492,6 +42740,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz193.txt station = ('kewn', 0.0037859) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz193.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz193.txt @@ -40510,6 +42759,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz194.txt station = ('knkt', 0.0016084) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz194.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz194.txt @@ -40528,6 +42778,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz195.txt station = ('knjm', 0.0021609) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz195.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz195.txt @@ -40546,6 +42797,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz196.txt station = ('knbt', 0.0025870) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz196.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz196.txt @@ -40564,6 +42816,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz198.txt station = ('knca', 0.0013943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz198.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz198.txt @@ -40582,6 +42835,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz199.txt station = ('knca', 0.0024314) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz199.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz199.txt @@ -40600,6 +42854,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz203.txt station = ('kmqi', 0.0009316) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz203.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz203.txt @@ -40618,6 +42873,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz204.txt station = ('khse', 0.0046286) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz204.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz204.txt @@ -40636,6 +42892,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz205.txt station = ('khse', 0.0030107) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz205.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz205.txt @@ -40654,6 +42911,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz501.txt station = ('ktnb', 0.0029682) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz501.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz501.txt @@ -40672,6 +42930,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz502.txt station = ('kmrn', 0.0022803) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz502.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz502.txt @@ -40690,6 +42949,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz503.txt station = ('kmrn', 0.0037416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz503.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz503.txt @@ -40708,6 +42968,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz504.txt station = ('kmrn', 0.0020133) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz504.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz504.txt @@ -40726,6 +42987,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz505.txt station = ('kfqd', 0.0054508) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz505.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz505.txt @@ -40744,6 +43006,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz506.txt station = ('kfqd', 0.0035702) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz506.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz506.txt @@ -40762,6 +43025,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz507.txt station = ('kfqd', 0.0037238) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc161.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz507.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz507.txt @@ -40780,6 +43044,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz508.txt station = ('kfqd', 0.0008711) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc161.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz508.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz508.txt @@ -40798,6 +43063,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz509.txt station = ('kavl', 0.0042838) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc149.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz509.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz509.txt @@ -40816,6 +43082,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nc/ncz510.txt station = ('kfqd', 0.0038827) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nc/ncc149.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nc/ncz510.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nc/ncz510.txt @@ -40834,6 +43101,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz001.txt station = ('kd50', 0.0029496) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz001.txt @@ -40852,6 +43120,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz002.txt station = ('kd60', 0.0083981) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz002.txt @@ -40870,6 +43139,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz003.txt station = ('kmib', 0.0063673) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz003.txt @@ -40888,6 +43158,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz004.txt station = ('kd09', 0.0048336) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz004.txt @@ -40906,6 +43177,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz005.txt station = ('k06d', 0.0031983) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz005.txt @@ -40924,6 +43196,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz006.txt station = ('k9d7', 0.0035901) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz006.txt @@ -40942,6 +43215,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz007.txt station = ('kd55', 0.0008867) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz007.txt @@ -40960,6 +43234,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz008.txt station = ('k2c8', 0.0009664) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz008.txt @@ -40978,6 +43253,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz009.txt station = ('kxwa', 0.0034557) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz009.txt @@ -40996,6 +43272,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz010.txt station = ('k08d', 0.0018347) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz010.txt @@ -41014,6 +43291,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz011.txt station = ('kmib', 0.0040648) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz011.txt @@ -41032,6 +43310,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz012.txt station = ('krug', 0.0076059) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz012.txt @@ -41050,6 +43329,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz013.txt station = ('krug', 0.0025349) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz013.txt @@ -41068,6 +43348,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz014.txt station = ('k9d7', 0.0073225) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz014.txt @@ -41086,6 +43367,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz015.txt station = ('kdvl', 0.0035070) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz015.txt @@ -41104,6 +43386,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz016.txt station = ('kgaf', 0.0016244) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz016.txt @@ -41122,6 +43405,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz017.txt station = ('ks25', 0.0019156) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz017.txt @@ -41140,6 +43424,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz018.txt station = ('k9y1', 0.0019122) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz018.txt @@ -41158,6 +43443,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz019.txt station = ('khze', 0.0029858) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz019.txt @@ -41176,6 +43462,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz020.txt station = ('khze', 0.0041752) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz020.txt @@ -41194,6 +43481,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz021.txt station = ('kn60', 0.0015114) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz021.txt @@ -41212,6 +43500,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz022.txt station = ('k5h4', 0.0061506) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz022.txt @@ -41230,6 +43519,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz023.txt station = ('k5h4', 0.0047674) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz023.txt @@ -41248,6 +43538,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz024.txt station = ('k46d', 0.0055027) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz024.txt @@ -41266,6 +43557,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz025.txt station = ('k46d', 0.0031680) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz025.txt @@ -41284,6 +43576,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz026.txt station = ('ks32', 0.0087649) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz026.txt @@ -41302,6 +43595,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz027.txt station = ('krdr', 0.0010269) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz027.txt @@ -41320,6 +43614,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz028.txt station = ('ks32', 0.0016620) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz028.txt @@ -41338,6 +43633,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz029.txt station = ('ks32', 0.0045369) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz029.txt @@ -41356,6 +43652,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz030.txt station = ('kgfk', 0.0086571) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz030.txt @@ -41374,6 +43671,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz031.txt station = ('k20u', 0.0016328) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz031.txt @@ -41392,6 +43690,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz032.txt station = ('k9y1', 0.0096471) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz032.txt @@ -41410,6 +43709,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz033.txt station = ('kdik', 0.0017423) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc089.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz033.txt @@ -41428,6 +43728,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz034.txt station = ('kbis', 0.0064588) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz034.txt @@ -41446,6 +43747,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz035.txt station = ('kbis', 0.0047672) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz035.txt @@ -41464,6 +43766,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz036.txt station = ('k46d', 0.0110951) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz036.txt @@ -41482,6 +43785,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz037.txt station = ('kjms', 0.0035710) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz037.txt @@ -41500,6 +43804,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz038.txt station = ('kbac', 0.0006440) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz038.txt @@ -41518,6 +43823,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz039.txt station = ('kfar', 0.0051418) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz039.txt @@ -41536,6 +43842,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz040.txt station = ('kbww', 0.0052774) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc087.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz040.txt @@ -41554,6 +43861,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz041.txt station = ('kdik', 0.0075956) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz041.txt @@ -41572,6 +43880,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz042.txt station = ('kd57', 0.0083611) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz042.txt @@ -41590,6 +43899,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz043.txt station = ('kbww', 0.0028158) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc011.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz043.txt @@ -41608,6 +43918,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz044.txt station = ('khei', 0.0020314) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc001.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz044.txt @@ -41626,6 +43937,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz045.txt station = ('k7l2', 0.0097919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz045.txt @@ -41644,6 +43956,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz046.txt station = ('k7l2', 0.0011295) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz046.txt @@ -41662,6 +43975,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz047.txt station = ('k7l2', 0.0101359) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz047.txt @@ -41680,6 +43994,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz048.txt station = ('k2d5', 0.0073955) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz048.txt @@ -41698,6 +44013,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz049.txt station = ('kgwr', 0.0041485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz049.txt @@ -41716,6 +44032,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz050.txt station = ('k7l2', 0.0099059) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz050.txt @@ -41734,6 +44051,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz051.txt station = ('k2d5', 0.0052506) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz051.txt @@ -41752,6 +44070,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz052.txt station = ('kgwr', 0.0019401) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz052.txt @@ -41770,6 +44089,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz053.txt station = ('kbwp', 0.0041320) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz053.txt @@ -41788,6 +44108,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nd/ndz054.txt station = ('kd55', 0.0075604) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nd/ndc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nd/ndz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nd/ndz054.txt @@ -41806,6 +44127,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez002.txt station = ('kcdr', 0.0020345) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez002.txt @@ -41824,6 +44146,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez003.txt station = ('kaia', 0.0047388) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez003.txt @@ -41842,6 +44165,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez004.txt station = ('kgrn', 0.0060185) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec161.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez004.txt @@ -41860,6 +44184,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez005.txt station = ('kvtn', 0.0054198) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez005.txt @@ -41878,6 +44203,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez006.txt station = ('kanw', 0.0063408) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez006.txt @@ -41896,6 +44222,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez007.txt station = ('konl', 0.0076328) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez007.txt @@ -41914,6 +44241,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez008.txt station = ('kanw', 0.0028257) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez008.txt @@ -41932,6 +44260,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez009.txt station = ('kanw', 0.0076212) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez009.txt @@ -41950,6 +44279,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez010.txt station = ('konl', 0.0013077) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez010.txt @@ -41968,6 +44298,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez011.txt station = ('kykn', 0.0081418) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez011.txt @@ -41986,6 +44317,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez012.txt station = ('kykn', 0.0057880) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez012.txt @@ -42004,6 +44336,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez013.txt station = ('klcg', 0.0046284) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez013.txt @@ -42022,6 +44355,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez014.txt station = ('ksux', 0.0023407) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez014.txt @@ -42040,6 +44374,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez015.txt station = ('ksux', 0.0044442) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec173.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez015.txt @@ -42058,6 +44393,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez016.txt station = ('kbvn', 0.0078303) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez016.txt @@ -42076,6 +44412,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez017.txt station = ('kofk', 0.0053658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez017.txt @@ -42094,6 +44431,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez018.txt station = ('klcg', 0.0018703) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec179.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez018.txt @@ -42112,6 +44450,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez019.txt station = ('kbff', 0.0014316) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec157.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez019.txt @@ -42130,6 +44469,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez020.txt station = ('kbff', 0.0057786) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez020.txt @@ -42148,6 +44488,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez021.txt station = ('kaia', 0.0064392) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec123.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez021.txt @@ -42166,6 +44507,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez022.txt station = ('kaia', 0.0096427) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec069.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez022.txt @@ -42184,6 +44526,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez023.txt station = ('koga', 0.0138852) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec075.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez023.txt @@ -42202,6 +44545,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez024.txt station = ('ktif', 0.0073974) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec091.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez024.txt @@ -42220,6 +44564,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez025.txt station = ('ktif', 0.0008624) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec171.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez025.txt @@ -42238,6 +44583,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez026.txt station = ('kbbw', 0.0094915) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez026.txt @@ -42256,6 +44602,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez027.txt station = ('kbbw', 0.0087041) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez027.txt @@ -42274,6 +44621,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez028.txt station = ('kodx', 0.0052226) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez028.txt @@ -42292,6 +44640,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez029.txt station = ('kbvn', 0.0069558) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec183.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez029.txt @@ -42310,6 +44659,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez030.txt station = ('kbvn', 0.0004058) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez030.txt @@ -42328,6 +44678,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez031.txt station = ('kofk', 0.0024662) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez031.txt @@ -42346,6 +44697,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez032.txt station = ('kofk', 0.0033178) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez032.txt @@ -42364,6 +44716,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez033.txt station = ('klcg', 0.0062083) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez033.txt @@ -42382,6 +44735,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez034.txt station = ('ktqe', 0.0024018) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez034.txt @@ -42400,6 +44754,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez035.txt station = ('koga', 0.0078978) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec005.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez035.txt @@ -42418,6 +44773,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez036.txt station = ('ktif', 0.0093919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez036.txt @@ -42436,6 +44792,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez037.txt station = ('ktif', 0.0069922) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez037.txt @@ -42454,6 +44811,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez038.txt station = ('kbbw', 0.0013923) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez038.txt @@ -42472,6 +44830,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez039.txt station = ('kodx', 0.0009570) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec175.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez039.txt @@ -42490,6 +44849,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez040.txt station = ('kbvn', 0.0066902) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez040.txt @@ -42508,6 +44868,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez041.txt station = ('kbvn', 0.0058364) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez041.txt @@ -42526,6 +44887,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez042.txt station = ('kolu', 0.0032145) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez042.txt @@ -42544,6 +44906,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez043.txt station = ('kolu', 0.0038738) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez043.txt @@ -42562,6 +44925,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez044.txt station = ('kfet', 0.0028632) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez044.txt @@ -42580,6 +44944,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez045.txt station = ('kbta', 0.0025066) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec177.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez045.txt @@ -42598,6 +44963,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez046.txt station = ('kodx', 0.0069230) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez046.txt @@ -42616,6 +44982,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez047.txt station = ('kgri', 0.0051478) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez047.txt @@ -42634,6 +45001,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez048.txt station = ('kauh', 0.0048490) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez048.txt @@ -42652,6 +45020,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez049.txt station = ('kjyr', 0.0051159) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez049.txt @@ -42670,6 +45039,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez050.txt station = ('kolu', 0.0047528) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez050.txt @@ -42688,6 +45058,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez051.txt station = ('kahq', 0.0006272) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec155.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez051.txt @@ -42706,6 +45077,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez052.txt station = ('kmle', 0.0018221) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez052.txt @@ -42724,6 +45096,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez053.txt station = ('kmle', 0.0014440) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez053.txt @@ -42742,6 +45115,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez054.txt station = ('kibm', 0.0006825) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec105.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez054.txt @@ -42760,6 +45134,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez055.txt station = ('ksny', 0.0020965) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez055.txt @@ -42778,6 +45153,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez056.txt station = ('kggf', 0.0089734) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez056.txt @@ -42796,6 +45172,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez057.txt station = ('koga', 0.0019757) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec101.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez057.txt @@ -42814,6 +45191,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez058.txt station = ('kggf', 0.0011478) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec135.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez058.txt @@ -42832,6 +45210,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez059.txt station = ('klbf', 0.0015850) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez059.txt @@ -42850,6 +45229,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez060.txt station = ('klxn', 0.0014841) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez060.txt @@ -42868,6 +45248,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez061.txt station = ('kear', 0.0023449) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez061.txt @@ -42886,6 +45267,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez062.txt station = ('kgri', 0.0029476) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez062.txt @@ -42904,6 +45286,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez063.txt station = ('kauh', 0.0005212) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez063.txt @@ -42922,6 +45305,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez064.txt station = ('kjyr', 0.0005370) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec185.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez064.txt @@ -42940,6 +45324,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez065.txt station = ('kjyr', 0.0063911) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez065.txt @@ -42958,6 +45343,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez066.txt station = ('klnk', 0.0013505) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez066.txt @@ -42976,6 +45362,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez067.txt station = ('kpmv', 0.0030233) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez067.txt @@ -42994,6 +45381,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez068.txt station = ('kafk', 0.0038665) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez068.txt @@ -43012,6 +45400,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez069.txt station = ('kiml', 0.0010858) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec029.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez069.txt @@ -43030,6 +45419,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez070.txt station = ('kiml', 0.0073630) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez070.txt @@ -43048,6 +45438,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez071.txt station = ('kcsb', 0.0049735) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez071.txt @@ -43066,6 +45457,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez072.txt station = ('klxn', 0.0048742) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez072.txt @@ -43084,6 +45476,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez073.txt station = ('khde', 0.0015160) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez073.txt @@ -43102,6 +45495,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez074.txt station = ('kear', 0.0040150) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez074.txt @@ -43120,6 +45514,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez075.txt station = ('khsi', 0.0015957) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez075.txt @@ -43138,6 +45533,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez076.txt station = ('kauh', 0.0064924) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez076.txt @@ -43156,6 +45552,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez077.txt station = ('kjyr', 0.0065013) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez077.txt @@ -43174,6 +45571,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez078.txt station = ('kbie', 0.0065004) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez078.txt @@ -43192,6 +45590,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez079.txt station = ('kiml', 0.0060173) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez079.txt @@ -43210,6 +45609,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez080.txt station = ('kadt', 0.0058678) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez080.txt @@ -43228,6 +45628,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez081.txt station = ('kmck', 0.0014819) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez081.txt @@ -43246,6 +45647,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez082.txt station = ('kcsb', 0.0040287) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez082.txt @@ -43264,6 +45666,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez083.txt station = ('khde', 0.0048668) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez083.txt @@ -43282,6 +45685,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez084.txt station = ('khde', 0.0069628) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez084.txt @@ -43300,6 +45704,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez085.txt station = ('khsi', 0.0074460) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec181.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez085.txt @@ -43318,6 +45723,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez086.txt station = ('khjh', 0.0061533) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez086.txt @@ -43336,6 +45742,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez087.txt station = ('khjh', 0.0004331) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez087.txt @@ -43354,6 +45761,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez088.txt station = ('kbie', 0.0056628) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez088.txt @@ -43372,6 +45780,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez089.txt station = ('kbie', 0.0010466) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez089.txt @@ -43390,6 +45799,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez090.txt station = ('kafk', 0.0065899) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez090.txt @@ -43408,6 +45818,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez091.txt station = ('kafk', 0.0036984) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez091.txt @@ -43426,6 +45837,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez092.txt station = ('kmyz', 0.0071358) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez092.txt @@ -43444,6 +45856,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez093.txt station = ('kfnb', 0.0019225) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez093.txt @@ -43462,6 +45875,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez094.txt station = ('kgrn', 0.0103485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez094.txt @@ -43480,6 +45894,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez095.txt station = ('kcdr', 0.0088555) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec165.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez095.txt @@ -43498,6 +45913,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ne/nez096.txt station = ('kbff', 0.0063616) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ne/nec165.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ne/nez096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ne/nez096.txt @@ -43516,6 +45932,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz001.txt station = ('kbml', 0.0069658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz001.txt @@ -43534,6 +45951,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz002.txt station = ('kbml', 0.0026117) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz002.txt @@ -43552,6 +45970,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz003.txt station = ('khie', 0.0053473) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz003.txt @@ -43570,6 +45989,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz004.txt station = ('kizg', 0.0033017) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz004.txt @@ -43588,6 +46008,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz005.txt station = ('k1p1', 0.0023109) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz005.txt @@ -43606,6 +46027,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz006.txt station = ('klci', 0.0040757) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz006.txt @@ -43624,6 +46046,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz007.txt station = ('kleb', 0.0048504) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz007.txt @@ -43642,6 +46065,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz008.txt station = ('kcon', 0.0028947) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz008.txt @@ -43660,6 +46084,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz009.txt station = ('klci', 0.0008396) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz009.txt @@ -43678,6 +46103,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz010.txt station = ('kdaw', 0.0014521) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz010.txt @@ -43696,6 +46122,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz011.txt station = ('keen', 0.0003906) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz011.txt @@ -43714,6 +46141,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz012.txt station = ('kash', 0.0013239) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz012.txt @@ -43732,6 +46160,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz013.txt station = ('kmht', 0.0033433) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz013.txt @@ -43750,6 +46179,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz014.txt station = ('kpsm', 0.0014544) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz014.txt @@ -43768,6 +46198,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nh/nhz015.txt station = ('kafn', 0.0035605) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nh/nhc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nh/nhz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nh/nhz015.txt @@ -43786,6 +46217,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz001.txt station = ('kfwn', 0.0012949) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz001.txt @@ -43804,6 +46236,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz002.txt station = ('kcdw', 0.0037757) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz002.txt @@ -43822,6 +46255,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz004.txt station = ('kcdw', 0.0012526) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz004.txt @@ -43840,6 +46274,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz006.txt station = ('kjrb', 0.0011514) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz006.txt @@ -43858,6 +46293,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz007.txt station = ('k12n', 0.0044511) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz007.txt @@ -43876,6 +46312,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz008.txt station = ('kmmu', 0.0020061) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz008.txt @@ -43894,6 +46331,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz009.txt station = ('ksmq', 0.0033680) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz009.txt @@ -43912,6 +46350,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz010.txt station = ('ksmq', 0.0011403) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz010.txt @@ -43930,6 +46369,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz012.txt station = ('kldj', 0.0038134) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz012.txt @@ -43948,6 +46388,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz013.txt station = ('kblm', 0.0021644) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz013.txt @@ -43966,6 +46407,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz014.txt station = ('kblm', 0.0018735) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz014.txt @@ -43984,6 +46426,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz015.txt station = ('kttn', 0.0015334) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz015.txt @@ -44002,6 +46445,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz016.txt station = ('kilg', 0.0036866) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz016.txt @@ -44020,6 +46464,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz017.txt station = ('kphl', 0.0028809) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz017.txt @@ -44038,6 +46483,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz018.txt station = ('kvay', 0.0028259) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz018.txt @@ -44056,6 +46502,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz019.txt station = ('kvay', 0.0013603) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz019.txt @@ -44074,6 +46521,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz020.txt station = ('kmjx', 0.0002764) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz020.txt @@ -44092,6 +46540,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz021.txt station = ('kmiv', 0.0003778) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz021.txt @@ -44110,6 +46559,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz022.txt station = ('kacy', 0.0015950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz022.txt @@ -44128,6 +46578,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz023.txt station = ('kwwd', 0.0030710) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz023.txt @@ -44146,6 +46597,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz024.txt station = ('kwwd', 0.0023945) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz024.txt @@ -44164,6 +46616,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz025.txt station = ('kacy', 0.0022674) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz025.txt @@ -44182,6 +46635,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz026.txt station = ('kmjx', 0.0029615) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz026.txt @@ -44200,6 +46654,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz027.txt station = ('kwri', 0.0047223) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz027.txt @@ -44218,6 +46673,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz103.txt station = ('kcdw', 0.0029880) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz103.txt @@ -44236,6 +46692,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz104.txt station = ('kteb', 0.0009317) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz104.txt @@ -44254,6 +46711,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz105.txt station = ('kcdw', 0.0013978) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz105.txt @@ -44272,6 +46730,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz106.txt station = ('kewr', 0.0011225) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz106.txt @@ -44290,6 +46749,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz107.txt station = ('kldj', 0.0017288) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz107.txt @@ -44308,6 +46768,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nj/njz108.txt station = ('kldj', 0.0005756) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nj/njc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nj/njz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nj/njz108.txt @@ -44326,6 +46787,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz027.txt station = ('kcnm', 0.0070376) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz027.txt @@ -44344,6 +46806,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz028.txt station = ('kcnm', 0.0029033) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz028.txt @@ -44362,6 +46825,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz029.txt station = ('ke57', 0.0098104) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz029.txt @@ -44380,6 +46844,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz033.txt station = ('khob', 0.0034310) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz033.txt @@ -44398,6 +46863,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz034.txt station = ('khob', 0.0079965) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz034.txt @@ -44416,6 +46882,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz201.txt station = ('kfmn', 0.0061370) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz201.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz201.txt @@ -44434,6 +46901,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz202.txt station = ('krqe', 0.0070927) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz202.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz202.txt @@ -44452,6 +46920,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz203.txt station = ('kpso', 0.0109766) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz203.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz203.txt @@ -44470,6 +46939,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz204.txt station = ('kgnt', 0.0156957) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz204.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz204.txt @@ -44488,6 +46958,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz205.txt station = ('kgup', 0.0085284) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz205.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz205.txt @@ -44506,6 +46977,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz206.txt station = ('kgnt', 0.0028005) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz206.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz206.txt @@ -44524,6 +46996,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz207.txt station = ('kaeg', 0.0085623) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc061.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz207.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz207.txt @@ -44542,6 +47015,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz208.txt station = ('kjtc', 0.0151475) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz208.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz208.txt @@ -44560,6 +47034,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz209.txt station = ('kjtc', 0.0126686) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc003.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz209.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz209.txt @@ -44578,6 +47053,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz210.txt station = ('kskx', 0.0093634) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz210.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz210.txt @@ -44596,6 +47072,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz211.txt station = ('klam', 0.0046575) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc043.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz211.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz211.txt @@ -44614,6 +47091,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz212.txt station = ('ksaf', 0.0058000) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz212.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz212.txt @@ -44632,6 +47110,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz213.txt station = ('kaxx', 0.0053228) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz213.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz213.txt @@ -44650,6 +47129,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz214.txt station = ('kskx', 0.0081442) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz214.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz214.txt @@ -44668,6 +47148,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz215.txt station = ('kaxx', 0.0038547) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz215.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz215.txt @@ -44686,6 +47167,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz216.txt station = ('kskx', 0.0032532) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz216.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz216.txt @@ -44704,6 +47186,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz217.txt station = ('klam', 0.0050792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz217.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz217.txt @@ -44722,6 +47205,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz218.txt station = ('ksaf', 0.0015439) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz218.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz218.txt @@ -44740,6 +47224,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz219.txt station = ('kabq', 0.0021339) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc061.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz219.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz219.txt @@ -44758,6 +47243,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz220.txt station = ('konm', 0.0021850) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz220.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz220.txt @@ -44776,6 +47262,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz221.txt station = ('k0e0', 0.0044400) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc061.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz221.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz221.txt @@ -44794,6 +47281,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz222.txt station = ('k0e0', 0.0034020) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz222.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz222.txt @@ -44812,6 +47300,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz223.txt station = ('kcqc', 0.0032157) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz223.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz223.txt @@ -44830,6 +47319,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz224.txt station = ('konm', 0.0108232) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc061.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz224.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz224.txt @@ -44848,6 +47338,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz225.txt station = ('ksrr', 0.0080925) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz225.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz225.txt @@ -44866,6 +47357,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz226.txt station = ('ksrr', 0.0022369) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz226.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz226.txt @@ -44884,6 +47376,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz227.txt station = ('krtn', 0.0048927) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc059.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz227.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz227.txt @@ -44902,6 +47395,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz228.txt station = ('krtn', 0.0085346) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz228.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz228.txt @@ -44920,6 +47414,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz229.txt station = ('klvs', 0.0026104) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz229.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz229.txt @@ -44938,6 +47433,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz230.txt station = ('kcao', 0.0038285) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc059.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz230.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz230.txt @@ -44956,6 +47452,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz231.txt station = ('ktcc', 0.0121824) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz231.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz231.txt @@ -44974,6 +47471,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz232.txt station = ('ksxu', 0.0104789) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz232.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz232.txt @@ -44992,6 +47490,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz233.txt station = ('ksxu', 0.0024515) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc019.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz233.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz233.txt @@ -45010,6 +47509,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz234.txt station = ('ktcc', 0.0015550) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz234.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz234.txt @@ -45028,6 +47528,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz235.txt station = ('kcvs', 0.0033576) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc009.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz235.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz235.txt @@ -45046,6 +47547,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz236.txt station = ('k4mr', 0.0067076) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz236.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz236.txt @@ -45064,6 +47566,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz237.txt station = ('k4mr', 0.0088526) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc011.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz237.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz237.txt @@ -45082,6 +47585,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz238.txt station = ('krow', 0.0047328) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc005.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz238.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz238.txt @@ -45100,6 +47604,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz239.txt station = ('ksrr', 0.0078051) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz239.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz239.txt @@ -45118,6 +47623,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz240.txt station = ('kats', 0.0092406) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc005.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz240.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz240.txt @@ -45136,6 +47642,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz241.txt station = ('konm', 0.0091856) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz241.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz241.txt @@ -45154,6 +47661,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz401.txt station = ('ksad', 0.0093896) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc023.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz401.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz401.txt @@ -45172,6 +47680,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz403.txt station = ('ksvc', 0.0016952) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc029.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz403.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz403.txt @@ -45190,6 +47699,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz404.txt station = ('ksad', 0.0089329) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc023.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz404.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz404.txt @@ -45208,6 +47718,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz405.txt station = ('kdmn', 0.0153924) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc023.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz405.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz405.txt @@ -45226,6 +47737,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz406.txt station = ('kdug', 0.0114069) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc023.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz406.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz406.txt @@ -45244,6 +47756,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz407.txt station = ('kdmn', 0.0019278) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc029.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz407.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz407.txt @@ -45262,6 +47775,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz408.txt station = ('ktcs', 0.0050528) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc051.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz408.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz408.txt @@ -45280,6 +47794,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz409.txt station = ('k0a0', 0.0022700) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc051.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz409.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz409.txt @@ -45298,6 +47813,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz410.txt station = ('klru', 0.0056509) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz410.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz410.txt @@ -45316,6 +47832,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz411.txt station = ('klru', 0.0033045) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz411.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz411.txt @@ -45334,6 +47851,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz414.txt station = ('kalm', 0.0033418) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz414.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz414.txt @@ -45352,6 +47870,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz415.txt station = ('kalm', 0.0052246) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz415.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz415.txt @@ -45370,6 +47889,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz416.txt station = ('kalm', 0.0081829) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz416.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz416.txt @@ -45388,6 +47908,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz417.txt station = ('kalm', 0.0129486) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz417.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz417.txt @@ -45406,6 +47927,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz425.txt station = ('ksvc', 0.0023309) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc017.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz425.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz425.txt @@ -45424,6 +47946,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz426.txt station = ('ksvc', 0.0078017) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc051.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz426.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz426.txt @@ -45442,6 +47965,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz427.txt station = ('khmn', 0.0050625) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz427.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz427.txt @@ -45460,6 +47984,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz428.txt station = ('khmn', 0.0038293) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz428.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz428.txt @@ -45478,6 +48003,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nm/nmz429.txt station = ('kalm', 0.0088861) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nm/nmc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nm/nmz429.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nm/nmz429.txt @@ -45496,6 +48022,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz001.txt station = ('khth', 0.0010706) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc021.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz001.txt @@ -45514,6 +48041,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz002.txt station = ('kcxp', 0.0024996) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc510.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz002.txt @@ -45532,6 +48060,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz003.txt station = ('krno', 0.0019118) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc510.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz003.txt @@ -45550,6 +48079,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz004.txt station = ('klol', 0.0013625) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz004.txt @@ -45568,6 +48098,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz005.txt station = ('kaat', 0.0134363) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz005.txt @@ -45586,6 +48117,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz014.txt station = ('ktph', 0.0081825) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz014.txt @@ -45604,6 +48136,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz015.txt station = ('kins', 0.0217763) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc017.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz015.txt @@ -45622,6 +48155,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz016.txt station = ('klsv', 0.0097121) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc003.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz016.txt @@ -45640,6 +48174,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz017.txt station = ('kdra', 0.0021568) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz017.txt @@ -45658,6 +48193,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz018.txt station = ('kins', 0.0079807) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc017.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz018.txt @@ -45676,6 +48212,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz019.txt station = ('kins', 0.0060856) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz019.txt @@ -45694,6 +48231,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz020.txt station = ('kvgt', 0.0010008) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc003.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz020.txt @@ -45712,6 +48250,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz021.txt station = ('kbvu', 0.0037515) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc003.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz021.txt @@ -45730,6 +48269,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz022.txt station = ('kbvu', 0.0075435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc003.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz022.txt @@ -45748,6 +48288,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz030.txt station = ('kwmc', 0.0097494) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc013.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz030.txt @@ -45766,6 +48307,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz031.txt station = ('k10u', 0.0104360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc007.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz031.txt @@ -45784,6 +48326,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz033.txt station = ('kenv', 0.0030326) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc007.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz033.txt @@ -45802,6 +48345,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz034.txt station = ('keko', 0.0072419) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc033.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz034.txt @@ -45820,6 +48364,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz035.txt station = ('kely', 0.0024981) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc033.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz035.txt @@ -45838,6 +48383,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz036.txt station = ('kbam', 0.0029838) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc015.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz036.txt @@ -45856,6 +48402,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz037.txt station = ('ktmt', 0.0070436) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc015.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz037.txt @@ -45874,6 +48421,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz038.txt station = ('keko', 0.0021249) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc007.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz038.txt @@ -45892,6 +48440,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz039.txt station = ('keko', 0.0130364) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc007.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz039.txt @@ -45910,6 +48459,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz040.txt station = ('ktph', 0.0083900) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz040.txt @@ -45928,6 +48478,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/nv/nvz041.txt station = ('kp68', 0.0184170) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/nv/nvc023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/nv/nvz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/nv/nvz041.txt @@ -45946,6 +48497,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz001.txt station = ('kiag', 0.0028416) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz001.txt @@ -45964,6 +48516,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz002.txt station = ('kgvq', 0.0039327) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz002.txt @@ -45982,6 +48535,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz003.txt station = ('kroc', 0.0005431) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz003.txt @@ -46000,6 +48554,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz004.txt station = ('ksdc', 0.0017802) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz004.txt @@ -46018,6 +48573,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz005.txt station = ('kfzy', 0.0041529) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz005.txt @@ -46036,6 +48592,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz006.txt station = ('kfzy', 0.0033453) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz006.txt @@ -46054,6 +48611,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz007.txt station = ('kart', 0.0018435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz007.txt @@ -46072,6 +48630,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz008.txt station = ('kgtb', 0.0058512) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz008.txt @@ -46090,6 +48649,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz009.txt station = ('krme', 0.0027280) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz009.txt @@ -46108,6 +48668,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz010.txt station = ('kbuf', 0.0005293) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz010.txt @@ -46126,6 +48687,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz011.txt station = ('kgvq', 0.0006302) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz011.txt @@ -46144,6 +48706,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz012.txt station = ('kgvq', 0.0057950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz012.txt @@ -46162,6 +48725,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz013.txt station = ('kdsv', 0.0029167) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz013.txt @@ -46180,6 +48744,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz014.txt station = ('kiua', 0.0010301) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz014.txt @@ -46198,6 +48763,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz015.txt station = ('kpeo', 0.0007685) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz015.txt @@ -46216,6 +48782,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz016.txt station = ('kpeo', 0.0036944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz016.txt @@ -46234,6 +48801,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz017.txt station = ('kith', 0.0054949) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz017.txt @@ -46252,6 +48820,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz018.txt station = ('ksyr', 0.0022802) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz018.txt @@ -46270,6 +48839,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz019.txt station = ('kjhw', 0.0018778) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz019.txt @@ -46288,6 +48858,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz020.txt station = ('kole', 0.0040432) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz020.txt @@ -46306,6 +48877,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz021.txt station = ('kelz', 0.0027702) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz021.txt @@ -46324,6 +48896,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz022.txt station = ('kdsv', 0.0067531) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz022.txt @@ -46342,6 +48915,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz023.txt station = ('kelm', 0.0039771) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz023.txt @@ -46360,6 +48934,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz024.txt station = ('kelm', 0.0018648) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz024.txt @@ -46378,6 +48953,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz025.txt station = ('kith', 0.0007061) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz025.txt @@ -46396,6 +48972,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz026.txt station = ('kmss', 0.0017147) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz026.txt @@ -46414,6 +48991,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz027.txt station = ('cwbz', 0.0041449) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz027.txt @@ -46432,6 +49010,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz028.txt station = ('kpbg', 0.0027249) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz028.txt @@ -46450,6 +49029,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz029.txt station = ('kptd', 0.0063183) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz029.txt @@ -46468,6 +49048,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz030.txt station = ('kslk', 0.0022247) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz030.txt @@ -46486,6 +49067,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz031.txt station = ('kpbg', 0.0041711) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz031.txt @@ -46504,6 +49086,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz032.txt station = ('krme', 0.0099645) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz032.txt @@ -46522,6 +49105,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz033.txt station = ('kgfl', 0.0125313) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz033.txt @@ -46540,6 +49124,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz034.txt station = ('kslk', 0.0069859) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz034.txt @@ -46558,6 +49143,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz035.txt station = ('kbtv', 0.0052009) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz035.txt @@ -46576,6 +49162,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz036.txt station = ('kvgc', 0.0018366) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz036.txt @@ -46594,6 +49181,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz037.txt station = ('krme', 0.0019799) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz037.txt @@ -46612,6 +49200,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz038.txt station = ('krme', 0.0061780) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz038.txt @@ -46630,6 +49219,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz039.txt station = ('ksch', 0.0070646) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz039.txt @@ -46648,6 +49238,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz040.txt station = ('kalb', 0.0086091) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz040.txt @@ -46666,6 +49257,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz041.txt station = ('kgfl', 0.0040636) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz041.txt @@ -46684,6 +49276,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz042.txt station = ('kgfl', 0.0055801) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz042.txt @@ -46702,6 +49295,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz043.txt station = ('kgfl', 0.0040668) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz043.txt @@ -46720,6 +49314,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz044.txt station = ('kn03', 0.0018596) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz044.txt @@ -46738,6 +49333,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz045.txt station = ('koic', 0.0016991) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz045.txt @@ -46756,6 +49352,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz046.txt station = ('koic', 0.0064224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz046.txt @@ -46774,6 +49371,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz047.txt station = ('kalb', 0.0087105) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz047.txt @@ -46792,6 +49390,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz048.txt station = ('ksch', 0.0030380) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz048.txt @@ -46810,6 +49409,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz049.txt station = ('ksch', 0.0005606) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz049.txt @@ -46828,6 +49428,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz050.txt station = ('ksch', 0.0017498) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz050.txt @@ -46846,6 +49447,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz051.txt station = ('kalb', 0.0052794) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz051.txt @@ -46864,6 +49466,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz052.txt station = ('kalb', 0.0024516) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz052.txt @@ -46882,6 +49485,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz053.txt station = ('kalb', 0.0024859) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz053.txt @@ -46900,6 +49504,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz054.txt station = ('kaqw', 0.0030807) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz054.txt @@ -46918,6 +49523,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz055.txt station = ('kbgm', 0.0042088) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz055.txt @@ -46936,6 +49542,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz056.txt station = ('kbgm', 0.0022287) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz056.txt @@ -46954,6 +49561,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz057.txt station = ('koic', 0.0096446) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz057.txt @@ -46972,6 +49580,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz058.txt station = ('kalb', 0.0102830) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz058.txt @@ -46990,6 +49599,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz059.txt station = ('kalb', 0.0077856) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz059.txt @@ -47008,6 +49618,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz060.txt station = ('kpsf', 0.0066668) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz060.txt @@ -47026,6 +49637,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz061.txt station = ('kpsf', 0.0045092) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz061.txt @@ -47044,6 +49656,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz062.txt station = ('kmgj', 0.0074135) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz062.txt @@ -47062,6 +49675,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz063.txt station = ('kmgj', 0.0072187) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz063.txt @@ -47080,6 +49694,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz064.txt station = ('kpou', 0.0041962) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz064.txt @@ -47098,6 +49713,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz065.txt station = ('kpou', 0.0024625) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz065.txt @@ -47116,6 +49732,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz066.txt station = ('kpou', 0.0040656) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz066.txt @@ -47134,6 +49751,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz067.txt station = ('kmgj', 0.0020617) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz067.txt @@ -47152,6 +49770,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz068.txt station = ('kdxr', 0.0036389) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz068.txt @@ -47170,6 +49789,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz069.txt station = ('khpn', 0.0045199) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz069.txt @@ -47188,6 +49808,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz070.txt station = ('khpn', 0.0027834) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz070.txt @@ -47206,6 +49827,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz071.txt station = ('khpn', 0.0017955) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz071.txt @@ -47224,6 +49846,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz072.txt station = ('knyc', 0.0000826) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz072.txt @@ -47242,6 +49865,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz073.txt station = ('klga', 0.0012283) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz073.txt @@ -47260,6 +49884,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz074.txt station = ('kldj', 0.0013452) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz074.txt @@ -47278,6 +49903,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz075.txt station = ('kjrb', 0.0013358) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz075.txt @@ -47296,6 +49922,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz078.txt station = ('kisp', 0.0016538) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz078.txt @@ -47314,6 +49941,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz079.txt station = ('kfok', 0.0025251) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz079.txt @@ -47332,6 +49960,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz080.txt station = ('kisp', 0.0013965) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz080.txt @@ -47350,6 +49979,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz081.txt station = ('kfok', 0.0023340) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz081.txt @@ -47368,6 +49998,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz082.txt station = ('ksch', 0.0082816) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz082.txt @@ -47386,6 +50017,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz083.txt station = ('kgfl', 0.0015530) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz083.txt @@ -47404,6 +50036,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz084.txt station = ('kgfl', 0.0038486) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz084.txt @@ -47422,6 +50055,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz085.txt station = ('kbuf', 0.0053981) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz085.txt @@ -47440,6 +50074,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz087.txt station = ('kogs', 0.0035184) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz087.txt @@ -47458,6 +50093,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz176.txt station = ('klga', 0.0008083) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz176.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz176.txt @@ -47476,6 +50112,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz177.txt station = ('kfrg', 0.0029620) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz177.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz177.txt @@ -47494,6 +50131,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz178.txt station = ('kjfk', 0.0006435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz178.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz178.txt @@ -47512,6 +50150,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ny/nyz179.txt station = ('kfrg', 0.0023327) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ny/nyc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ny/nyz179.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ny/nyz179.txt @@ -47530,6 +50169,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz001.txt station = ('kdfi', 0.0044494) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc171.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz001.txt @@ -47548,6 +50188,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz002.txt station = ('kuse', 0.0001497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz002.txt @@ -47566,6 +50207,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz003.txt station = ('kduh', 0.0020221) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz003.txt @@ -47584,6 +50226,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz004.txt station = ('kdfi', 0.0007680) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz004.txt @@ -47602,6 +50245,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz005.txt station = ('kdfi', 0.0047852) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz005.txt @@ -47620,6 +50264,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz006.txt station = ('ktdz', 0.0040167) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc173.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz006.txt @@ -47638,6 +50283,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz007.txt station = ('kpcw', 0.0036583) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz007.txt @@ -47656,6 +50302,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz008.txt station = ('kpcw', 0.0045630) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc143.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz008.txt @@ -47674,6 +50321,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz009.txt station = ('kpcw', 0.0042185) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz009.txt @@ -47692,6 +50340,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz010.txt station = ('klpr', 0.0010403) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz010.txt @@ -47710,6 +50359,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz011.txt station = ('kbkl', 0.0019058) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz011.txt @@ -47728,6 +50378,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz012.txt station = ('klnn', 0.0019216) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz012.txt @@ -47746,6 +50397,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz013.txt station = ('kcgf', 0.0041504) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz013.txt @@ -47764,6 +50416,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz014.txt station = ('khzy', 0.0018951) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz014.txt @@ -47782,6 +50435,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz015.txt station = ('kdfi', 0.0042451) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc125.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz015.txt @@ -47800,6 +50454,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz016.txt station = ('kowx', 0.0019850) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc137.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz016.txt @@ -47818,6 +50473,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz017.txt station = ('kfdy', 0.0002577) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz017.txt @@ -47836,6 +50492,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz018.txt station = ('kfdy', 0.0073346) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc147.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz018.txt @@ -47854,6 +50511,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz019.txt station = ('kmfd', 0.0058514) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz019.txt @@ -47872,6 +50530,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz020.txt station = ('kbjj', 0.0043849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz020.txt @@ -47890,6 +50549,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz021.txt station = ('kakr', 0.0018306) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc153.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz021.txt @@ -47908,6 +50568,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz022.txt station = ('kpov', 0.0010404) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz022.txt @@ -47926,6 +50587,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz023.txt station = ('kyng', 0.0017015) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc155.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz023.txt @@ -47944,6 +50606,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz024.txt station = ('kvnw', 0.0003477) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc161.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz024.txt @@ -47962,6 +50625,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz025.txt station = ('kaoh', 0.0017157) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz025.txt @@ -47980,6 +50644,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz026.txt station = ('ki95', 0.0009110) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz026.txt @@ -47998,6 +50663,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz027.txt station = ('kmnn', 0.0050407) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc175.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz027.txt @@ -48016,6 +50682,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz028.txt station = ('kmnn', 0.0045267) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz028.txt @@ -48034,6 +50701,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz029.txt station = ('kmfd', 0.0007779) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc139.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz029.txt @@ -48052,6 +50720,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz030.txt station = ('kmfd', 0.0032886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz030.txt @@ -48070,6 +50739,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz031.txt station = ('kbjj', 0.0006624) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc169.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz031.txt @@ -48088,6 +50758,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz032.txt station = ('kcak', 0.0021108) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc151.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz032.txt @@ -48106,6 +50777,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz033.txt station = ('kyng', 0.0043496) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz033.txt @@ -48124,6 +50796,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz034.txt station = ('kaxv', 0.0044587) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz034.txt @@ -48142,6 +50815,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz035.txt station = ('kaxv', 0.0015610) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz035.txt @@ -48160,6 +50834,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz036.txt station = ('kmnn', 0.0013498) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz036.txt @@ -48178,6 +50853,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz037.txt station = ('kmnn', 0.0039590) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz037.txt @@ -48196,6 +50872,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz038.txt station = ('k10g', 0.0005342) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz038.txt @@ -48214,6 +50891,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz039.txt station = ('kphd', 0.0008811) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc157.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz039.txt @@ -48232,6 +50910,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz040.txt station = ('kphd', 0.0047647) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz040.txt @@ -48250,6 +50929,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz041.txt station = ('kbvi', 0.0049901) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz041.txt @@ -48268,6 +50948,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz042.txt station = ('kves', 0.0017025) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz042.txt @@ -48286,6 +50967,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz043.txt station = ('kaxv', 0.0030884) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc149.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz043.txt @@ -48304,6 +50986,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz044.txt station = ('kedj', 0.0007617) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz044.txt @@ -48322,6 +51005,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz045.txt station = ('kmrt', 0.0013321) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc159.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz045.txt @@ -48340,6 +51024,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz046.txt station = ('kdlz', 0.0014595) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz046.txt @@ -48358,6 +51043,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz047.txt station = ('k4i3', 0.0018287) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz047.txt @@ -48376,6 +51062,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz048.txt station = ('k10g', 0.0041373) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz048.txt @@ -48394,6 +51081,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz049.txt station = ('k2g2', 0.0053270) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz049.txt @@ -48412,6 +51100,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz050.txt station = ('k2g2', 0.0009248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz050.txt @@ -48430,6 +51119,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz051.txt station = ('kday', 0.0026823) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz051.txt @@ -48448,6 +51138,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz052.txt station = ('ki74', 0.0002344) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz052.txt @@ -48466,6 +51157,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz053.txt station = ('ksgh', 0.0015351) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz053.txt @@ -48484,6 +51176,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz054.txt station = ('kuyf', 0.0010689) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz054.txt @@ -48502,6 +51195,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz055.txt station = ('kcmh', 0.0017661) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz055.txt @@ -48520,6 +51214,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz056.txt station = ('kvta', 0.0013305) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz056.txt @@ -48538,6 +51233,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz057.txt station = ('kzzv', 0.0006520) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz057.txt @@ -48556,6 +51252,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz058.txt station = ('kcdi', 0.0017475) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz058.txt @@ -48574,6 +51271,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz059.txt station = ('khlg', 0.0052308) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz059.txt @@ -48592,6 +51290,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz060.txt station = ('krid', 0.0026268) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc135.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz060.txt @@ -48610,6 +51309,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz061.txt station = ('kday', 0.0027260) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz061.txt @@ -48628,6 +51328,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz062.txt station = ('kgdk', 0.0013805) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz062.txt @@ -48646,6 +51347,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz063.txt station = ('ki23', 0.0005128) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz063.txt @@ -48664,6 +51366,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz064.txt station = ('klck', 0.0032839) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz064.txt @@ -48682,6 +51385,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz065.txt station = ('klhq', 0.0004861) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz065.txt @@ -48700,6 +51404,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz066.txt station = ('kvta', 0.0057745) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz066.txt @@ -48718,6 +51423,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz067.txt station = ('kzzv', 0.0057892) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz067.txt @@ -48736,6 +51442,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz068.txt station = ('kcdi', 0.0039976) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz068.txt @@ -48754,6 +51461,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz069.txt station = ('kcdi', 0.0079127) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz069.txt @@ -48772,6 +51480,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz070.txt station = ('khao', 0.0014852) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz070.txt @@ -48790,6 +51499,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz071.txt station = ('ki68', 0.0013463) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc165.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz071.txt @@ -48808,6 +51518,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz072.txt station = ('kiln', 0.0004654) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz072.txt @@ -48826,6 +51537,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz073.txt station = ('krzt', 0.0018515) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc141.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz073.txt @@ -48844,6 +51556,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz074.txt station = ('klhq', 0.0050849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz074.txt @@ -48862,6 +51575,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz075.txt station = ('kuni', 0.0032747) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz075.txt @@ -48880,6 +51594,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz076.txt station = ('kpkb', 0.0022147) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc167.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz076.txt @@ -48898,6 +51613,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz077.txt station = ('kluk', 0.0023828) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz077.txt @@ -48916,6 +51632,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz078.txt station = ('ki69', 0.0009522) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz078.txt @@ -48934,6 +51651,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz079.txt station = ('ki69', 0.0052779) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz079.txt @@ -48952,6 +51670,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz080.txt station = ('kiln', 0.0049885) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz080.txt @@ -48970,6 +51689,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz081.txt station = ('kfgx', 0.0064654) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz081.txt @@ -48988,6 +51708,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz082.txt station = ('kpmh', 0.0050961) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc131.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz082.txt @@ -49006,6 +51727,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz083.txt station = ('kjro', 0.0008652) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz083.txt @@ -49024,6 +51746,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz084.txt station = ('kuni', 0.0035266) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc163.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz084.txt @@ -49042,6 +51765,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz085.txt station = ('kuni', 0.0035982) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz085.txt @@ -49060,6 +51784,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz086.txt station = ('kjro', 0.0044763) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz086.txt @@ -49078,6 +51803,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz087.txt station = ('kdwu', 0.0028507) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz087.txt @@ -49096,6 +51822,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz088.txt station = ('kpmh', 0.0020785) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc145.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz088.txt @@ -49114,6 +51841,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/oh/ohz089.txt station = ('khzy', 0.0019366) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/oh/ohc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/oh/ohz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/oh/ohz089.txt @@ -49132,6 +51860,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz001.txt station = ('kspd', 0.0094392) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz001.txt @@ -49150,6 +51879,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz002.txt station = ('kguy', 0.0011356) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz002.txt @@ -49168,6 +51898,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz003.txt station = ('kpyx', 0.0070845) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz003.txt @@ -49186,6 +51917,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz004.txt station = ('kwwr', 0.0064765) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz004.txt @@ -49204,6 +51936,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz005.txt station = ('kavk', 0.0027298) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz005.txt @@ -49222,6 +51955,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz006.txt station = ('kavk', 0.0048939) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz006.txt @@ -49240,6 +51974,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz007.txt station = ('kbkn', 0.0061674) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz007.txt @@ -49258,6 +51993,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz008.txt station = ('kpnc', 0.0016001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz008.txt @@ -49276,6 +52012,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz009.txt station = ('kgag', 0.0014360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz009.txt @@ -49294,6 +52031,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz010.txt station = ('kwwr', 0.0036047) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz010.txt @@ -49312,6 +52050,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz011.txt station = ('kjwg', 0.0079668) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz011.txt @@ -49330,6 +52069,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz012.txt station = ('kwdg', 0.0001168) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz012.txt @@ -49348,6 +52088,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz013.txt station = ('kswo', 0.0043929) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz013.txt @@ -49366,6 +52107,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz014.txt station = ('kelk', 0.0062057) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz014.txt @@ -49384,6 +52126,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz015.txt station = ('kclk', 0.0079431) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz015.txt @@ -49402,6 +52145,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz016.txt station = ('kclk', 0.0020954) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz016.txt @@ -49420,6 +52164,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz017.txt station = ('kjwg', 0.0002560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz017.txt @@ -49438,6 +52183,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz018.txt station = ('kend', 0.0067802) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz018.txt @@ -49456,6 +52202,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz019.txt station = ('kgok', 0.0012685) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz019.txt @@ -49474,6 +52221,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz020.txt station = ('kswo', 0.0021761) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz020.txt @@ -49492,6 +52240,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz021.txt station = ('kelk', 0.0049777) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz021.txt @@ -49510,6 +52259,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz022.txt station = ('kcsm', 0.0031354) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz022.txt @@ -49528,6 +52278,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz023.txt station = ('kchk', 0.0059954) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz023.txt @@ -49546,6 +52297,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz024.txt station = ('krqo', 0.0012649) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz024.txt @@ -49564,6 +52316,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz025.txt station = ('ktik', 0.0023776) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz025.txt @@ -49582,6 +52335,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz026.txt station = ('kcqb', 0.0009332) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz026.txt @@ -49600,6 +52354,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz027.txt station = ('kchk', 0.0018109) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz027.txt @@ -49618,6 +52373,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz028.txt station = ('koun', 0.0036309) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz028.txt @@ -49636,6 +52392,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz029.txt station = ('koun', 0.0017673) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz029.txt @@ -49654,6 +52411,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz030.txt station = ('ksnl', 0.0026265) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz030.txt @@ -49672,6 +52430,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz031.txt station = ('ksre', 0.0020497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz031.txt @@ -49690,6 +52449,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz032.txt station = ('kadh', 0.0073794) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz032.txt @@ -49708,6 +52468,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz033.txt station = ('kaxs', 0.0073341) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz033.txt @@ -49726,6 +52487,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz034.txt station = ('kaxs', 0.0052267) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz034.txt @@ -49744,6 +52506,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz035.txt station = ('khbr', 0.0015326) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz035.txt @@ -49762,6 +52525,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz036.txt station = ('kaxs', 0.0022222) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz036.txt @@ -49780,6 +52544,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz037.txt station = ('kfdr', 0.0009403) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz037.txt @@ -49798,6 +52563,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz038.txt station = ('kfsi', 0.0014950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz038.txt @@ -49816,6 +52582,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz039.txt station = ('kduc', 0.0015836) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz039.txt @@ -49834,6 +52601,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz040.txt station = ('kpvj', 0.0012388) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz040.txt @@ -49852,6 +52620,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz041.txt station = ('kadm', 0.0032053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz041.txt @@ -49870,6 +52639,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz042.txt station = ('kadh', 0.0013455) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz042.txt @@ -49888,6 +52658,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz043.txt station = ('kadh', 0.0065550) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz043.txt @@ -49906,6 +52677,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz044.txt station = ('klaw', 0.0048677) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz044.txt @@ -49924,6 +52696,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz045.txt station = ('kduc', 0.0065290) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz045.txt @@ -49942,6 +52715,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz046.txt station = ('k1f0', 0.0029747) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz046.txt @@ -49960,6 +52734,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz047.txt station = ('kadm', 0.0051786) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz047.txt @@ -49978,6 +52753,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz048.txt station = ('kdua', 0.0091237) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz048.txt @@ -49996,6 +52772,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz049.txt station = ('khhw', 0.0070751) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz049.txt @@ -50014,6 +52791,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz050.txt station = ('k1f0', 0.0038632) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz050.txt @@ -50032,6 +52810,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz051.txt station = ('k1f0', 0.0055373) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz051.txt @@ -50050,6 +52829,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz052.txt station = ('kdua', 0.0019777) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz052.txt @@ -50068,6 +52848,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz053.txt station = ('khhw', 0.0002068) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz053.txt @@ -50086,6 +52867,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz054.txt station = ('kbvo', 0.0058560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz054.txt @@ -50104,6 +52886,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz055.txt station = ('kbvo', 0.0018090) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz055.txt @@ -50122,6 +52905,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz056.txt station = ('kcfv', 0.0050216) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz056.txt @@ -50140,6 +52924,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz057.txt station = ('kmio', 0.0051705) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz057.txt @@ -50158,6 +52943,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz058.txt station = ('kmio', 0.0016764) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz058.txt @@ -50176,6 +52962,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz059.txt station = ('kcuh', 0.0064916) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz059.txt @@ -50194,6 +52981,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz060.txt station = ('krvs', 0.0013741) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz060.txt @@ -50212,6 +53000,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz061.txt station = ('kgcm', 0.0022105) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz061.txt @@ -50230,6 +53019,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz062.txt station = ('kgcm', 0.0035024) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz062.txt @@ -50248,6 +53038,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz063.txt station = ('kgmj', 0.0035552) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz063.txt @@ -50266,6 +53057,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz064.txt station = ('kowp', 0.0056743) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz064.txt @@ -50284,6 +53076,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz065.txt station = ('ksre', 0.0060203) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz065.txt @@ -50302,6 +53095,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz066.txt station = ('kokm', 0.0004341) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz066.txt @@ -50320,6 +53114,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz067.txt station = ('kmko', 0.0058505) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz067.txt @@ -50338,6 +53133,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz068.txt station = ('ktqh', 0.0003948) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz068.txt @@ -50356,6 +53152,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz069.txt station = ('ktqh', 0.0049504) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz069.txt @@ -50374,6 +53171,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz070.txt station = ('kmko', 0.0006186) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz070.txt @@ -50392,6 +53190,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz071.txt station = ('kmko', 0.0064371) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz071.txt @@ -50410,6 +53209,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz072.txt station = ('kjsv', 0.0012089) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz072.txt @@ -50428,6 +53228,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz073.txt station = ('kmlc', 0.0008668) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz073.txt @@ -50446,6 +53247,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz074.txt station = ('kgzl', 0.0011680) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz074.txt @@ -50464,6 +53266,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz075.txt station = ('kgzl', 0.0075468) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz075.txt @@ -50482,6 +53285,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz076.txt station = ('krkr', 0.0024251) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz076.txt @@ -50500,6 +53304,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ok/okz077.txt station = ('k4o4', 0.0038129) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ok/okc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ok/okz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ok/okz077.txt @@ -50518,6 +53323,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz021.txt station = ('koth', 0.0042805) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc019.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz021.txt @@ -50536,6 +53342,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz022.txt station = ('k4s1', 0.0020169) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc015.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz022.txt @@ -50554,6 +53361,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz023.txt station = ('krbg', 0.0013580) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc019.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz023.txt @@ -50572,6 +53380,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz024.txt station = ('k3s8', 0.0050281) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc033.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz024.txt @@ -50590,6 +53399,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz025.txt station = ('krbg', 0.0081510) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc019.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz025.txt @@ -50608,6 +53418,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz026.txt station = ('kmfr', 0.0015089) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc029.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz026.txt @@ -50626,6 +53437,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz027.txt station = ('ks21', 0.0150819) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc035.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz027.txt @@ -50644,6 +53456,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz028.txt station = ('kmfr', 0.0056460) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc035.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz028.txt @@ -50662,6 +53475,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz029.txt station = ('klmt', 0.0035001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc035.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz029.txt @@ -50680,6 +53494,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz030.txt station = ('klmt', 0.0125434) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz030.txt @@ -50698,6 +53513,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz031.txt station = ('klkv', 0.0114001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc037.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz031.txt @@ -50716,6 +53532,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz041.txt station = ('kdls', 0.0075289) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz041.txt @@ -50734,6 +53551,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz044.txt station = ('khri', 0.0028952) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc059.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz044.txt @@ -50752,6 +53570,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz049.txt station = ('klgd', 0.0016857) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc061.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz049.txt @@ -50770,6 +53589,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz050.txt station = ('kbke', 0.0137539) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc063.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz050.txt @@ -50788,6 +53608,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz061.txt station = ('kbno', 0.0093577) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc025.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz061.txt @@ -50806,6 +53627,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz062.txt station = ('kbke', 0.0027860) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc001.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz062.txt @@ -50824,6 +53646,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz063.txt station = ('kreo', 0.0097817) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz063.txt @@ -50842,6 +53665,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz064.txt station = ('kono', 0.0020971) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz064.txt @@ -50860,6 +53684,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz101.txt station = ('kast', 0.0012275) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc007.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz101.txt @@ -50878,6 +53703,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz102.txt station = ('ktmk', 0.0011679) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc057.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz102.txt @@ -50896,6 +53722,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz103.txt station = ('konp', 0.0011925) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc039.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz103.txt @@ -50914,6 +53741,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz104.txt station = ('ktmk', 0.0076675) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz104.txt @@ -50932,6 +53760,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz105.txt station = ('konp', 0.0053469) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc053.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz105.txt @@ -50950,6 +53779,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz106.txt station = ('ktmk', 0.0057494) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz106.txt @@ -50968,6 +53798,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz107.txt station = ('kcvo', 0.0044560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc053.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz107.txt @@ -50986,6 +53817,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz108.txt station = ('kkls', 0.0029028) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc009.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz108.txt @@ -51004,6 +53836,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz109.txt station = ('khio', 0.0008803) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz109.txt @@ -51022,6 +53855,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz110.txt station = ('khio', 0.0016613) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz110.txt @@ -51040,6 +53874,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz111.txt station = ('kpdx', 0.0019561) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz111.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz111.txt @@ -51058,6 +53893,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz112.txt station = ('kttd', 0.0005609) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc051.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz112.txt @@ -51076,6 +53912,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz113.txt station = ('kttd', 0.0031852) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz113.txt @@ -51094,6 +53931,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz114.txt station = ('kmmv', 0.0023676) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc053.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz114.txt @@ -51112,6 +53950,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz115.txt station = ('ksle', 0.0032870) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz115.txt @@ -51130,6 +53969,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz116.txt station = ('kcvo', 0.0003129) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc003.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz116.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz116.txt @@ -51148,6 +53988,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz117.txt station = ('kcvo', 0.0040380) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc043.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz117.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz117.txt @@ -51166,6 +54007,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz118.txt station = ('keug', 0.0014435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc039.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz118.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz118.txt @@ -51184,6 +54026,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz119.txt station = ('kttd', 0.0040564) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz119.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz119.txt @@ -51202,6 +54045,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz120.txt station = ('kttd', 0.0044987) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz120.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz120.txt @@ -51220,6 +54064,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz121.txt station = ('k4s2', 0.0013250) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz121.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz121.txt @@ -51238,6 +54083,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz122.txt station = ('k4s2', 0.0009943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz122.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz122.txt @@ -51256,6 +54102,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz123.txt station = ('kttd', 0.0062635) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc005.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz123.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz123.txt @@ -51274,6 +54121,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz124.txt station = ('ksle', 0.0081158) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc043.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz124.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz124.txt @@ -51292,6 +54140,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz125.txt station = ('k77s', 0.0035822) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc039.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz125.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz125.txt @@ -51310,6 +54159,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz126.txt station = ('kttd', 0.0082485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc051.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz126.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz126.txt @@ -51328,6 +54178,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz127.txt station = ('kuao', 0.0140755) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc043.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz127.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz127.txt @@ -51346,6 +54197,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz128.txt station = ('k77s', 0.0094036) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc039.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz128.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz128.txt @@ -51364,6 +54216,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz502.txt station = ('klgd', 0.0071886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc063.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz502.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz502.txt @@ -51382,6 +54235,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz503.txt station = ('kgcd', 0.0100729) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz503.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz503.txt @@ -51400,6 +54254,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz505.txt station = ('kgcd', 0.0116817) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz505.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz505.txt @@ -51418,6 +54273,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz506.txt station = ('kbdn', 0.0149878) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz506.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz506.txt @@ -51436,6 +54292,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz507.txt station = ('kmeh', 0.0051185) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc059.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz507.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz507.txt @@ -51454,6 +54311,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz508.txt station = ('khri', 0.0123991) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz508.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz508.txt @@ -51472,6 +54330,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz509.txt station = ('kbdn', 0.0052769) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz509.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz509.txt @@ -51490,6 +54349,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz510.txt station = ('kdls', 0.0071289) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz510.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz510.txt @@ -51508,6 +54368,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/or/orz511.txt station = ('krdm', 0.0033897) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/or/orc031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/or/orz511.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/or/orz511.txt @@ -51526,6 +54387,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz001.txt station = ('keri', 0.0008273) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz001.txt @@ -51544,6 +54406,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz002.txt station = ('keri', 0.0029551) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz002.txt @@ -51562,6 +54425,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz003.txt station = ('kgkj', 0.0016965) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz003.txt @@ -51580,6 +54444,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz004.txt station = ('kjhw', 0.0058529) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz004.txt @@ -51598,6 +54463,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz005.txt station = ('kbfd', 0.0008480) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz005.txt @@ -51616,6 +54482,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz006.txt station = ('kelz', 0.0063420) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz006.txt @@ -51634,6 +54501,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz007.txt station = ('kucp', 0.0052480) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz007.txt @@ -51652,6 +54520,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz008.txt station = ('kfkl', 0.0014559) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz008.txt @@ -51670,6 +54539,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz009.txt station = ('kduj', 0.0073830) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz009.txt @@ -51688,6 +54558,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz010.txt station = ('koym', 0.0019317) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz010.txt @@ -51706,6 +54577,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz011.txt station = ('koym', 0.0039333) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz011.txt @@ -51724,6 +54596,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz012.txt station = ('kunv', 0.0078557) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz012.txt @@ -51742,6 +54615,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz013.txt station = ('kucp', 0.0012000) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz013.txt @@ -51760,6 +54634,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz014.txt station = ('kbtp', 0.0022931) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz014.txt @@ -51778,6 +54653,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz015.txt station = ('kduj', 0.0070638) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz015.txt @@ -51796,6 +54672,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz016.txt station = ('kduj', 0.0018054) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz016.txt @@ -51814,6 +54691,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz017.txt station = ('kfig', 0.0011521) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz017.txt @@ -51832,6 +54710,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz018.txt station = ('kunv', 0.0031639) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz018.txt @@ -51850,6 +54729,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz019.txt station = ('kunv', 0.0019950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz019.txt @@ -51868,6 +54748,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz020.txt station = ('kbvi', 0.0016180) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz020.txt @@ -51886,6 +54767,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz021.txt station = ('kagc', 0.0022438) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz021.txt @@ -51904,6 +54786,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz022.txt station = ('kidi', 0.0057467) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz022.txt @@ -51922,6 +54805,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz024.txt station = ('kjst', 0.0035019) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz024.txt @@ -51940,6 +54824,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz025.txt station = ('kaoo', 0.0031926) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz025.txt @@ -51958,6 +54843,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz026.txt station = ('kaoo', 0.0049067) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz026.txt @@ -51976,6 +54862,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz027.txt station = ('krvl', 0.0012910) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz027.txt @@ -51994,6 +54881,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz028.txt station = ('krvl', 0.0040565) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz028.txt @@ -52012,6 +54900,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz029.txt station = ('kafj', 0.0010850) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac125.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz029.txt @@ -52030,6 +54919,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz031.txt station = ('kafj', 0.0049452) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz031.txt @@ -52048,6 +54938,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz033.txt station = ('k2g9', 0.0011767) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz033.txt @@ -52066,6 +54957,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz034.txt station = ('khmz', 0.0014044) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz034.txt @@ -52084,6 +54976,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz035.txt station = ('khgr', 0.0064278) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz035.txt @@ -52102,6 +54995,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz036.txt station = ('khgr', 0.0039740) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz036.txt @@ -52120,6 +55014,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz037.txt station = ('kn38', 0.0020059) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz037.txt @@ -52138,6 +55033,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz038.txt station = ('kelm', 0.0082706) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz038.txt @@ -52156,6 +55052,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz039.txt station = ('kbgm', 0.0070190) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz039.txt @@ -52174,6 +55071,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz040.txt station = ('kavp', 0.0096746) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz040.txt @@ -52192,6 +55090,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz041.txt station = ('kipt', 0.0045519) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz041.txt @@ -52210,6 +55109,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz042.txt station = ('kipt', 0.0063110) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz042.txt @@ -52228,6 +55128,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz043.txt station = ('kavp', 0.0049158) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac131.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz043.txt @@ -52246,6 +55147,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz044.txt station = ('kavp', 0.0024323) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz044.txt @@ -52264,6 +55166,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz045.txt station = ('kipt', 0.0068056) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz045.txt @@ -52282,6 +55185,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz046.txt station = ('kipt', 0.0003719) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz046.txt @@ -52300,6 +55204,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz047.txt station = ('khzl', 0.0033240) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz047.txt @@ -52318,6 +55223,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz048.txt station = ('kmpo', 0.0057528) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz048.txt @@ -52336,6 +55242,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz049.txt station = ('kseg', 0.0036293) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz049.txt @@ -52354,6 +55261,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz050.txt station = ('kseg', 0.0028087) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz050.txt @@ -52372,6 +55280,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz051.txt station = ('kn79', 0.0036169) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz051.txt @@ -52390,6 +55299,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz052.txt station = ('kn79', 0.0020844) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz052.txt @@ -52408,6 +55318,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz053.txt station = ('kn79', 0.0041741) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz053.txt @@ -52426,6 +55337,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz054.txt station = ('k22n', 0.0020223) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz054.txt @@ -52444,6 +55356,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz055.txt station = ('kmpo', 0.0014330) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz055.txt @@ -52462,6 +55375,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz056.txt station = ('kcxy', 0.0063371) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz056.txt @@ -52480,6 +55394,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz057.txt station = ('kcxy', 0.0035959) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz057.txt @@ -52498,6 +55413,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz058.txt station = ('kzer', 0.0020786) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz058.txt @@ -52516,6 +55432,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz059.txt station = ('kmui', 0.0018520) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz059.txt @@ -52534,6 +55451,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz060.txt station = ('krdg', 0.0010226) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz060.txt @@ -52552,6 +55470,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz061.txt station = ('kxll', 0.0015868) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz061.txt @@ -52570,6 +55489,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz062.txt station = ('kabe', 0.0026218) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz062.txt @@ -52588,6 +55508,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz063.txt station = ('kcxy', 0.0056111) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz063.txt @@ -52606,6 +55527,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz064.txt station = ('kdmw', 0.0053908) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz064.txt @@ -52624,6 +55546,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz065.txt station = ('kthv', 0.0021001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz065.txt @@ -52642,6 +55565,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz066.txt station = ('klns', 0.0014724) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz066.txt @@ -52660,6 +55584,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz070.txt station = ('koqn', 0.0027621) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz070.txt @@ -52678,6 +55603,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz071.txt station = ('kpne', 0.0020485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz071.txt @@ -52696,6 +55622,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz072.txt station = ('kavp', 0.0059431) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz072.txt @@ -52714,6 +55641,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz073.txt station = ('klbe', 0.0025603) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz073.txt @@ -52732,6 +55660,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz074.txt station = ('klbe', 0.0023711) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz074.txt @@ -52750,6 +55679,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz075.txt station = ('kvvs', 0.0015411) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz075.txt @@ -52768,6 +55698,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz076.txt station = ('kvvs', 0.0022631) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz076.txt @@ -52786,6 +55717,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz077.txt station = ('kidi', 0.0011398) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz077.txt @@ -52804,6 +55736,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz078.txt station = ('kidi', 0.0021340) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz078.txt @@ -52822,6 +55755,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz101.txt station = ('kmqs', 0.0015707) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz101.txt @@ -52840,6 +55774,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz102.txt station = ('kmqs', 0.0015707) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz102.txt @@ -52858,6 +55793,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz103.txt station = ('klom', 0.0018705) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz103.txt @@ -52876,6 +55812,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz104.txt station = ('klom', 0.0018705) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz104.txt @@ -52894,6 +55831,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz105.txt station = ('kdyl', 0.0001472) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz105.txt @@ -52912,6 +55850,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pa/paz106.txt station = ('kdyl', 0.0001472) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pa/pac017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pa/paz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pa/paz106.txt @@ -52930,6 +55869,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz001.txt station = ('tjig', 0.0014975) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc139.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz001.txt @@ -52948,6 +55888,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz002.txt station = ('tjnr', 0.0025047) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc119.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz002.txt @@ -52966,6 +55907,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz003.txt station = ('tjsj', 0.0075090) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc151.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz003.txt @@ -52984,6 +55926,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz004.txt station = ('tjsj', 0.0046292) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc129.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz004.txt @@ -53002,6 +55945,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz005.txt station = ('tjps', 0.0069844) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc145.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz005.txt @@ -53020,6 +55964,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz006.txt station = ('tjps', 0.0043087) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc149.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz006.txt @@ -53038,6 +55983,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz007.txt station = ('tjps', 0.0015687) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc153.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz007.txt @@ -53056,6 +56002,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz008.txt station = ('tjbq', 0.0033783) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc115.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz008.txt @@ -53074,6 +56021,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz009.txt station = ('tjps', 0.0060661) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc141.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz009.txt @@ -53092,6 +56040,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz010.txt station = ('tjbq', 0.0045314) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc125.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz010.txt @@ -53110,6 +56059,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz011.txt station = ('tjbq', 0.0084966) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc079.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz011.txt @@ -53128,6 +56078,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz012.txt station = ('tist', 0.0050520) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc049.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz012.txt @@ -53146,6 +56097,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/pr/prz013.txt station = ('tjnr', 0.0038760) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/pr/prc147.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/pr/prz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/pr/prz013.txt @@ -53164,6 +56116,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz001.txt station = ('ksfz', 0.0016266) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz001.txt @@ -53182,6 +56135,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz002.txt station = ('kpvd', 0.0013974) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz002.txt @@ -53200,6 +56154,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz003.txt station = ('koqu', 0.0034129) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz003.txt @@ -53218,6 +56173,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz004.txt station = ('kpvd', 0.0009201) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz004.txt @@ -53236,6 +56192,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz005.txt station = ('kpvd', 0.0019658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz005.txt @@ -53254,6 +56211,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz006.txt station = ('kwst', 0.0032015) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz006.txt @@ -53272,6 +56230,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz007.txt station = ('kuuu', 0.0007274) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz007.txt @@ -53290,6 +56249,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ri/riz008.txt station = ('kbid', 0.0002516) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ri/ric009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ri/riz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ri/riz008.txt @@ -53308,6 +56268,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz008.txt station = ('keho', 0.0035341) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz008.txt @@ -53326,6 +56287,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz009.txt station = ('kuza', 0.0019293) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz009.txt @@ -53344,6 +56306,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz010.txt station = ('kand', 0.0011809) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz010.txt @@ -53362,6 +56325,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz011.txt station = ('kgrd', 0.0044586) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz011.txt @@ -53380,6 +56344,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz012.txt station = ('klux', 0.0009400) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz012.txt @@ -53398,6 +56363,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz013.txt station = ('k35a', 0.0003152) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz013.txt @@ -53416,6 +56382,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz014.txt station = ('kdcm', 0.0017745) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz014.txt @@ -53434,6 +56401,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz016.txt station = ('kcqw', 0.0031631) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz016.txt @@ -53452,6 +56420,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz017.txt station = ('kbbp', 0.0008721) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz017.txt @@ -53470,6 +56439,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz018.txt station = ('kgrd', 0.0062668) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz018.txt @@ -53488,6 +56458,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz019.txt station = ('kgrd', 0.0014311) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz019.txt @@ -53506,6 +56477,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz020.txt station = ('keoe', 0.0006647) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz020.txt @@ -53524,6 +56496,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz021.txt station = ('kfdw', 0.0014007) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz021.txt @@ -53542,6 +56515,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz022.txt station = ('kcdn', 0.0010306) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz022.txt @@ -53560,6 +56534,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz023.txt station = ('kudg', 0.0022575) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz023.txt @@ -53578,6 +56553,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz024.txt station = ('kmao', 0.0037254) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz024.txt @@ -53596,6 +56572,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz025.txt station = ('kaik', 0.0046170) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz025.txt @@ -53614,6 +56591,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz026.txt station = ('keoe', 0.0054396) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz026.txt @@ -53632,6 +56610,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz027.txt station = ('kcae', 0.0024020) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz027.txt @@ -53650,6 +56629,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz028.txt station = ('kcub', 0.0017006) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz028.txt @@ -53668,6 +56648,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz029.txt station = ('ksms', 0.0033184) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz029.txt @@ -53686,6 +56667,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz030.txt station = ('kaik', 0.0019725) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz030.txt @@ -53704,6 +56686,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz031.txt station = ('ksms', 0.0014085) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz031.txt @@ -53722,6 +56705,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz032.txt station = ('kflo', 0.0028071) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz032.txt @@ -53740,6 +56724,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz033.txt station = ('kmao', 0.0018096) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz033.txt @@ -53758,6 +56743,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz035.txt station = ('kbnl', 0.0006968) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz035.txt @@ -53776,6 +56762,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz037.txt station = ('kogb', 0.0037734) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz037.txt @@ -53794,6 +56781,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz038.txt station = ('kmni', 0.0014393) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz038.txt @@ -53812,6 +56800,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz039.txt station = ('kcki', 0.0025321) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz039.txt @@ -53830,6 +56819,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz040.txt station = ('kaqx', 0.0012925) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz040.txt @@ -53848,6 +56838,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz041.txt station = ('kaqx', 0.0049662) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz041.txt @@ -53866,6 +56857,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz042.txt station = ('kaqx', 0.0042651) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz042.txt @@ -53884,6 +56876,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz043.txt station = ('krbw', 0.0009143) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz043.txt @@ -53902,6 +56895,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz044.txt station = ('kdyb', 0.0018627) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz044.txt @@ -53920,6 +56914,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz045.txt station = ('kmks', 0.0013577) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz045.txt @@ -53938,6 +56933,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz047.txt station = ('knbc', 0.0049343) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz047.txt @@ -53956,6 +56952,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz048.txt station = ('karw', 0.0015770) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz048.txt @@ -53974,6 +56971,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz049.txt station = ('knbc', 0.0039064) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz049.txt @@ -53992,6 +56990,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz050.txt station = ('kchs', 0.0016683) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz050.txt @@ -54010,6 +57009,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz051.txt station = ('khxd', 0.0038075) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz051.txt @@ -54028,6 +57028,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz052.txt station = ('kchs', 0.0019951) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz052.txt @@ -54046,6 +57047,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz054.txt station = ('kmyr', 0.0014364) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz054.txt @@ -54064,6 +57066,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz055.txt station = ('kgge', 0.0033124) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz055.txt @@ -54082,6 +57085,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz056.txt station = ('kgge', 0.0013133) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz056.txt @@ -54100,6 +57104,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz058.txt station = ('khyw', 0.0015943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz058.txt @@ -54118,6 +57123,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz059.txt station = ('khyw', 0.0044833) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz059.txt @@ -54136,6 +57142,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz101.txt station = ('kceu', 0.0049849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz101.txt @@ -54154,6 +57161,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz102.txt station = ('klqk', 0.0039299) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz102.txt @@ -54172,6 +57180,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz103.txt station = ('kgmu', 0.0051467) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz103.txt @@ -54190,6 +57199,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz104.txt station = ('kceu', 0.0022566) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz104.txt @@ -54208,6 +57218,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz105.txt station = ('klqk', 0.0008623) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz105.txt @@ -54226,6 +57237,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz106.txt station = ('kgmu', 0.0020867) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz106.txt @@ -54244,6 +57256,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz107.txt station = ('kgyh', 0.0015881) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz107.txt @@ -54262,6 +57275,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz108.txt station = ('kspa', 0.0029918) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz108.txt @@ -54280,6 +57294,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz109.txt station = ('kspa', 0.0014730) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz109.txt @@ -54298,6 +57313,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz115.txt station = ('keqy', 0.0035409) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz115.txt @@ -54316,6 +57332,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz116.txt station = ('klkr', 0.0026310) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz116.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz116.txt @@ -54334,6 +57351,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz135.txt station = ('kxno', 0.0009359) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz135.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz135.txt @@ -54352,6 +57370,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz136.txt station = ('kogb', 0.0009422) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz136.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz136.txt @@ -54370,6 +57389,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sc/scz137.txt station = ('kogb', 0.0048868) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sc/scc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sc/scz137.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sc/scz137.txt @@ -54388,6 +57408,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz001.txt station = ('k2wx', 0.0007441) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc063.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz001.txt @@ -54406,6 +57427,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz002.txt station = ('khei', 0.0053267) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc105.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz002.txt @@ -54424,6 +57446,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz003.txt station = ('kmbg', 0.0099174) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz003.txt @@ -54442,6 +57465,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz004.txt station = ('kmbg', 0.0058916) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz004.txt @@ -54460,6 +57484,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz005.txt station = ('kabr', 0.0112720) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz005.txt @@ -54478,6 +57503,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz006.txt station = ('kabr', 0.0025664) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz006.txt @@ -54496,6 +57522,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz007.txt station = ('kbtn', 0.0020172) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz007.txt @@ -54514,6 +57541,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz008.txt station = ('k8d3', 0.0007905) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz008.txt @@ -54532,6 +57560,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz009.txt station = ('kmbg', 0.0051567) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz009.txt @@ -54550,6 +57579,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz010.txt station = ('k0d8', 0.0117924) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz010.txt @@ -54568,6 +57598,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz011.txt station = ('kbtn', 0.0079926) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz011.txt @@ -54586,6 +57617,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz012.txt station = ('kspf', 0.0081258) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc019.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz012.txt @@ -54604,6 +57636,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz013.txt station = ('kd07', 0.0068154) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc093.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz013.txt @@ -54622,6 +57655,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz014.txt station = ('kd07', 0.0044240) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc137.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz014.txt @@ -54640,6 +57674,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz015.txt station = ('kmbg', 0.0088497) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz015.txt @@ -54658,6 +57693,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz016.txt station = ('k0d8', 0.0013590) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz016.txt @@ -54676,6 +57712,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz017.txt station = ('k0d8', 0.0100689) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz017.txt @@ -54694,6 +57731,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz018.txt station = ('k1d8', 0.0026212) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz018.txt @@ -54712,6 +57750,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz019.txt station = ('k1d8', 0.0098974) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz019.txt @@ -54730,6 +57769,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz020.txt station = ('katy', 0.0014392) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz020.txt @@ -54748,6 +57788,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz021.txt station = ('k1d1', 0.0026835) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz021.txt @@ -54766,6 +57807,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz022.txt station = ('katy', 0.0039781) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz022.txt @@ -54784,6 +57826,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz023.txt station = ('kcnb', 0.0050327) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz023.txt @@ -54802,6 +57845,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz024.txt station = ('kspf', 0.0049691) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc103.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz024.txt @@ -54820,6 +57864,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz025.txt station = ('kspf', 0.0006699) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc081.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz025.txt @@ -54838,6 +57883,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz026.txt station = ('krap', 0.0023354) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc103.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz026.txt @@ -54856,6 +57902,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz027.txt station = ('kcut', 0.0061393) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz027.txt @@ -54874,6 +57921,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz028.txt station = ('kcut', 0.0023625) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz028.txt @@ -54892,6 +57940,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz029.txt station = ('kcut', 0.0027843) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz029.txt @@ -54910,6 +57959,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz030.txt station = ('krap', 0.0061995) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz030.txt @@ -54928,6 +57978,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz031.txt station = ('krap', 0.0076640) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc103.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz031.txt @@ -54946,6 +57997,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz032.txt station = ('kphp', 0.0043314) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz032.txt @@ -54964,6 +58016,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz033.txt station = ('kpir', 0.0056663) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz033.txt @@ -54982,6 +58035,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz034.txt station = ('k0d8', 0.0052280) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz034.txt @@ -55000,6 +58054,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz035.txt station = ('kpir', 0.0035840) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz035.txt @@ -55018,6 +58073,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz036.txt station = ('k0d8', 0.0095961) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz036.txt @@ -55036,6 +58092,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz037.txt station = ('k1d8', 0.0080597) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz037.txt @@ -55054,6 +58111,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz038.txt station = ('khon', 0.0007803) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz038.txt @@ -55072,6 +58130,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz039.txt station = ('kmds', 0.0079906) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz039.txt @@ -55090,6 +58149,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz040.txt station = ('kbkx', 0.0012596) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz040.txt @@ -55108,6 +58168,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz041.txt station = ('kcut', 0.0101305) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz041.txt @@ -55126,6 +58187,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz042.txt station = ('kien', 0.0086949) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc102.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz042.txt @@ -55144,6 +58206,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz043.txt station = ('kphp', 0.0031824) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz043.txt @@ -55162,6 +58225,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz044.txt station = ('kgrn', 0.0094176) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz044.txt @@ -55180,6 +58244,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz045.txt station = ('kpir', 0.0089640) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz045.txt @@ -55198,6 +58263,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz046.txt station = ('kicr', 0.0120311) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz046.txt @@ -55216,6 +58282,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz047.txt station = ('kvtn', 0.0060939) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz047.txt @@ -55234,6 +58301,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz048.txt station = ('k9v9', 0.0070520) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz048.txt @@ -55252,6 +58320,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz049.txt station = ('kicr', 0.0007829) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz049.txt @@ -55270,6 +58339,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz050.txt station = ('k9v9', 0.0101594) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz050.txt @@ -55288,6 +58358,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz051.txt station = ('k9v9', 0.0055835) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz051.txt @@ -55306,6 +58377,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz052.txt station = ('khon', 0.0074287) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz052.txt @@ -55324,6 +58396,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz053.txt station = ('kmhe', 0.0045417) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz053.txt @@ -55342,6 +58415,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz054.txt station = ('kmds', 0.0065812) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz054.txt @@ -55360,6 +58434,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz055.txt station = ('kmds', 0.0005559) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz055.txt @@ -55378,6 +58453,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz056.txt station = ('kbkx', 0.0051818) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz056.txt @@ -55396,6 +58472,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz057.txt station = ('k9v9', 0.0030901) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz057.txt @@ -55414,6 +58491,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz058.txt station = ('kmhe', 0.0067145) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz058.txt @@ -55432,6 +58510,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz059.txt station = ('kmhe', 0.0021408) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz059.txt @@ -55450,6 +58529,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz060.txt station = ('kmhe', 0.0034920) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz060.txt @@ -55468,6 +58548,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz061.txt station = ('kmds', 0.0069450) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz061.txt @@ -55486,6 +58567,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz062.txt station = ('kfsd', 0.0016699) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz062.txt @@ -55504,6 +58586,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz063.txt station = ('kmhe', 0.0120175) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz063.txt @@ -55522,6 +58605,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz064.txt station = ('kmhe', 0.0078486) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz064.txt @@ -55540,6 +58624,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz065.txt station = ('kmhe', 0.0083214) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz065.txt @@ -55558,6 +58643,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz066.txt station = ('kfsd', 0.0069398) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz066.txt @@ -55576,6 +58662,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz067.txt station = ('kfsd', 0.0053253) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz067.txt @@ -55594,6 +58681,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz068.txt station = ('kykn', 0.0065259) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz068.txt @@ -55612,6 +58700,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz069.txt station = ('kykn', 0.0016180) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz069.txt @@ -55630,6 +58719,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz070.txt station = ('kykn', 0.0052105) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz070.txt @@ -55648,6 +58738,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz071.txt station = ('klrj', 0.0059976) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz071.txt @@ -55666,6 +58757,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz072.txt station = ('k49b', 0.0015948) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc093.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz072.txt @@ -55684,6 +58776,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz073.txt station = ('krca', 0.0060924) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc093.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz073.txt @@ -55702,6 +58795,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz074.txt station = ('kcut', 0.0047553) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz074.txt @@ -55720,6 +58814,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz075.txt station = ('kcdr', 0.0067118) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz075.txt @@ -55738,6 +58833,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz076.txt station = ('kien', 0.0027660) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc102.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz076.txt @@ -55756,6 +58852,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz077.txt station = ('kphp', 0.0085297) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc071.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz077.txt @@ -55774,6 +58871,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/sd/sdz078.txt station = ('kd07', 0.0071720) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/sd/sdc105.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/sd/sdz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/sd/sdz078.txt @@ -55792,6 +58890,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz001.txt station = ('kdyr', 0.0059968) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz001.txt @@ -55810,6 +58909,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz002.txt station = ('kucy', 0.0023330) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz002.txt @@ -55828,6 +58928,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz003.txt station = ('kucy', 0.0040345) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc183.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz003.txt @@ -55846,6 +58947,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz004.txt station = ('kpht', 0.0011528) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz004.txt @@ -55864,6 +58966,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz005.txt station = ('keod', 0.0051508) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc161.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz005.txt @@ -55882,6 +58985,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz006.txt station = ('keod', 0.0018530) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz006.txt @@ -55900,6 +59004,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz007.txt station = ('km91', 0.0007322) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz007.txt @@ -55918,6 +59023,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz008.txt station = ('kxnx', 0.0018003) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc165.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz008.txt @@ -55936,6 +59042,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz009.txt station = ('k1m5', 0.0066667) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz009.txt @@ -55954,6 +59061,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz010.txt station = ('k8a3', 0.0040624) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz010.txt @@ -55972,6 +59080,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz011.txt station = ('k8a3', 0.0041917) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz011.txt @@ -55990,6 +59099,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz012.txt station = ('kscx', 0.0012466) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc151.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz012.txt @@ -56008,6 +59118,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz013.txt station = ('kjau', 0.0012286) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz013.txt @@ -56026,6 +59137,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz014.txt station = ('k1a6', 0.0024277) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz014.txt @@ -56044,6 +59156,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz015.txt station = ('k0vg', 0.0022747) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz015.txt @@ -56062,6 +59175,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz016.txt station = ('kgcy', 0.0046773) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz016.txt @@ -56080,6 +59194,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz017.txt station = ('ktri', 0.0015678) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc163.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz017.txt @@ -56098,6 +59213,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz018.txt station = ('kvji', 0.0047298) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz018.txt @@ -56116,6 +59232,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz019.txt station = ('kdyr', 0.0010480) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz019.txt @@ -56134,6 +59251,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz020.txt station = ('kdyr', 0.0066001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz020.txt @@ -56152,6 +59270,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz021.txt station = ('khzd', 0.0020365) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz021.txt @@ -56170,6 +59289,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz022.txt station = ('khzd', 0.0055822) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz022.txt @@ -56188,6 +59308,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz023.txt station = ('km02', 0.0048964) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz023.txt @@ -56206,6 +59327,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz024.txt station = ('km02', 0.0051107) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz024.txt @@ -56224,6 +59346,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz025.txt station = ('km02', 0.0010942) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz025.txt @@ -56242,6 +59365,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz026.txt station = ('kjwn', 0.0031352) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz026.txt @@ -56260,6 +59384,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz027.txt station = ('kbna', 0.0017007) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz027.txt @@ -56278,6 +59403,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz028.txt station = ('km54', 0.0006700) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc189.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz028.txt @@ -56296,6 +59422,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz029.txt station = ('km54', 0.0041708) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz029.txt @@ -56314,6 +59441,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz030.txt station = ('km54', 0.0051625) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz030.txt @@ -56332,6 +59460,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz031.txt station = ('k8a3', 0.0051639) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz031.txt @@ -56350,6 +59479,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz032.txt station = ('ksrb', 0.0015645) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz032.txt @@ -56368,6 +59498,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz033.txt station = ('k8a3', 0.0012168) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz033.txt @@ -56386,6 +59517,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz034.txt station = ('k8a3', 0.0053557) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz034.txt @@ -56404,6 +59536,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz035.txt station = ('krkw', 0.0037563) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc129.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz035.txt @@ -56422,6 +59555,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz036.txt station = ('koqt', 0.0018423) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz036.txt @@ -56440,6 +59574,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz037.txt station = ('kdkx', 0.0056216) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc173.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz037.txt @@ -56458,6 +59593,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz038.txt station = ('kmor', 0.0025335) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz038.txt @@ -56476,6 +59612,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz039.txt station = ('kmor', 0.0016697) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz039.txt @@ -56494,6 +59631,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz040.txt station = ('kmor', 0.0046355) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz040.txt @@ -56512,6 +59650,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz041.txt station = ('kgcy', 0.0072060) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz041.txt @@ -56530,6 +59669,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz042.txt station = ('kgcy', 0.0005961) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz042.txt @@ -56548,6 +59688,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz043.txt station = ('kgcy', 0.0032004) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz043.txt @@ -56566,6 +59707,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz044.txt station = ('ktri', 0.0033210) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc179.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz044.txt @@ -56584,6 +59726,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz045.txt station = ('kgcy', 0.0055450) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc171.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz045.txt @@ -56602,6 +59745,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz046.txt station = ('ktri', 0.0037154) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz046.txt @@ -56620,6 +59764,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz047.txt station = ('ktri', 0.0059083) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz047.txt @@ -56638,6 +59783,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz048.txt station = ('km04', 0.0031607) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz048.txt @@ -56656,6 +59802,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz049.txt station = ('km04', 0.0028768) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz049.txt @@ -56674,6 +59821,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz050.txt station = ('km04', 0.0043065) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz050.txt @@ -56692,6 +59840,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz051.txt station = ('kmkl', 0.0048845) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz051.txt @@ -56710,6 +59859,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz052.txt station = ('kmkl', 0.0011184) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz052.txt @@ -56728,6 +59878,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz053.txt station = ('kszy', 0.0041422) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz053.txt @@ -56746,6 +59897,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz054.txt station = ('kpve', 0.0027316) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz054.txt @@ -56764,6 +59916,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz055.txt station = ('kpve', 0.0015420) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz055.txt @@ -56782,6 +59935,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz056.txt station = ('kpve', 0.0047770) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz056.txt @@ -56800,6 +59954,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz057.txt station = ('km02', 0.0057003) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz057.txt @@ -56818,6 +59973,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz058.txt station = ('kmrc', 0.0044172) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz058.txt @@ -56836,6 +59992,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz059.txt station = ('kbna', 0.0049373) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc187.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz059.txt @@ -56854,6 +60011,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz060.txt station = ('kmrc', 0.0019093) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz060.txt @@ -56872,6 +60030,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz061.txt station = ('klug', 0.0008639) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz061.txt @@ -56890,6 +60049,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz062.txt station = ('kmbt', 0.0008224) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz062.txt @@ -56908,6 +60068,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz063.txt station = ('krnc', 0.0036347) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz063.txt @@ -56926,6 +60087,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz064.txt station = ('krnc', 0.0049086) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz064.txt @@ -56944,6 +60106,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz065.txt station = ('ksrb', 0.0024985) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc185.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz065.txt @@ -56962,6 +60125,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz066.txt station = ('kcsv', 0.0012014) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz066.txt @@ -56980,6 +60144,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz067.txt station = ('krkw', 0.0026883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc145.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz067.txt @@ -56998,6 +60163,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz068.txt station = ('kmnv', 0.0034493) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz068.txt @@ -57016,6 +60182,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz069.txt station = ('kdkx', 0.0010973) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz069.txt @@ -57034,6 +60201,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz070.txt station = ('kmor', 0.0024533) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz070.txt @@ -57052,6 +60220,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz071.txt station = ('ktys', 0.0016308) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz071.txt @@ -57070,6 +60239,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz072.txt station = ('ktys', 0.0045788) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz072.txt @@ -57088,6 +60258,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz073.txt station = ('kgkt', 0.0004443) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc155.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz073.txt @@ -57106,6 +60277,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz074.txt station = ('kgkt', 0.0033188) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc155.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz074.txt @@ -57124,6 +60296,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz075.txt station = ('ksyi', 0.0008410) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz075.txt @@ -57142,6 +60315,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz076.txt station = ('ktha', 0.0023095) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz076.txt @@ -57160,6 +60334,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz077.txt station = ('ktha', 0.0031103) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz077.txt @@ -57178,6 +60353,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz078.txt station = ('krnc', 0.0009893) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc177.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz078.txt @@ -57196,6 +60372,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz079.txt station = ('krnc', 0.0056827) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz079.txt @@ -57214,6 +60391,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz080.txt station = ('krnc', 0.0055465) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc175.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz080.txt @@ -57232,6 +60410,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz081.txt station = ('kcha', 0.0066177) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz081.txt @@ -57250,6 +60429,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz082.txt station = ('k2a0', 0.0043407) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz082.txt @@ -57268,6 +60448,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz083.txt station = ('k2a0', 0.0021402) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc143.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz083.txt @@ -57286,6 +60467,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz084.txt station = ('k2a0', 0.0017338) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz084.txt @@ -57304,6 +60486,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz085.txt station = ('kmmi', 0.0009166) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz085.txt @@ -57322,6 +60505,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz086.txt station = ('kmnv', 0.0014422) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz086.txt @@ -57340,6 +60524,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz087.txt station = ('krhp', 0.0047530) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc123.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz087.txt @@ -57358,6 +60543,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz088.txt station = ('k2m8', 0.0017403) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz088.txt @@ -57376,6 +60562,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz089.txt station = ('kfye', 0.0003388) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz089.txt @@ -57394,6 +60581,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz090.txt station = ('km08', 0.0007295) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz090.txt @@ -57412,6 +60600,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz091.txt station = ('kszy', 0.0010543) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz091.txt @@ -57430,6 +60619,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz092.txt station = ('ksnh', 0.0006668) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz092.txt @@ -57448,6 +60638,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz093.txt station = ('ksnh', 0.0062219) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc181.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz093.txt @@ -57466,6 +60657,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz094.txt station = ('k2m2', 0.0019856) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz094.txt @@ -57484,6 +60676,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz095.txt station = ('kgzs', 0.0009028) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz095.txt @@ -57502,6 +60695,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz096.txt station = ('kfym', 0.0014543) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz096.txt @@ -57520,6 +60714,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz097.txt station = ('kbgf', 0.0005415) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz097.txt @@ -57538,6 +60733,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz098.txt station = ('kbgf', 0.0063941) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz098.txt @@ -57556,6 +60752,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz099.txt station = ('kcha', 0.0026241) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz099.txt @@ -57574,6 +60771,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz100.txt station = ('krzr', 0.0013160) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz100.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz100.txt @@ -57592,6 +60790,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz101.txt station = ('krzr', 0.0031829) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc139.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz101.txt @@ -57610,6 +60809,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tn/tnz102.txt station = ('kmmi', 0.0058537) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tn/tnc139.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tn/tnz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tn/tnz102.txt @@ -57628,6 +60828,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz001.txt station = ('kdht', 0.0046184) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz001.txt @@ -57646,6 +60847,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz002.txt station = ('kdux', 0.0075206) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc421.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz002.txt @@ -57664,6 +60866,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz003.txt station = ('kguy', 0.0073716) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc195.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz003.txt @@ -57682,6 +60885,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz004.txt station = ('kpyx', 0.0024170) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc357.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz004.txt @@ -57700,6 +60904,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz005.txt station = ('khhf', 0.0068308) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc295.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz005.txt @@ -57718,6 +60923,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz006.txt station = ('kdht', 0.0031728) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc205.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz006.txt @@ -57736,6 +60942,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz007.txt station = ('kdux', 0.0017356) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc341.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz007.txt @@ -57754,6 +60961,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz008.txt station = ('kbgd', 0.0025263) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc233.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz008.txt @@ -57772,6 +60980,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz009.txt station = ('kbpc', 0.0031879) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc393.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz009.txt @@ -57790,6 +60999,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz010.txt station = ('khhf', 0.0021309) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc211.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz010.txt @@ -57808,6 +61018,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz011.txt station = ('khrx', 0.0103360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc359.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz011.txt @@ -57826,6 +61037,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz012.txt station = ('kama', 0.0040943) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc375.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz012.txt @@ -57844,6 +61056,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz013.txt station = ('kbgd', 0.0052156) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz013.txt @@ -57862,6 +61075,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz014.txt station = ('kppa', 0.0045204) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc179.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz014.txt @@ -57880,6 +61094,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz015.txt station = ('khhf', 0.0088980) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc483.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz015.txt @@ -57898,6 +61113,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz016.txt station = ('khrx', 0.0044159) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz016.txt @@ -57916,6 +61132,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz017.txt station = ('kama', 0.0051395) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc381.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz017.txt @@ -57934,6 +61151,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz018.txt station = ('kama', 0.0067552) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz018.txt @@ -57952,6 +61170,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz019.txt station = ('kppa', 0.0115929) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz019.txt @@ -57970,6 +61189,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz020.txt station = ('kcds', 0.0092795) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz020.txt @@ -57988,6 +61208,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz021.txt station = ('kcvn', 0.0046191) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc369.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz021.txt @@ -58006,6 +61227,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz022.txt station = ('khrx', 0.0057951) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz022.txt @@ -58024,6 +61246,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz023.txt station = ('kpvw', 0.0063293) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc437.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz023.txt @@ -58042,6 +61265,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz024.txt station = ('kpvw', 0.0096792) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz024.txt @@ -58060,6 +61284,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz025.txt station = ('kcds', 0.0059701) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc191.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz025.txt @@ -58078,6 +61303,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz026.txt station = ('kcds', 0.0019967) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz026.txt @@ -58096,6 +61322,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz027.txt station = ('kcvn', 0.0073433) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz027.txt @@ -58114,6 +61341,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz028.txt station = ('klln', 0.0090124) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc279.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz028.txt @@ -58132,6 +61360,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz029.txt station = ('kpvw', 0.0023260) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc189.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz029.txt @@ -58150,6 +61379,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz030.txt station = ('kpvw', 0.0062108) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc153.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz030.txt @@ -58168,6 +61398,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz031.txt station = ('kcds', 0.0095187) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc345.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz031.txt @@ -58186,6 +61417,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz032.txt station = ('kcds', 0.0062091) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz032.txt @@ -58204,6 +61436,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz033.txt station = ('klln', 0.0066987) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz033.txt @@ -58222,6 +61455,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz034.txt station = ('klln', 0.0010489) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc219.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz034.txt @@ -58240,6 +61474,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz035.txt station = ('klbb', 0.0009871) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc303.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz035.txt @@ -58258,6 +61493,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz036.txt station = ('klbb', 0.0075621) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz036.txt @@ -58276,6 +61512,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz037.txt station = ('kcds', 0.0159556) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz037.txt @@ -58294,6 +61531,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz038.txt station = ('kcds', 0.0142620) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc269.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz038.txt @@ -58312,6 +61550,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz039.txt station = ('ke57', 0.0034367) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc501.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz039.txt @@ -58330,6 +61569,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz040.txt station = ('klln', 0.0066313) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc445.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz040.txt @@ -58348,6 +61588,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz041.txt station = ('kluv', 0.0074951) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc305.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz041.txt @@ -58366,6 +61607,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz042.txt station = ('ksnk', 0.0099056) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc169.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz042.txt @@ -58384,6 +61626,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz043.txt station = ('ksnk', 0.0088860) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc263.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz043.txt @@ -58402,6 +61645,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz044.txt station = ('ksww', 0.0128117) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc433.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz044.txt @@ -58420,6 +61664,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz045.txt station = ('kgnc', 0.0011698) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc165.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz045.txt @@ -58438,6 +61683,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz046.txt station = ('kluv', 0.0004726) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz046.txt @@ -58456,6 +61702,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz047.txt station = ('kluv', 0.0071710) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz047.txt @@ -58474,6 +61721,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz048.txt station = ('ksnk', 0.0010498) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc415.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz048.txt @@ -58492,6 +61740,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz049.txt station = ('ksww', 0.0049015) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc151.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz049.txt @@ -58510,6 +61759,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz050.txt station = ('ke11', 0.0016619) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz050.txt @@ -58528,6 +61778,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz051.txt station = ('kmdd', 0.0052006) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc317.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz051.txt @@ -58546,6 +61797,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz052.txt station = ('kbpg', 0.0022070) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc227.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz052.txt @@ -58564,6 +61816,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz053.txt station = ('ksnk', 0.0067703) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc335.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz053.txt @@ -58582,6 +61835,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz054.txt station = ('ksww', 0.0029925) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc353.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz054.txt @@ -58600,6 +61854,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz059.txt station = ('kink', 0.0057518) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc301.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz059.txt @@ -58618,6 +61873,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz060.txt station = ('kink', 0.0025342) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc495.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz060.txt @@ -58636,6 +61892,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz061.txt station = ('kodo', 0.0022725) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz061.txt @@ -58654,6 +61911,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz062.txt station = ('kmaf', 0.0027348) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc329.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz062.txt @@ -58672,6 +61930,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz063.txt station = ('kbpg', 0.0057686) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc173.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz063.txt @@ -58690,6 +61949,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz064.txt station = ('kbpg', 0.0094801) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc431.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz064.txt @@ -58708,6 +61968,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz065.txt station = ('ksjt', 0.0094091) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz065.txt @@ -58726,6 +61987,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz066.txt station = ('kcom', 0.0084920) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc399.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz066.txt @@ -58744,6 +62006,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz067.txt station = ('kink', 0.0049945) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc475.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz067.txt @@ -58762,6 +62025,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz068.txt station = ('kodo', 0.0086911) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz068.txt @@ -58780,6 +62044,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz069.txt station = ('ke41', 0.0090112) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc461.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz069.txt @@ -58798,6 +62063,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz070.txt station = ('ke41', 0.0030163) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc383.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz070.txt @@ -58816,6 +62082,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz071.txt station = ('ke41', 0.0075393) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc235.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz071.txt @@ -58834,6 +62101,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz072.txt station = ('ksjt', 0.0011047) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc451.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz072.txt @@ -58852,6 +62120,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz073.txt station = ('kbbd', 0.0084591) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz073.txt @@ -58870,6 +62139,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz075.txt station = ('kfst', 0.0037373) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc371.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz075.txt @@ -58888,6 +62158,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz076.txt station = ('koza', 0.0031444) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz076.txt @@ -58906,6 +62177,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz077.txt station = ('ksoa', 0.0056883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc413.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz077.txt @@ -58924,6 +62196,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz078.txt station = ('ksoa', 0.0022494) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc435.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz078.txt @@ -58942,6 +62215,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz082.txt station = ('k6r6', 0.0037155) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc443.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz082.txt @@ -58960,6 +62234,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz083.txt station = ('kf05', 0.0067609) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc197.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz083.txt @@ -58978,6 +62253,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz084.txt station = ('kf05', 0.0083807) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc155.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz084.txt @@ -58996,6 +62272,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz085.txt station = ('kf05', 0.0026020) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc487.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz085.txt @@ -59014,6 +62291,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz086.txt station = ('ksps', 0.0029418) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc485.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz086.txt @@ -59032,6 +62310,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz087.txt station = ('kf05', 0.0126827) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc275.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz087.txt @@ -59050,6 +62329,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz088.txt station = ('kf05', 0.0106784) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz088.txt @@ -59068,6 +62348,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz089.txt station = ('kcwc', 0.0051101) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz089.txt @@ -59086,6 +62367,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz090.txt station = ('kcwc', 0.0042798) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz090.txt @@ -59104,6 +62386,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz091.txt station = ('klud', 0.0076456) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc337.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz091.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz091.txt @@ -59122,6 +62405,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz092.txt station = ('kgle', 0.0003103) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz092.txt @@ -59140,6 +62424,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz093.txt station = ('kgyi', 0.0015765) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc181.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz093.txt @@ -59158,6 +62443,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz094.txt station = ('kf00', 0.0011087) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc147.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz094.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz094.txt @@ -59176,6 +62462,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz095.txt station = ('kprx', 0.0018555) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc277.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz095.txt @@ -59194,6 +62481,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz096.txt station = ('k4o4', 0.0057486) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc387.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz096.txt @@ -59212,6 +62500,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz097.txt station = ('kata', 0.0068552) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz097.txt @@ -59230,6 +62519,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz098.txt station = ('kabi', 0.0133091) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc207.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz098.txt @@ -59248,6 +62538,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz099.txt station = ('kbkd', 0.0092841) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc447.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz099.txt @@ -59266,6 +62557,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz100.txt station = ('krph', 0.0022596) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc503.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz100.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz100.txt @@ -59284,6 +62576,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz101.txt station = ('krph', 0.0059930) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc237.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz101.txt @@ -59302,6 +62595,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz102.txt station = ('klud', 0.0012707) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc497.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz102.txt @@ -59320,6 +62614,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz103.txt station = ('kdto', 0.0012130) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz103.txt @@ -59338,6 +62633,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz104.txt station = ('ktki', 0.0001777) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz104.txt @@ -59356,6 +62652,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz105.txt station = ('kgvt', 0.0010307) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc231.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz105.txt @@ -59374,6 +62671,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz106.txt station = ('kslr', 0.0040006) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz106.txt @@ -59392,6 +62690,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz107.txt station = ('kslr', 0.0008587) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc223.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz107.txt @@ -59410,6 +62709,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz108.txt station = ('kosa', 0.0040093) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc159.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz108.txt @@ -59428,6 +62728,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz109.txt station = ('kosa', 0.0021184) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc449.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz109.txt @@ -59446,6 +62747,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz110.txt station = ('kosa', 0.0021453) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz110.txt @@ -59464,6 +62766,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz111.txt station = ('kosa', 0.0033600) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc343.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz111.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz111.txt @@ -59482,6 +62785,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz112.txt station = ('kata', 0.0022097) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz112.txt @@ -59500,6 +62804,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz113.txt station = ('kdys', 0.0055925) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc253.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz113.txt @@ -59518,6 +62823,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz114.txt station = ('kabi', 0.0073831) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc417.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz114.txt @@ -59536,6 +62842,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz115.txt station = ('kbkd', 0.0008569) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc429.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz115.txt @@ -59554,6 +62861,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz116.txt station = ('kmwl', 0.0036532) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc363.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz116.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz116.txt @@ -59572,6 +62880,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz117.txt station = ('kmwl', 0.0038395) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc367.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz117.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz117.txt @@ -59590,6 +62899,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz118.txt station = ('kftw', 0.0015523) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc439.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz118.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz118.txt @@ -59608,6 +62918,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz119.txt station = ('kdal', 0.0017993) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz119.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz119.txt @@ -59626,6 +62937,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz120.txt station = ('kf46', 0.0007201) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc397.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz120.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz120.txt @@ -59644,6 +62956,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz121.txt station = ('ktrl', 0.0020669) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc257.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz121.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz121.txt @@ -59662,6 +62975,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz122.txt station = ('kjdd', 0.0058870) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc467.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz122.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz122.txt @@ -59680,6 +62994,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz123.txt station = ('kjdd', 0.0048992) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc379.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz123.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz123.txt @@ -59698,6 +63013,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz124.txt station = ('kjdd', 0.0018481) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc499.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz124.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz124.txt @@ -59716,6 +63032,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz125.txt station = ('kjxi', 0.0006615) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc459.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz125.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz125.txt @@ -59734,6 +63051,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz126.txt station = ('kasl', 0.0048974) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc315.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz126.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz126.txt @@ -59752,6 +63070,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz127.txt station = ('kdys', 0.0021252) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc441.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz127.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz127.txt @@ -59770,6 +63089,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz128.txt station = ('kabi', 0.0050177) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz128.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz128.txt @@ -59788,6 +63108,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz129.txt station = ('ketn', 0.0015440) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz129.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz129.txt @@ -59806,6 +63127,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz130.txt station = ('ksep', 0.0006160) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc143.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz130.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz130.txt @@ -59824,6 +63146,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz131.txt station = ('kgdj', 0.0003392) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc221.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz131.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz131.txt @@ -59842,6 +63165,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz132.txt station = ('kgdj', 0.0039221) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc425.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz132.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz132.txt @@ -59860,6 +63184,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz133.txt station = ('kcpt', 0.0010867) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc251.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz133.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz133.txt @@ -59878,6 +63203,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz134.txt station = ('kjwy', 0.0025545) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz134.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz134.txt @@ -59896,6 +63222,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz135.txt station = ('kf44', 0.0009222) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc213.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz135.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz135.txt @@ -59914,6 +63241,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz136.txt station = ('ktyr', 0.0019771) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc423.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz136.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz136.txt @@ -59932,6 +63260,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz137.txt station = ('kggg', 0.0022489) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc183.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz137.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz137.txt @@ -59950,6 +63279,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz138.txt station = ('kasl', 0.0010528) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc203.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz138.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz138.txt @@ -59968,6 +63298,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz139.txt station = ('kcom', 0.0013980) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz139.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz139.txt @@ -59986,6 +63317,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz140.txt station = ('kbwd', 0.0008643) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz140.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz140.txt @@ -60004,6 +63336,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz141.txt station = ('kmkn', 0.0008292) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz141.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz141.txt @@ -60022,6 +63355,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz142.txt station = ('k81r', 0.0048858) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc333.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz142.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz142.txt @@ -60040,6 +63374,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz143.txt station = ('kmnz', 0.0008819) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc193.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz143.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz143.txt @@ -60058,6 +63393,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz144.txt station = ('kact', 0.0081183) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz144.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz144.txt @@ -60076,6 +63412,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz145.txt station = ('kinj', 0.0016985) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc217.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz145.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz145.txt @@ -60094,6 +63431,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz146.txt station = ('kcrs', 0.0014202) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc349.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz146.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz146.txt @@ -60112,6 +63450,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz147.txt station = ('klxy', 0.0055496) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc161.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz147.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz147.txt @@ -60130,6 +63469,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz148.txt station = ('kpsn', 0.0009918) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz148.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz148.txt @@ -60148,6 +63488,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz149.txt station = ('kjso', 0.0009539) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz149.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz149.txt @@ -60166,6 +63507,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz150.txt station = ('krfi', 0.0014553) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc401.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz150.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz150.txt @@ -60184,6 +63526,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz151.txt station = ('kf17', 0.0061815) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc365.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz151.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz151.txt @@ -60202,6 +63545,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz152.txt station = ('koch', 0.0016042) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc347.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz152.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz152.txt @@ -60220,6 +63564,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz153.txt station = ('kf17', 0.0007048) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc419.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz153.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz153.txt @@ -60238,6 +63583,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz154.txt station = ('kbbd', 0.0004928) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc307.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz154.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz154.txt @@ -60256,6 +63602,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz155.txt station = ('k81r', 0.0020507) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc411.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz155.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz155.txt @@ -60274,6 +63621,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz156.txt station = ('klzz', 0.0017133) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc281.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz156.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz156.txt @@ -60292,6 +63640,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz157.txt station = ('kgop', 0.0005284) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz157.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz157.txt @@ -60310,6 +63659,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz158.txt station = ('ktpl', 0.0022820) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz158.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz158.txt @@ -60328,6 +63678,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz159.txt station = ('kact', 0.0008597) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc309.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz159.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz159.txt @@ -60346,6 +63697,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz160.txt station = ('kt35', 0.0065471) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc145.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz160.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz160.txt @@ -60364,6 +63716,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz161.txt station = ('klxy', 0.0019146) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc293.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz161.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz161.txt @@ -60382,6 +63735,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz162.txt station = ('kdkr', 0.0088316) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc289.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz162.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz162.txt @@ -60400,6 +63754,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz163.txt station = ('kdkr', 0.0003419) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc225.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz163.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz163.txt @@ -60418,6 +63773,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz164.txt station = ('kdkr', 0.0055243) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc455.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz164.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz164.txt @@ -60436,6 +63792,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz165.txt station = ('klfk', 0.0020960) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz165.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz165.txt @@ -60454,6 +63811,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz166.txt station = ('kf17', 0.0076361) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc405.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz166.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz166.txt @@ -60472,6 +63830,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz167.txt station = ('kbkb', 0.0069433) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc403.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz167.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz167.txt @@ -60490,6 +63849,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz168.txt station = ('kjct', 0.0065625) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc327.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz168.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz168.txt @@ -60508,6 +63868,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz169.txt station = ('kjct', 0.0005871) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc267.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz169.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz169.txt @@ -60526,6 +63887,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz170.txt station = ('kbbd', 0.0081860) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc319.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz170.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz170.txt @@ -60544,6 +63906,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz171.txt station = ('kaqo', 0.0014012) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc299.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz171.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz171.txt @@ -60562,6 +63925,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz172.txt station = ('kbmq', 0.0012263) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz172.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz172.txt @@ -60580,6 +63944,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz173.txt station = ('kgtu', 0.0013832) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc491.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz173.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz173.txt @@ -60598,6 +63963,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz174.txt station = ('kt35', 0.0016272) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc331.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz174.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz174.txt @@ -60616,6 +63982,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz175.txt station = ('klhb', 0.0031674) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc395.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz175.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz175.txt @@ -60634,6 +64001,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz176.txt station = ('kuts', 0.0063944) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc313.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz176.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz176.txt @@ -60652,6 +64020,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz177.txt station = ('kuts', 0.0002545) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc471.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz177.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz177.txt @@ -60670,6 +64039,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz178.txt station = ('kcxo', 0.0054933) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc407.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz178.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz178.txt @@ -60688,6 +64058,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz179.txt station = ('klfk', 0.0077813) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc373.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz179.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz179.txt @@ -60706,6 +64077,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz180.txt station = ('kbpt', 0.0049066) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc457.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz180.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz180.txt @@ -60724,6 +64096,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz183.txt station = ('kdrt', 0.0098540) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc465.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz183.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz183.txt @@ -60742,6 +64115,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz184.txt station = ('kecu', 0.0020790) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz184.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz184.txt @@ -60760,6 +64134,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz185.txt station = ('kecu', 0.0056843) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc385.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz185.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz185.txt @@ -60778,6 +64153,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz186.txt station = ('kerv', 0.0043581) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc265.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz186.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz186.txt @@ -60796,6 +64172,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz187.txt station = ('kerv', 0.0045560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz187.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz187.txt @@ -60814,6 +64191,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz188.txt station = ('kt82', 0.0014144) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc171.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz188.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz188.txt @@ -60832,6 +64210,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz189.txt station = ('kerv', 0.0056343) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc259.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz189.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz189.txt @@ -60850,6 +64229,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz190.txt station = ('kdzb', 0.0045919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz190.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz190.txt @@ -60868,6 +64248,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz191.txt station = ('khyi', 0.0038183) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc209.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz191.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz191.txt @@ -60886,6 +64267,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz192.txt station = ('katt', 0.0003895) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc453.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz192.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz192.txt @@ -60904,6 +64286,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz193.txt station = ('kgyb', 0.0051417) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz193.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz193.txt @@ -60922,6 +64305,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz194.txt station = ('kgyb', 0.0024796) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc287.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz194.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz194.txt @@ -60940,6 +64324,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz195.txt station = ('krwv', 0.0013088) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz195.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz195.txt @@ -60958,6 +64343,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz196.txt station = ('kcfd', 0.0010483) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz196.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz196.txt @@ -60976,6 +64362,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz197.txt station = ('k11r', 0.0004505) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc477.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz197.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz197.txt @@ -60994,6 +64381,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz198.txt station = ('k60r', 0.0035605) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc185.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz198.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz198.txt @@ -61012,6 +64400,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz199.txt station = ('kcxo', 0.0015643) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc339.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz199.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz199.txt @@ -61030,6 +64419,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz200.txt station = ('kt78', 0.0036804) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc291.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz200.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz200.txt @@ -61048,6 +64438,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz201.txt station = ('kbmt', 0.0052731) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc199.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz201.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz201.txt @@ -61066,6 +64457,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz202.txt station = ('kdlf', 0.0041428) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc271.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz202.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz202.txt @@ -61084,6 +64476,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz203.txt station = ('kuva', 0.0025676) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc463.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz203.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz203.txt @@ -61102,6 +64495,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz204.txt station = ('khdo', 0.0008815) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc325.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz204.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz204.txt @@ -61120,6 +64514,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz205.txt station = ('kskf', 0.0014992) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz205.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz205.txt @@ -61138,6 +64533,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz206.txt station = ('kbaz', 0.0038087) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz206.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz206.txt @@ -61156,6 +64552,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz207.txt station = ('kseq', 0.0007684) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc187.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz207.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz207.txt @@ -61174,6 +64571,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz208.txt station = ('khyi', 0.0038326) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz208.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz208.txt @@ -61192,6 +64590,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz209.txt station = ('k3t5', 0.0007116) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc149.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz209.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz209.txt @@ -61210,6 +64609,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz210.txt station = ('k66r', 0.0003880) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz210.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz210.txt @@ -61228,6 +64628,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz211.txt station = ('kela', 0.0050427) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz211.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz211.txt @@ -61246,6 +64647,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz212.txt station = ('ktme', 0.0038092) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc473.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz212.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz212.txt @@ -61264,6 +64666,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz213.txt station = ('kiah', 0.0024753) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc201.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz213.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz213.txt @@ -61282,6 +64685,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz214.txt station = ('kt78', 0.0060734) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz214.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz214.txt @@ -61300,6 +64704,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz217.txt station = ('mmpg', 0.0031824) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc323.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz217.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz217.txt @@ -61318,6 +64723,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz218.txt station = ('kuva', 0.0060256) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc507.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz218.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz218.txt @@ -61336,6 +64742,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz219.txt station = ('kcot', 0.0074785) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc163.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz219.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz219.txt @@ -61354,6 +64761,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz220.txt station = ('kpez', 0.0011149) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz220.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz220.txt @@ -61372,6 +64780,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz221.txt station = ('kssf', 0.0064201) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc493.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz221.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz221.txt @@ -61390,6 +64799,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz222.txt station = ('k2r9', 0.0014115) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc255.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz222.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz222.txt @@ -61408,6 +64818,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz223.txt station = ('kseq', 0.0065057) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc177.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz223.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz223.txt @@ -61426,6 +64837,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz224.txt station = ('kvct', 0.0074796) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz224.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz224.txt @@ -61444,6 +64856,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz225.txt station = ('k66r', 0.0077265) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc285.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz225.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz225.txt @@ -61462,6 +64875,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz226.txt station = ('karm', 0.0011142) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc481.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz226.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz226.txt @@ -61480,6 +64894,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz227.txt station = ('ksgr', 0.0024051) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc157.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz227.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz227.txt @@ -61498,6 +64913,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz228.txt station = ('kczt', 0.0020203) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz228.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz228.txt @@ -61516,6 +64932,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz229.txt station = ('kcot', 0.0025646) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc283.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz229.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz229.txt @@ -61534,6 +64951,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz230.txt station = ('k8t6', 0.0069311) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc311.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz230.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz230.txt @@ -61552,6 +64970,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz231.txt station = ('k8t6', 0.0002363) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc297.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz231.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz231.txt @@ -61570,6 +64989,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz232.txt station = ('kbea', 0.0012341) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz232.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz232.txt @@ -61588,6 +65008,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz233.txt station = ('k2r9', 0.0073320) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc175.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz233.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz233.txt @@ -61606,6 +65027,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz234.txt station = ('kvct', 0.0013575) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc469.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz234.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz234.txt @@ -61624,6 +65046,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz235.txt station = ('kvct', 0.0055660) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc239.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz235.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz235.txt @@ -61642,6 +65065,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz236.txt station = ('kbyy', 0.0024121) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc321.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz236.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz236.txt @@ -61660,6 +65084,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz237.txt station = ('klbx', 0.0027501) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz237.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz237.txt @@ -61678,6 +65103,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz238.txt station = ('klvj', 0.0024537) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz238.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz238.txt @@ -61696,6 +65122,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz239.txt station = ('klrd', 0.0042936) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc479.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz239.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz239.txt @@ -61714,6 +65141,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz240.txt station = ('knqi', 0.0036144) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz240.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz240.txt @@ -61732,6 +65160,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz241.txt station = ('kali', 0.0011367) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc249.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz241.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz241.txt @@ -61750,6 +65179,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz242.txt station = ('kikg', 0.0034831) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc273.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz242.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz242.txt @@ -61768,6 +65198,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz243.txt station = ('krbo', 0.0008029) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc355.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz243.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz243.txt @@ -61786,6 +65217,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz244.txt station = ('krbo', 0.0046266) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc409.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz244.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz244.txt @@ -61804,6 +65236,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz245.txt station = ('krkp', 0.0014311) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz245.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz245.txt @@ -61822,6 +65255,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz246.txt station = ('krkp', 0.0051071) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc391.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz246.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz246.txt @@ -61840,6 +65274,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz247.txt station = ('kpkv', 0.0022727) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz247.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz247.txt @@ -61858,6 +65293,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz248.txt station = ('kapy', 0.0013681) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc505.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz248.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz248.txt @@ -61876,6 +65312,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz249.txt station = ('khbv', 0.0050911) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc247.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz249.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz249.txt @@ -61894,6 +65331,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz250.txt station = ('kbks', 0.0034109) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz250.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz250.txt @@ -61912,6 +65350,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz251.txt station = ('kbks', 0.0072916) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc261.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz251.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz251.txt @@ -61930,6 +65369,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz252.txt station = ('kebg', 0.0097399) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc427.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz252.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz252.txt @@ -61948,6 +65388,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz253.txt station = ('kmfe', 0.0019763) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc215.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz253.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz253.txt @@ -61966,6 +65407,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz254.txt station = ('khrl', 0.0044909) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc489.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz254.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz254.txt @@ -61984,6 +65426,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz255.txt station = ('khrl', 0.0020152) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz255.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz255.txt @@ -62002,6 +65445,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz259.txt station = ('kjas', 0.0003746) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc241.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz259.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz259.txt @@ -62020,6 +65464,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz260.txt station = ('kbkb', 0.0025809) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc351.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz260.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz260.txt @@ -62038,6 +65483,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz261.txt station = ('kbpt', 0.0040572) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc241.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz261.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz261.txt @@ -62056,6 +65502,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz262.txt station = ('k5r8', 0.0051495) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc351.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz262.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz262.txt @@ -62074,6 +65521,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz270.txt station = ('kcnm', 0.0108672) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz270.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz270.txt @@ -62092,6 +65540,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz271.txt station = ('kvhn', 0.0118933) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz271.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz271.txt @@ -62110,6 +65559,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz272.txt station = ('kvhn', 0.0028129) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz272.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz272.txt @@ -62128,6 +65578,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz273.txt station = ('kcnm', 0.0119136) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz273.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz273.txt @@ -62146,6 +65597,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz274.txt station = ('kpeq', 0.0026670) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc389.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz274.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz274.txt @@ -62164,6 +65616,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz275.txt station = ('kmrf', 0.0074445) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc377.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz275.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz275.txt @@ -62182,6 +65635,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz276.txt station = ('kmrf', 0.0047709) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc377.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz276.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz276.txt @@ -62200,6 +65654,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz277.txt station = ('kmrf', 0.0028472) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc377.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz277.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz277.txt @@ -62218,6 +65673,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz278.txt station = ('ke38', 0.0066367) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc389.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz278.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz278.txt @@ -62236,6 +65692,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz279.txt station = ('ke38', 0.0110452) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz279.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz279.txt @@ -62254,6 +65711,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz280.txt station = ('kprs', 0.0176182) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz280.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz280.txt @@ -62272,6 +65730,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz281.txt station = ('kprs', 0.0043256) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc377.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz281.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz281.txt @@ -62290,6 +65749,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz282.txt station = ('k6r6', 0.0152472) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz282.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz282.txt @@ -62308,6 +65768,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz300.txt station = ('kt78', 0.0019042) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc291.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz300.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz300.txt @@ -62326,6 +65787,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz313.txt station = ('kt41', 0.0010324) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc201.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz313.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz313.txt @@ -62344,6 +65806,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz317.txt station = ('kama', 0.0047981) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc381.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz317.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz317.txt @@ -62362,6 +65825,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz335.txt station = ('kpkv', 0.0036781) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc239.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz335.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz335.txt @@ -62380,6 +65844,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz336.txt station = ('kbyy', 0.0037250) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc321.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz336.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz336.txt @@ -62398,6 +65863,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz337.txt station = ('klbx', 0.0018075) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz337.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz337.txt @@ -62416,6 +65882,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz338.txt station = ('kgls', 0.0029711) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz338.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz338.txt @@ -62434,6 +65901,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz342.txt station = ('kngp', 0.0051845) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc273.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz342.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz342.txt @@ -62452,6 +65920,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz343.txt station = ('kngp', 0.0019983) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc355.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz343.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz343.txt @@ -62470,6 +65939,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz344.txt station = ('kras', 0.0035556) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc409.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz344.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz344.txt @@ -62488,6 +65958,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz345.txt station = ('krkp', 0.0021869) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz345.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz345.txt @@ -62506,6 +65977,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz346.txt station = ('krkp', 0.0034360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc391.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz346.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz346.txt @@ -62524,6 +65996,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz347.txt station = ('kpkv', 0.0028977) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz347.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz347.txt @@ -62542,6 +66015,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz351.txt station = ('kbks', 0.0106623) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc261.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz351.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz351.txt @@ -62560,6 +66034,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz353.txt station = ('kebg', 0.0031136) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc215.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz353.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz353.txt @@ -62578,6 +66053,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz354.txt station = ('khrl', 0.0055130) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc489.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz354.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz354.txt @@ -62596,6 +66072,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz355.txt station = ('kpil', 0.0001232) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz355.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz355.txt @@ -62614,6 +66091,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz418.txt station = ('kdna', 0.0022407) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc141.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz418.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz418.txt @@ -62632,6 +66110,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz419.txt station = ('kbif', 0.0014902) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc141.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz419.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz419.txt @@ -62650,6 +66129,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz420.txt station = ('kbif', 0.0091883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz420.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz420.txt @@ -62668,6 +66148,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz421.txt station = ('kvhn', 0.0135420) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz421.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz421.txt @@ -62686,6 +66167,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz422.txt station = ('kvhn', 0.0065164) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz422.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz422.txt @@ -62704,6 +66186,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz423.txt station = ('mmcs', 0.0093456) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz423.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz423.txt @@ -62722,6 +66205,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz424.txt station = ('kvhn', 0.0079001) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc229.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz424.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz424.txt @@ -62740,6 +66224,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz436.txt station = ('kpsx', 0.0046150) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc321.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz436.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz436.txt @@ -62758,6 +66243,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz437.txt station = ('klbx', 0.0036391) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz437.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz437.txt @@ -62776,6 +66262,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz438.txt station = ('kgls', 0.0005939) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz438.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz438.txt @@ -62794,6 +66281,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz439.txt station = ('kgls', 0.0059339) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc167.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz439.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz439.txt @@ -62812,6 +66300,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz442.txt station = ('kngp', 0.0044982) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc273.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz442.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz442.txt @@ -62830,6 +66319,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz443.txt station = ('kngp', 0.0018764) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc355.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz443.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz443.txt @@ -62848,6 +66338,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz447.txt station = ('krkp', 0.0068428) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz447.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz447.txt @@ -62866,6 +66357,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz451.txt station = ('khrl', 0.0127714) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc261.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz451.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz451.txt @@ -62884,6 +66376,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz454.txt station = ('kpil', 0.0062798) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc489.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz454.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz454.txt @@ -62902,6 +66395,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz455.txt station = ('kpil', 0.0024804) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz455.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz455.txt @@ -62920,6 +66414,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz515.txt station = ('kbmt', 0.0012889) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc245.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz515.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz515.txt @@ -62938,6 +66433,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz516.txt station = ('korg', 0.0025210) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc361.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz516.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz516.txt @@ -62956,6 +66452,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz615.txt station = ('kbmt', 0.0045339) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc245.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz615.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz615.txt @@ -62974,6 +66471,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/tx/txz616.txt station = ('korg', 0.0012205) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/tx/txc361.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/tx/txz616.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/tx/txz616.txt @@ -62992,6 +66490,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz022.txt station = ('kbdg', 0.0059006) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz022.txt @@ -63010,6 +66509,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz023.txt station = ('k40u', 0.0044493) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz023.txt @@ -63028,6 +66528,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz024.txt station = ('kvel', 0.0038406) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz024.txt @@ -63046,6 +66547,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz025.txt station = ('kcny', 0.0127747) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc047.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz025.txt @@ -63064,6 +66566,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz027.txt station = ('kcny', 0.0030460) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc019.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz027.txt @@ -63082,6 +66585,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz028.txt station = ('kbdg', 0.0082083) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz028.txt @@ -63100,6 +66604,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz029.txt station = ('kbdg', 0.0085450) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz029.txt @@ -63118,6 +66623,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz101.txt station = ('kdpg', 0.0138959) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz101.txt @@ -63136,6 +66642,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz102.txt station = ('ktvy', 0.0042656) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz102.txt @@ -63154,6 +66661,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz103.txt station = ('kbmc', 0.0043670) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc003.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz103.txt @@ -63172,6 +66680,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz104.txt station = ('khif', 0.0025177) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz104.txt @@ -63190,6 +66699,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz105.txt station = ('ku42', 0.0010204) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz105.txt @@ -63208,6 +66718,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz106.txt station = ('kpvu', 0.0026563) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc049.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz106.txt @@ -63226,6 +66737,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz107.txt station = ('klgu', 0.0008911) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc005.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz107.txt @@ -63244,6 +66756,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz108.txt station = ('khcr', 0.0059423) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz108.txt @@ -63262,6 +66775,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz109.txt station = ('kevw', 0.0074986) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz109.txt @@ -63280,6 +66794,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz110.txt station = ('kbmc', 0.0071732) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc057.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz110.txt @@ -63298,6 +66813,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz111.txt station = ('kpvu', 0.0015708) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc051.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz111.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz111.txt @@ -63316,6 +66832,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz112.txt station = ('ku69', 0.0099090) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc051.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz112.txt @@ -63334,6 +66851,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz113.txt station = ('kpuc', 0.0033315) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc051.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz113.txt @@ -63352,6 +66870,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz114.txt station = ('ku69', 0.0012950) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz114.txt @@ -63370,6 +66889,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz115.txt station = ('kdta', 0.0091782) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz115.txt @@ -63388,6 +66908,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz116.txt station = ('kdta', 0.0046936) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz116.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz116.txt @@ -63406,6 +66927,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz117.txt station = ('k41u', 0.0060874) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz117.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz117.txt @@ -63424,6 +66946,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz118.txt station = ('k41u', 0.0010217) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc039.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz118.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz118.txt @@ -63442,6 +66965,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz119.txt station = ('kfom', 0.0054067) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz119.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz119.txt @@ -63460,6 +66984,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz120.txt station = ('kpuc', 0.0055557) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz120.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz120.txt @@ -63478,6 +67003,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz121.txt station = ('khve', 0.0079567) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz121.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz121.txt @@ -63496,6 +67022,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz122.txt station = ('kmlf', 0.0080652) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz122.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz122.txt @@ -63514,6 +67041,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz123.txt station = ('ksgu', 0.0015506) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz123.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz123.txt @@ -63532,6 +67060,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz124.txt station = ('kazc', 0.0058781) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz124.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz124.txt @@ -63550,6 +67079,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz125.txt station = ('kbce', 0.0052468) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz125.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz125.txt @@ -63568,6 +67098,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz126.txt station = ('ku52', 0.0066777) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz126.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz126.txt @@ -63586,6 +67117,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz127.txt station = ('kbce', 0.0006658) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz127.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz127.txt @@ -63604,6 +67136,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz128.txt station = ('kbce', 0.0073332) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc053.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz128.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz128.txt @@ -63622,6 +67155,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz129.txt station = ('khve', 0.0083905) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz129.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz129.txt @@ -63640,6 +67174,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz130.txt station = ('khve', 0.0046632) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc055.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz130.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz130.txt @@ -63658,6 +67193,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/ut/utz131.txt station = ('kpga', 0.0118406) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/ut/utc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/ut/utz131.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/ut/utz131.txt @@ -63676,6 +67212,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz001.txt station = ('k0vg', 0.0015405) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz001.txt @@ -63694,6 +67231,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz002.txt station = ('klnp', 0.0012361) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac720.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz002.txt @@ -63712,6 +67250,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz003.txt station = ('klnp', 0.0035612) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz003.txt @@ -63730,6 +67269,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz004.txt station = ('kjfz', 0.0048446) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz004.txt @@ -63748,6 +67288,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz005.txt station = ('klnp', 0.0047970) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac169.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz005.txt @@ -63766,6 +67307,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz006.txt station = ('kvji', 0.0044572) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac167.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz006.txt @@ -63784,6 +67326,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz007.txt station = ('kjfz', 0.0034778) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac185.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz007.txt @@ -63802,6 +67345,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz008.txt station = ('kvji', 0.0011805) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac520.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz008.txt @@ -63820,6 +67364,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz009.txt station = ('kmkj', 0.0027885) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac173.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz009.txt @@ -63838,6 +67383,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz010.txt station = ('kblf', 0.0030554) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz010.txt @@ -63856,6 +67402,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz011.txt station = ('kpsk', 0.0031676) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz011.txt @@ -63874,6 +67421,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz012.txt station = ('khlx', 0.0045032) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac197.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz012.txt @@ -63892,6 +67440,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz013.txt station = ('kpsk', 0.0012408) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac750.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz013.txt @@ -63910,6 +67459,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz014.txt station = ('kbcb', 0.0008519) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac121.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz014.txt @@ -63928,6 +67478,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz015.txt station = ('kmkj', 0.0045935) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz015.txt @@ -63946,6 +67497,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz016.txt station = ('khlx', 0.0012814) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac640.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz016.txt @@ -63964,6 +67516,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz017.txt station = ('kbcb', 0.0050337) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz017.txt @@ -63982,6 +67535,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz018.txt station = ('kroa', 0.0044560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz018.txt @@ -64000,6 +67554,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz019.txt station = ('khsp', 0.0037080) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac580.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz019.txt @@ -64018,6 +67573,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz020.txt station = ('khsp', 0.0022822) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz020.txt @@ -64036,6 +67592,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz022.txt station = ('kroa', 0.0014241) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac775.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz022.txt @@ -64054,6 +67611,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz023.txt station = ('kroa', 0.0047102) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz023.txt @@ -64072,6 +67630,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz024.txt station = ('khsp', 0.0058364) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac678.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz024.txt @@ -64090,6 +67649,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz025.txt station = ('kw13', 0.0029455) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac820.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz025.txt @@ -64108,6 +67668,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz026.txt station = ('kvbw', 0.0027650) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac660.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz026.txt @@ -64126,6 +67687,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz027.txt station = ('klua', 0.0034730) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac171.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz027.txt @@ -64144,6 +67706,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz028.txt station = ('kokv', 0.0017675) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac840.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz028.txt @@ -64162,6 +67725,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz029.txt station = ('klua', 0.0008523) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac139.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz029.txt @@ -64180,6 +67744,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz030.txt station = ('kfrr', 0.0006473) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac187.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz030.txt @@ -64198,6 +67763,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz031.txt station = ('kokv', 0.0021791) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz031.txt @@ -64216,6 +67782,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz032.txt station = ('kmtv', 0.0038290) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac141.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz032.txt @@ -64234,6 +67801,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz033.txt station = ('kroa', 0.0057904) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz033.txt @@ -64252,6 +67820,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz034.txt station = ('klyh', 0.0045002) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz034.txt @@ -64270,6 +67839,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz035.txt station = ('klyh', 0.0050861) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz035.txt @@ -64288,6 +67858,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz036.txt station = ('kw13', 0.0051148) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac125.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz036.txt @@ -64306,6 +67877,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz037.txt station = ('kcho', 0.0024088) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac540.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz037.txt @@ -64324,6 +67896,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz038.txt station = ('kcho', 0.0028781) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz038.txt @@ -64342,6 +67915,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz039.txt station = ('komh', 0.0043215) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac113.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz039.txt @@ -64360,6 +67934,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz040.txt station = ('kfrr', 0.0042637) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac157.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz040.txt @@ -64378,6 +67953,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz043.txt station = ('kmtv', 0.0021812) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac690.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz043.txt @@ -64396,6 +67972,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz044.txt station = ('kdan', 0.0043600) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac590.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz044.txt @@ -64414,6 +67991,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz045.txt station = ('klyh', 0.0021012) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac680.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz045.txt @@ -64432,6 +68010,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz046.txt station = ('kfvx', 0.0052686) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz046.txt @@ -64450,6 +68029,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz047.txt station = ('kfvx', 0.0040970) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz047.txt @@ -64468,6 +68048,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz048.txt station = ('klku', 0.0051437) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz048.txt @@ -64486,6 +68067,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz050.txt station = ('komh', 0.0004410) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac137.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz050.txt @@ -64504,6 +68086,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz051.txt station = ('kcjr', 0.0015023) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz051.txt @@ -64522,6 +68105,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz053.txt station = ('kdaa', 0.0024969) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac600.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz053.txt @@ -64540,6 +68124,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz054.txt station = ('kdca', 0.0009012) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac610.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz054.txt @@ -64558,6 +68143,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz055.txt station = ('krmn', 0.0004115) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac179.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz055.txt @@ -64576,6 +68162,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz056.txt station = ('kezf', 0.0030958) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac630.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz056.txt @@ -64594,6 +68181,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz057.txt station = ('kezf', 0.0040136) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz057.txt @@ -64612,6 +68200,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz058.txt station = ('kcxe', 0.0060938) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz058.txt @@ -64630,6 +68219,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz059.txt station = ('kcxe', 0.0044918) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz059.txt @@ -64648,6 +68238,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz060.txt station = ('kfvx', 0.0021965) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac147.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz060.txt @@ -64666,6 +68257,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz061.txt station = ('kfvx', 0.0038480) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz061.txt @@ -64684,6 +68276,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz062.txt station = ('k7w4', 0.0048609) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz062.txt @@ -64702,6 +68295,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz064.txt station = ('kezf', 0.0044099) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz064.txt @@ -64720,6 +68314,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz065.txt station = ('kcxe', 0.0027058) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac117.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz065.txt @@ -64738,6 +68333,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz066.txt station = ('kw31', 0.0008131) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac111.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz066.txt @@ -64756,6 +68352,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz067.txt station = ('kbkt', 0.0017527) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac135.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz067.txt @@ -64774,6 +68371,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz068.txt station = ('kbkt', 0.0044248) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz068.txt @@ -64792,6 +68390,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz069.txt station = ('kfci', 0.0059581) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac145.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz069.txt @@ -64810,6 +68409,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz075.txt station = ('k2w6', 0.0039375) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac193.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz075.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz075.txt @@ -64828,6 +68428,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz076.txt station = ('kxsa', 0.0027465) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac159.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz076.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz076.txt @@ -64846,6 +68447,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz077.txt station = ('knui', 0.0046032) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac133.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz077.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz077.txt @@ -64864,6 +68466,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz078.txt station = ('kw75', 0.0023645) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz078.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz078.txt @@ -64882,6 +68485,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz079.txt station = ('klvl', 0.0009257) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz079.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz079.txt @@ -64900,6 +68504,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz080.txt station = ('kptb', 0.0024708) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz080.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz080.txt @@ -64918,6 +68523,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz081.txt station = ('kptb', 0.0038648) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac730.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz081.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz081.txt @@ -64936,6 +68542,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz082.txt station = ('kw96', 0.0027106) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac036.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz082.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz082.txt @@ -64954,6 +68561,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz083.txt station = ('kw96', 0.0017768) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac127.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz083.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz083.txt @@ -64972,6 +68580,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz084.txt station = ('kw75', 0.0033604) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz084.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz084.txt @@ -64990,6 +68599,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz085.txt station = ('kw75', 0.0018893) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac119.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz085.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz085.txt @@ -65008,6 +68618,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz086.txt station = ('kw75', 0.0029145) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac115.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz086.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz086.txt @@ -65026,6 +68637,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz087.txt station = ('kemv', 0.0010829) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac595.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz087.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz087.txt @@ -65044,6 +68656,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz088.txt station = ('kakq', 0.0038061) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac183.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz088.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz088.txt @@ -65062,6 +68675,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz089.txt station = ('kakq', 0.0028027) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac181.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz089.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz089.txt @@ -65080,6 +68694,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz090.txt station = ('kfyj', 0.0034012) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac830.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz090.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz090.txt @@ -65098,6 +68713,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz092.txt station = ('kfkn', 0.0028726) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac620.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz092.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz092.txt @@ -65116,6 +68732,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz093.txt station = ('kfaf', 0.0041599) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz093.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz093.txt @@ -65134,6 +68751,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz095.txt station = ('kngu', 0.0009288) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac740.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz095.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz095.txt @@ -65152,6 +68770,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz096.txt station = ('kpvg', 0.0020075) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac800.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz096.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz096.txt @@ -65170,6 +68789,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz097.txt station = ('kcpk', 0.0003321) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac550.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz097.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz097.txt @@ -65188,6 +68808,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz098.txt station = ('kntu', 0.0012201) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac810.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz098.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz098.txt @@ -65206,6 +68827,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz099.txt station = ('kmfv', 0.0026102) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz099.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz099.txt @@ -65224,6 +68846,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz100.txt station = ('kmfv', 0.0054411) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac131.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz100.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz100.txt @@ -65242,6 +68865,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz501.txt station = ('khwy', 0.0052418) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz501.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz501.txt @@ -65260,6 +68884,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz502.txt station = ('khwy', 0.0001702) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz502.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz502.txt @@ -65278,6 +68903,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz503.txt station = ('kekn', 0.0083907) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz503.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz503.txt @@ -65296,6 +68922,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz504.txt station = ('khsp', 0.0079045) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz504.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz504.txt @@ -65314,6 +68941,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz505.txt station = ('kjyo', 0.0019634) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz505.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz505.txt @@ -65332,6 +68960,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz506.txt station = ('kjyo', 0.0015324) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz506.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz506.txt @@ -65350,6 +68979,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz507.txt station = ('klua', 0.0026134) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac187.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz507.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz507.txt @@ -65368,6 +68998,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz508.txt station = ('kw13', 0.0015363) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac163.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz508.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz508.txt @@ -65386,6 +69017,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz509.txt station = ('kgve', 0.0021714) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz509.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz509.txt @@ -65404,6 +69036,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz510.txt station = ('k7w4', 0.0016788) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz510.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz510.txt @@ -65422,6 +69055,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz511.txt station = ('kofp', 0.0028009) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz511.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz511.txt @@ -65440,6 +69074,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz512.txt station = ('kric', 0.0010080) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz512.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz512.txt @@ -65458,6 +69093,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz513.txt station = ('kfci', 0.0009655) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz513.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz513.txt @@ -65476,6 +69112,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz514.txt station = ('kfci', 0.0009655) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac570.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz514.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz514.txt @@ -65494,6 +69131,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz515.txt station = ('kfci', 0.0022507) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac760.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz515.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz515.txt @@ -65512,6 +69150,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz516.txt station = ('kric', 0.0014704) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz516.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz516.txt @@ -65530,6 +69169,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz517.txt station = ('kw96', 0.0035886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz517.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz517.txt @@ -65548,6 +69188,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz518.txt station = ('kw96', 0.0035886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz518.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz518.txt @@ -65566,6 +69207,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz519.txt station = ('kxsa', 0.0024731) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz519.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz519.txt @@ -65584,6 +69226,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz520.txt station = ('kxsa', 0.0024731) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz520.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz520.txt @@ -65602,6 +69245,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz521.txt station = ('kxsa', 0.0013439) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz521.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz521.txt @@ -65620,6 +69264,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz522.txt station = ('kxsa', 0.0016523) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz522.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz522.txt @@ -65638,6 +69283,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz523.txt station = ('kphf', 0.0016730) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac735.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz523.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz523.txt @@ -65656,6 +69302,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz524.txt station = ('kphf', 0.0009865) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac700.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz524.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz524.txt @@ -65674,6 +69321,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz525.txt station = ('klfi', 0.0005753) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac650.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz525.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz525.txt @@ -65692,6 +69340,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz526.txt station = ('khef', 0.0028869) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac153.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz526.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz526.txt @@ -65710,6 +69359,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/va/vaz527.txt station = ('khef', 0.0012015) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/va/vac685.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/va/vaz527.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/va/vaz527.txt @@ -65728,6 +69378,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vi/viz001.txt station = ('tist', 0.0021095) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vi/vic030.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vi/viz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vi/viz001.txt @@ -65746,6 +69397,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vi/viz002.txt station = ('tisx', 0.0007913) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vi/vic010.txt +tz = America/Virgin urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vi/viz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vi/viz002.txt @@ -65764,6 +69416,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz001.txt station = ('kpbg', 0.0033327) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz001.txt @@ -65782,6 +69435,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz002.txt station = ('kfso', 0.0017343) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz002.txt @@ -65800,6 +69454,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz003.txt station = ('kefk', 0.0010627) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz003.txt @@ -65818,6 +69473,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz004.txt station = ('kcda', 0.0044640) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz004.txt @@ -65836,6 +69492,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz005.txt station = ('kbtv', 0.0002336) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz005.txt @@ -65854,6 +69511,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz006.txt station = ('kmvl', 0.0012999) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz006.txt @@ -65872,6 +69530,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz007.txt station = ('k1v4', 0.0013560) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz007.txt @@ -65890,6 +69549,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz008.txt station = ('kmpv', 0.0014160) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz008.txt @@ -65908,6 +69568,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz009.txt station = ('k6b0', 0.0019069) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz009.txt @@ -65926,6 +69587,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz010.txt station = ('kmpv', 0.0041435) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz010.txt @@ -65944,6 +69606,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz011.txt station = ('krut', 0.0025680) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz011.txt @@ -65962,6 +69625,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz013.txt station = ('kddh', 0.0033286) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz013.txt @@ -65980,6 +69644,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz014.txt station = ('kvsf', 0.0069864) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz014.txt @@ -65998,6 +69663,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz015.txt station = ('keen', 0.0039084) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz015.txt @@ -66016,6 +69682,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz016.txt station = ('cwfq', 0.0034734) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz016.txt @@ -66034,6 +69701,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz017.txt station = ('kbtv', 0.0028576) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz017.txt @@ -66052,6 +69720,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz018.txt station = ('k6b0', 0.0019214) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz018.txt @@ -66070,6 +69739,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz019.txt station = ('krut', 0.0011728) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz019.txt @@ -66088,6 +69758,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz020.txt station = ('krut', 0.0036883) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz020.txt @@ -66106,6 +69777,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/vt/vtz021.txt station = ('kleb', 0.0030478) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/vt/vtc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/vt/vtz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/vt/vtz021.txt @@ -66124,6 +69796,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz001.txt station = ('kfhr', 0.0013544) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac055.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz001.txt @@ -66142,6 +69815,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz024.txt station = ('kdls', 0.0040006) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac039.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz024.txt @@ -66160,6 +69834,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz026.txt station = ('keln', 0.0030513) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz026.txt @@ -66178,6 +69853,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz027.txt station = ('kykm', 0.0035363) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz027.txt @@ -66196,6 +69872,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz028.txt station = ('kpsc', 0.0014656) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz028.txt @@ -66214,6 +69891,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz029.txt station = ('kalw', 0.0037949) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz029.txt @@ -66232,6 +69910,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz030.txt station = ('kalw', 0.0057605) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac071.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz030.txt @@ -66250,6 +69929,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz031.txt station = ('klws', 0.0053915) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz031.txt @@ -66268,6 +69948,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz032.txt station = ('klws', 0.0044731) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac023.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz032.txt @@ -66286,6 +69967,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz033.txt station = ('kpuw', 0.0055911) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac075.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz033.txt @@ -66304,6 +69986,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz034.txt station = ('kmwh', 0.0039029) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac025.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz034.txt @@ -66322,6 +70005,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz035.txt station = ('keph', 0.0107505) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz035.txt @@ -66340,6 +70024,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz036.txt station = ('kska', 0.0004360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac063.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz036.txt @@ -66358,6 +70043,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz037.txt station = ('kdew', 0.0079915) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac065.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz037.txt @@ -66376,6 +70062,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz038.txt station = ('cwyy', 0.0121515) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz038.txt @@ -66394,6 +70081,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz041.txt station = ('keat', 0.0040158) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac017.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz041.txt @@ -66412,6 +70100,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz043.txt station = ('komk', 0.0021766) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz043.txt @@ -66430,6 +70119,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz044.txt station = ('keph', 0.0067071) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac025.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz044.txt @@ -66448,6 +70138,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz047.txt station = ('keat', 0.0080580) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac007.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz047.txt @@ -66466,6 +70157,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz048.txt station = ('ks52', 0.0108660) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac007.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz048.txt @@ -66484,6 +70176,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz049.txt station = ('ks52', 0.0030299) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac047.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz049.txt @@ -66502,6 +70195,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz201.txt station = ('kast', 0.0062485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac049.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz201.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz201.txt @@ -66520,6 +70214,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz202.txt station = ('kast', 0.0068781) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac069.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz202.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz202.txt @@ -66538,6 +70233,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz203.txt station = ('kast', 0.0076453) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac015.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz203.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz203.txt @@ -66556,6 +70252,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz204.txt station = ('kkls', 0.0012816) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac015.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz204.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz204.txt @@ -66574,6 +70271,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz205.txt station = ('kvuo', 0.0028791) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac011.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz205.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz205.txt @@ -66592,6 +70290,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz206.txt station = ('kvuo', 0.0008936) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac011.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz206.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz206.txt @@ -66610,6 +70309,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz207.txt station = ('kttd', 0.0009813) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac011.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz207.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz207.txt @@ -66628,6 +70328,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz208.txt station = ('kkls', 0.0044256) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac059.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz208.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz208.txt @@ -66646,6 +70347,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz209.txt station = ('k4s2', 0.0057607) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac059.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz209.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz209.txt @@ -66664,6 +70366,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz210.txt station = ('k4s2', 0.0022581) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac059.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz210.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz210.txt @@ -66682,6 +70385,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz211.txt station = ('k4s2', 0.0088562) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac011.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz211.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz211.txt @@ -66700,6 +70404,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz503.txt station = ('kbli', 0.0012121) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac073.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz503.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz503.txt @@ -66718,6 +70423,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz504.txt station = ('kcls', 0.0012773) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac067.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz504.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz504.txt @@ -66736,6 +70442,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz506.txt station = ('kbvs', 0.0006347) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac057.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz506.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz506.txt @@ -66754,6 +70461,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz507.txt station = ('kawo', 0.0022029) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac061.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz507.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz507.txt @@ -66772,6 +70480,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz509.txt station = ('ktcm', 0.0004316) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac053.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz509.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz509.txt @@ -66790,6 +70499,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz510.txt station = ('k0s9', 0.0022423) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz510.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz510.txt @@ -66808,6 +70518,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz511.txt station = ('kpwt', 0.0025590) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac045.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz511.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz511.txt @@ -66826,6 +70537,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz512.txt station = ('khqm', 0.0052710) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac045.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz512.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz512.txt @@ -66844,6 +70556,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz513.txt station = ('kclm', 0.0064605) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac045.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz513.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz513.txt @@ -66862,6 +70575,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz514.txt station = ('know', 0.0018992) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac009.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz514.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz514.txt @@ -66880,6 +70594,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz515.txt station = ('cwsp', 0.0043867) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac009.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz515.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz515.txt @@ -66898,6 +70613,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz516.txt station = ('kuil', 0.0018723) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac031.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz516.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz516.txt @@ -66916,6 +70632,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz517.txt station = ('khqm', 0.0040578) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac027.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz517.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz517.txt @@ -66934,6 +70651,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz521.txt station = ('kdls', 0.0088280) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz521.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz521.txt @@ -66952,6 +70670,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz522.txt station = ('ksmp', 0.0060807) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz522.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz522.txt @@ -66970,6 +70689,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz523.txt station = ('kykm', 0.0031233) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac077.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz523.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz523.txt @@ -66988,6 +70708,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz555.txt station = ('kawo', 0.0022029) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac061.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz555.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz555.txt @@ -67006,6 +70727,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz556.txt station = ('krnt', 0.0024886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac061.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz556.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz556.txt @@ -67024,6 +70746,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz558.txt station = ('kbfi', 0.0016495) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac033.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz558.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz558.txt @@ -67042,6 +70765,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz559.txt station = ('kpwt', 0.0025590) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac035.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz559.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz559.txt @@ -67060,6 +70784,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz567.txt station = ('kbli', 0.0012121) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac073.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz567.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz567.txt @@ -67078,6 +70803,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz568.txt station = ('kawo', 0.0022029) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac061.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz568.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz568.txt @@ -67096,6 +70822,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wa/waz569.txt station = ('krnt', 0.0024886) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wa/wac053.txt +tz = US/Pacific urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wa/waz569.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wa/waz569.txt @@ -67114,6 +70841,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz001.txt station = ('kolg', 0.0023468) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic031.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz001.txt @@ -67132,6 +70860,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz002.txt station = ('kasx', 0.0034387) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic007.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz002.txt @@ -67150,6 +70879,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz003.txt station = ('kasx', 0.0050086) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic003.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz003.txt @@ -67168,6 +70898,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz004.txt station = ('kiwd', 0.0049079) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic051.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz004.txt @@ -67186,6 +70917,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz005.txt station = ('karv', 0.0033729) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic125.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz005.txt @@ -67204,6 +70936,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz006.txt station = ('krzn', 0.0006993) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic013.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz006.txt @@ -67222,6 +70955,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz007.txt station = ('khyr', 0.0046189) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic129.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz007.txt @@ -67240,6 +70974,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz008.txt station = ('khyr', 0.0044064) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic113.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz008.txt @@ -67258,6 +70993,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz009.txt station = ('kpbh', 0.0005818) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic099.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz009.txt @@ -67276,6 +71012,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz010.txt station = ('krhi', 0.0013453) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic085.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz010.txt @@ -67294,6 +71031,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz011.txt station = ('kegv', 0.0076237) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic041.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz011.txt @@ -67312,6 +71050,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz012.txt station = ('kimt', 0.0034682) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic037.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz012.txt @@ -67330,6 +71069,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz013.txt station = ('kimt', 0.0046360) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz013.txt @@ -67348,6 +71088,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz014.txt station = ('koeo', 0.0040494) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic095.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz014.txt @@ -67366,6 +71107,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz015.txt station = ('krpd', 0.0009217) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic005.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz015.txt @@ -67384,6 +71126,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz016.txt station = ('krcx', 0.0016683) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic107.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz016.txt @@ -67402,6 +71145,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz017.txt station = ('kmdz', 0.0031052) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic119.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz017.txt @@ -67420,6 +71164,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz018.txt station = ('ktkv', 0.0024525) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic069.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz018.txt @@ -67438,6 +71183,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz019.txt station = ('kaig', 0.0019919) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic067.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz019.txt @@ -67456,6 +71202,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz020.txt station = ('kezs', 0.0042126) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic078.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz020.txt @@ -67474,6 +71221,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz021.txt station = ('kezs', 0.0073991) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz021.txt @@ -67492,6 +71240,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz022.txt station = ('ksue', 0.0020426) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic029.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz022.txt @@ -67510,6 +71259,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz023.txt station = ('krnh', 0.0022551) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic109.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz023.txt @@ -67528,6 +71278,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz024.txt station = ('krgk', 0.0023917) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic093.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz024.txt @@ -67546,6 +71297,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz025.txt station = ('klum', 0.0010128) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic033.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz025.txt @@ -67564,6 +71316,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz026.txt station = ('klum', 0.0056479) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic091.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz026.txt @@ -67582,6 +71335,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz027.txt station = ('keau', 0.0043394) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic017.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz027.txt @@ -67600,6 +71354,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz028.txt station = ('keau', 0.0034543) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic035.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz028.txt @@ -67618,6 +71373,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz029.txt station = ('kmdz', 0.0074471) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic019.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz029.txt @@ -67636,6 +71392,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz030.txt station = ('kauw', 0.0018624) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic073.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz030.txt @@ -67654,6 +71411,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz031.txt station = ('kcli', 0.0030890) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic115.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz031.txt @@ -67672,6 +71430,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz032.txt station = ('kona', 0.0052207) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic011.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz032.txt @@ -67690,6 +71449,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz033.txt station = ('kona', 0.0057529) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic121.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz033.txt @@ -67708,6 +71468,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz034.txt station = ('kbck', 0.0013479) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic053.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz034.txt @@ -67726,6 +71487,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz035.txt station = ('kisw', 0.0030225) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic141.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz035.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz035.txt @@ -67744,6 +71506,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz036.txt station = ('kste', 0.0012564) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic097.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz036.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz036.txt @@ -67762,6 +71525,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz037.txt station = ('kpcz', 0.0024690) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic135.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz037.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz037.txt @@ -67780,6 +71544,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz038.txt station = ('katw', 0.0029702) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic087.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz038.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz038.txt @@ -67798,6 +71563,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz039.txt station = ('kgrb', 0.0017014) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic009.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz039.txt @@ -67816,6 +71582,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz040.txt station = ('ksue', 0.0063280) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic061.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz040.txt @@ -67834,6 +71601,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz041.txt station = ('klse', 0.0017429) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic063.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz041.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz041.txt @@ -67852,6 +71620,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz042.txt station = ('kcmy', 0.0015223) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic081.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz042.txt @@ -67870,6 +71639,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz043.txt station = ('k82c', 0.0015269) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic057.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz043.txt @@ -67888,6 +71658,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz044.txt station = ('k82c', 0.0051508) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic001.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz044.txt @@ -67906,6 +71677,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz045.txt station = ('ky50', 0.0014704) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic137.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz045.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz045.txt @@ -67924,6 +71696,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz046.txt station = ('ky50', 0.0040486) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic077.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz046.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz046.txt @@ -67942,6 +71715,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz047.txt station = ('ky50', 0.0053239) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic047.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz047.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz047.txt @@ -67960,6 +71734,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz048.txt station = ('kosh', 0.0021432) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic139.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz048.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz048.txt @@ -67978,6 +71753,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz049.txt station = ('katw', 0.0047550) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic015.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz049.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz049.txt @@ -67996,6 +71772,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz050.txt station = ('kmtw', 0.0015994) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic071.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz050.txt @@ -68014,6 +71791,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz051.txt station = ('kfld', 0.0002362) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic039.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz051.txt @@ -68032,6 +71810,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz052.txt station = ('ksbm', 0.0016194) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic117.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz052.txt @@ -68050,6 +71829,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz053.txt station = ('ky51', 0.0008542) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic123.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz053.txt @@ -68068,6 +71848,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz054.txt station = ('kovs', 0.0035172) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic023.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz054.txt @@ -68086,6 +71867,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz055.txt station = ('klnr', 0.0041800) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic103.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz055.txt @@ -68104,6 +71886,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz056.txt station = ('kc35', 0.0017849) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic111.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz056.txt @@ -68122,6 +71905,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz057.txt station = ('kmsn', 0.0058185) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic021.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz057.txt @@ -68140,6 +71924,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz058.txt station = ('kunu', 0.0001868) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic027.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz058.txt @@ -68158,6 +71943,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz059.txt station = ('ketb', 0.0016063) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic131.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz059.txt @@ -68176,6 +71962,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz060.txt station = ('ketb', 0.0023371) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic089.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz060.txt @@ -68194,6 +71981,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz061.txt station = ('kpvb', 0.0045728) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic043.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz061.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz061.txt @@ -68212,6 +72000,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz062.txt station = ('kmrj', 0.0023592) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic049.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz062.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz062.txt @@ -68230,6 +72019,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz063.txt station = ('kmsn', 0.0014428) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic025.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz063.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz063.txt @@ -68248,6 +72038,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz064.txt station = ('kryv', 0.0026538) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic055.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz064.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz064.txt @@ -68266,6 +72057,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz065.txt station = ('kues', 0.0009509) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic133.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz065.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz065.txt @@ -68284,6 +72076,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz066.txt station = ('kmke', 0.0013109) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic079.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz066.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz066.txt @@ -68302,6 +72095,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz067.txt station = ('kmrj', 0.0041280) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic065.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz067.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz067.txt @@ -68320,6 +72114,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz068.txt station = ('keft', 0.0011438) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic045.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz068.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz068.txt @@ -68338,6 +72133,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz069.txt station = ('kjvl', 0.0010711) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic105.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz069.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz069.txt @@ -68356,6 +72152,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz070.txt station = ('k57c', 0.0031235) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic127.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz070.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz070.txt @@ -68374,6 +72171,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz071.txt station = ('kenw', 0.0030144) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic101.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz071.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz071.txt @@ -68392,6 +72190,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz072.txt station = ('kenw', 0.0014519) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic059.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz072.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz072.txt @@ -68410,6 +72209,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz073.txt station = ('kmnm', 0.0039799) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic075.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz073.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz073.txt @@ -68428,6 +72228,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wi/wiz074.txt station = ('kocq', 0.0028150) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wi/wic083.txt +tz = US/Central urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wi/wiz074.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wi/wiz074.txt @@ -68446,6 +72247,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz001.txt station = ('k2g2', 0.0032855) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc029.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz001.txt @@ -68464,6 +72266,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz002.txt station = ('khlg', 0.0021031) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc009.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz002.txt @@ -68482,6 +72285,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz003.txt station = ('khlg', 0.0012864) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc069.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz003.txt @@ -68500,6 +72304,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz004.txt station = ('khlg', 0.0053449) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc051.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz004.txt @@ -68518,6 +72323,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz005.txt station = ('khts', 0.0042025) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc099.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz005.txt @@ -68536,6 +72342,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz006.txt station = ('khts', 0.0043200) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc011.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz006.txt @@ -68554,6 +72361,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz007.txt station = ('kuni', 0.0081917) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc053.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz007.txt @@ -68572,6 +72380,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz008.txt station = ('kcrw', 0.0082270) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc035.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz008.txt @@ -68590,6 +72399,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz009.txt station = ('kpkb', 0.0023071) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc107.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz009.txt @@ -68608,6 +72418,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz010.txt station = ('kpkb', 0.0039604) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc073.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz010.txt @@ -68626,6 +72437,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz011.txt station = ('kckb', 0.0094649) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc095.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz011.txt @@ -68644,6 +72456,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz012.txt station = ('kckb', 0.0077976) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc103.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz012.txt @@ -68662,6 +72475,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz013.txt station = ('k6l4', 0.0059697) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc043.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz013.txt @@ -68680,6 +72494,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz014.txt station = ('kcrw', 0.0048971) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc079.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz014.txt @@ -68698,6 +72513,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz015.txt station = ('kcrw', 0.0011161) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc039.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz015.txt @@ -68716,6 +72532,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz016.txt station = ('kcrw', 0.0069682) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc087.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz016.txt @@ -68734,6 +72551,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz017.txt station = ('kpkb', 0.0055121) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc105.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz017.txt @@ -68752,6 +72570,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz018.txt station = ('k48i', 0.0069100) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc013.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz018.txt @@ -68770,6 +72589,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz019.txt station = ('kpkb', 0.0058898) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc085.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz019.txt @@ -68788,6 +72608,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz020.txt station = ('kckb', 0.0066457) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc017.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz020.txt @@ -68806,6 +72627,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz021.txt station = ('kckb', 0.0036829) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc049.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz021.txt @@ -68824,6 +72646,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz024.txt station = ('k6l4', 0.0037672) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc059.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz024.txt @@ -68842,6 +72665,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz025.txt station = ('k6l4', 0.0004983) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc045.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz025.txt @@ -68860,6 +72684,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz026.txt station = ('k6l4', 0.0040580) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc005.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz026.txt @@ -68878,6 +72703,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz027.txt station = ('k48i', 0.0069784) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc015.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz027.txt @@ -68896,6 +72722,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz028.txt station = ('k48i', 0.0009483) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc007.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz028.txt @@ -68914,6 +72741,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz029.txt station = ('k48i', 0.0049939) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc021.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz029.txt @@ -68932,6 +72760,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz030.txt station = ('kw22', 0.0031957) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc041.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz030.txt @@ -68950,6 +72779,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz031.txt station = ('kckb', 0.0022223) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc033.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz031.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz031.txt @@ -68968,6 +72798,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz032.txt station = ('kckb', 0.0023873) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc091.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz032.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz032.txt @@ -68986,6 +72817,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz033.txt station = ('ki16', 0.0040857) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc047.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz033.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz033.txt @@ -69004,6 +72836,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz034.txt station = ('ki16', 0.0002141) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc109.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz034.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz034.txt @@ -69022,6 +72855,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz039.txt station = ('kw22', 0.0018400) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc097.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz039.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz039.txt @@ -69040,6 +72874,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz040.txt station = ('kckb', 0.0041053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc001.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz040.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz040.txt @@ -69058,6 +72893,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz042.txt station = ('kblf', 0.0022139) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc055.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz042.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz042.txt @@ -69076,6 +72912,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz043.txt station = ('kbkw', 0.0043607) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc089.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz043.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz043.txt @@ -69094,6 +72931,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz044.txt station = ('klwb', 0.0057350) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc063.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz044.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz044.txt @@ -69112,6 +72950,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz050.txt station = ('kcbe', 0.0055666) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc027.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz050.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz050.txt @@ -69130,6 +72969,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz051.txt station = ('kmrb', 0.0046377) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc065.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz051.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz051.txt @@ -69148,6 +72988,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz052.txt station = ('kmrb', 0.0012673) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc003.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz052.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz052.txt @@ -69166,6 +73007,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz053.txt station = ('kmrb', 0.0022906) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc037.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz053.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz053.txt @@ -69184,6 +73026,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz055.txt station = ('kw99', 0.0037599) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc031.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz055.txt @@ -69202,6 +73045,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz501.txt station = ('kw99', 0.0046630) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz501.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz501.txt @@ -69220,6 +73064,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz502.txt station = ('kw99', 0.0013039) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc023.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz502.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz502.txt @@ -69238,6 +73083,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz503.txt station = ('k2g4', 0.0044993) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz503.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz503.txt @@ -69256,6 +73102,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz504.txt station = ('kcbe', 0.0037485) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc057.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz504.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz504.txt @@ -69274,6 +73121,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz505.txt station = ('kekn', 0.0056980) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz505.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz505.txt @@ -69292,6 +73140,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz506.txt station = ('kw99', 0.0063127) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc071.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz506.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz506.txt @@ -69310,6 +73159,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz507.txt station = ('kw99', 0.0063127) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz507.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz507.txt @@ -69328,6 +73178,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz508.txt station = ('klwb', 0.0015785) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc025.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz508.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz508.txt @@ -69346,6 +73197,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz509.txt station = ('kmgw', 0.0017785) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz509.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz509.txt @@ -69364,6 +73216,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz510.txt station = ('kmgw', 0.0017785) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc061.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz510.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz510.txt @@ -69382,6 +73235,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz511.txt station = ('kmgw', 0.0045971) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz511.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz511.txt @@ -69400,6 +73254,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz512.txt station = ('kmgw', 0.0045971) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc077.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz512.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz512.txt @@ -69418,6 +73273,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz513.txt station = ('kekn', 0.0055763) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz513.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz513.txt @@ -69436,6 +73292,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz514.txt station = ('kekn', 0.0055763) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc093.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz514.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz514.txt @@ -69454,6 +73311,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz515.txt station = ('kbkw', 0.0034551) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz515.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz515.txt @@ -69472,6 +73330,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz516.txt station = ('kbkw', 0.0014445) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc081.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz516.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz516.txt @@ -69490,6 +73349,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz517.txt station = ('kbkw', 0.0047464) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz517.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz517.txt @@ -69508,6 +73368,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz518.txt station = ('kbkw', 0.0035663) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc019.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz518.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz518.txt @@ -69526,6 +73387,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz519.txt station = ('k48i', 0.0069013) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz519.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz519.txt @@ -69544,6 +73406,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz520.txt station = ('klwb', 0.0066310) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc067.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz520.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz520.txt @@ -69562,6 +73425,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz521.txt station = ('k48i', 0.0035760) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz521.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz521.txt @@ -69580,6 +73444,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz522.txt station = ('k48i', 0.0063109) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc101.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz522.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz522.txt @@ -69598,6 +73463,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz523.txt station = ('kekn', 0.0081243) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz523.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz523.txt @@ -69616,6 +73482,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz524.txt station = ('khsp', 0.0055545) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc075.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz524.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz524.txt @@ -69634,6 +73501,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz525.txt station = ('kekn', 0.0016351) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz525.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz525.txt @@ -69652,6 +73520,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wv/wvz526.txt station = ('kekn', 0.0027031) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wv/wvc083.txt +tz = US/Eastern urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wv/wvz526.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wv/wvz526.txt @@ -69670,6 +73539,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz001.txt station = ('kp60', 0.0018199) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz001.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz001.txt @@ -69688,6 +73558,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz002.txt station = ('kcod', 0.0084822) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc029.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz002.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz002.txt @@ -69706,6 +73577,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz003.txt station = ('kcod', 0.0010654) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc029.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz003.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz003.txt @@ -69724,6 +73596,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz004.txt station = ('kgey', 0.0027496) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc029.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz004.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz004.txt @@ -69742,6 +73615,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz005.txt station = ('khsg', 0.0017962) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc017.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz005.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz005.txt @@ -69760,6 +73634,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz006.txt station = ('kwrl', 0.0016915) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc043.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz006.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz006.txt @@ -69778,6 +73653,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz007.txt station = ('khsg', 0.0031478) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz007.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz007.txt @@ -69796,6 +73672,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz008.txt station = ('kwrl', 0.0078243) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc043.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz008.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz008.txt @@ -69814,6 +73691,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz009.txt station = ('kbyg', 0.0091276) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc043.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz009.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz009.txt @@ -69832,6 +73710,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz010.txt station = ('kbyg', 0.0035874) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc019.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz010.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz010.txt @@ -69850,6 +73729,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz011.txt station = ('kbyg', 0.0104291) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc019.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz011.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz011.txt @@ -69868,6 +73748,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz012.txt station = ('kjac', 0.0032642) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc039.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz012.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz012.txt @@ -69886,6 +73767,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz013.txt station = ('kjac', 0.0009953) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc039.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz013.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz013.txt @@ -69904,6 +73786,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz014.txt station = ('kpna', 0.0044902) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz014.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz014.txt @@ -69922,6 +73805,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz015.txt station = ('klnd', 0.0081432) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz015.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz015.txt @@ -69940,6 +73824,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz016.txt station = ('kdub', 0.0047604) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz016.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz016.txt @@ -69958,6 +73843,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz017.txt station = ('kriw', 0.0025303) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz017.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz017.txt @@ -69976,6 +73862,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz018.txt station = ('klnd', 0.0012582) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc013.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz018.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz018.txt @@ -69994,6 +73881,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz019.txt station = ('klnd', 0.0124292) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz019.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz019.txt @@ -70012,6 +73900,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz020.txt station = ('kcpr', 0.0039618) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz020.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz020.txt @@ -70030,6 +73919,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz021.txt station = ('kfbr', 0.0025901) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc041.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz021.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz021.txt @@ -70048,6 +73938,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz022.txt station = ('kcpr', 0.0057513) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc025.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz022.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz022.txt @@ -70066,6 +73957,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz023.txt station = ('kafo', 0.0027053) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc023.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz023.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz023.txt @@ -70084,6 +73976,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz024.txt station = ('kafo', 0.0043977) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz024.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz024.txt @@ -70102,6 +73995,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz025.txt station = ('kpna', 0.0043874) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc035.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz025.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz025.txt @@ -70120,6 +74014,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz026.txt station = ('kbpi', 0.0059227) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz026.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz026.txt @@ -70138,6 +74033,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz027.txt station = ('kemm', 0.0000507) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc023.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz027.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz027.txt @@ -70156,6 +74052,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz028.txt station = ('k40u', 0.0099801) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz028.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz028.txt @@ -70174,6 +74071,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz029.txt station = ('k40u', 0.0054783) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz029.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz029.txt @@ -70192,6 +74090,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz030.txt station = ('krks', 0.0082414) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc037.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz030.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz030.txt @@ -70210,6 +74109,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz054.txt station = ('kgcc', 0.0045844) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc005.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz054.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz054.txt @@ -70228,6 +74128,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz055.txt station = ('kgcc', 0.0085475) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc005.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz055.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz055.txt @@ -70246,6 +74147,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz056.txt station = ('kw43', 0.0030406) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc011.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz056.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz056.txt @@ -70264,6 +74166,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz057.txt station = ('kw43', 0.0056015) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz057.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz057.txt @@ -70282,6 +74185,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz058.txt station = ('kecs', 0.0059344) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz058.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz058.txt @@ -70300,6 +74204,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz059.txt station = ('kecs', 0.0028745) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc045.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz059.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz059.txt @@ -70318,6 +74223,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz060.txt station = ('kw43', 0.0052706) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc011.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz060.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz060.txt @@ -70336,6 +74242,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz101.txt station = ('kdgw', 0.0048797) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc009.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz101.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz101.txt @@ -70354,6 +74261,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz102.txt station = ('kdgw', 0.0124365) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc027.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz102.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz102.txt @@ -70372,6 +74280,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz103.txt station = ('kdgw', 0.0083848) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz103.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz103.txt @@ -70390,6 +74299,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz104.txt station = ('krwl', 0.0092149) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz104.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz104.txt @@ -70408,6 +74318,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz105.txt station = ('kehy', 0.0085654) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz105.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz105.txt @@ -70426,6 +74337,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz106.txt station = ('kean', 0.0049299) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz106.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz106.txt @@ -70444,6 +74356,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz107.txt station = ('kgur', 0.0020286) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc031.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz107.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz107.txt @@ -70462,6 +74375,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz108.txt station = ('ktor', 0.0027162) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc015.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz108.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz108.txt @@ -70480,6 +74394,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz109.txt station = ('krwl', 0.0013111) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz109.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz109.txt @@ -70498,6 +74413,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz110.txt station = ('kehy', 0.0026817) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz110.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz110.txt @@ -70516,6 +74432,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz111.txt station = ('kdwx', 0.0051508) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz111.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz111.txt @@ -70534,6 +74451,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz112.txt station = ('kdwx', 0.0057132) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz112.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz112.txt @@ -70552,6 +74470,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz113.txt station = ('ksaa', 0.0012278) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz113.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz113.txt @@ -70570,6 +74489,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz114.txt station = ('kehy', 0.0074887) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc007.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz114.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz114.txt @@ -70588,6 +74508,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz115.txt station = ('klar', 0.0019186) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc001.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz115.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz115.txt @@ -70606,6 +74527,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz116.txt station = ('klar', 0.0038391) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz116.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz116.txt @@ -70624,6 +74546,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz117.txt station = ('kfew', 0.0038232) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz117.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz117.txt @@ -70642,6 +74565,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz118.txt station = ('kcys', 0.0036415) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz118.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz118.txt @@ -70660,6 +74584,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz119.txt station = ('kcys', 0.0077997) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc021.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz119.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz119.txt @@ -70678,6 +74603,7 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz198.txt station = ('kgey', 0.0085769) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz198.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz198.txt @@ -70696,5 +74622,6 @@ special_weather_statement = https://tgftp.nws.noaa.gov/data/watches_warnings/spe state_forecast = https://tgftp.nws.noaa.gov/data/forecasts/state/wy/wyz199.txt station = ('kshr', 0.0039061) tornado = https://tgftp.nws.noaa.gov/data/watches_warnings/tornado/wy/wyc033.txt +tz = US/Mountain urgent_weather_message = https://tgftp.nws.noaa.gov/data/watches_warnings/non_precip/wy/wyz199.txt zone_forecast = https://tgftp.nws.noaa.gov/data/forecasts/zone/wy/wyz199.txt